-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle-list.html
76 lines (75 loc) · 2.17 KB
/
article-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
</head>
<body class="container">
<section class="row">
<nav class="col-md-12">
<h1>Section masthead</h1>
</nav>
</section>
<section class="row">
<div class="col-md-12">
<h1>Section banner</h1>
<p>This page abstracts search result pages.</p>
</div>
</section>
<main class="row">
<section class="col-md-8"> <!-- Suggest: before this is a meaningful section, use div. -->
<article class="well">
<header>
<h3>Pre-header H3</h3>
<h2>article title H2</h2>
<h4>subtitle H4</h4>
</header>
<p>bodytext P.</p>
<footer>
<h4>Footer H4</h4>
</footer>
</article>
<article class="well">
<header>
<h3>Pre-header H3</h3>
<h2>article title H2</h2>
<h4>subtitle H4</h4>
</header>
<p>bodytext P.</p>
<footer>
<h4>Footer H4</h4>
</footer>
</article>
<article class="well">
<header>
<h3>Pre-header H3</h3>
<h2>article title H2</h2>
<h4>subtitle H4</h4>
</header>
<p>bodytext P.</p>
<footer>
<h4>Footer H4</h4>
</footer>
</article>
</section>
<aside class="col-md-4">
<header>
<h2>Aside header H2</h2>
</header>
<h3>Aside title H3</h3>
<p>When <em>aside</em> element is used inside <em>article</em>, it's more relevant to the content; when it's outside, it then is more relevant to the page. Aside isn't necessarily presented as sidebar, but when it is, we'd like it to be <strong>sticky</strong> so editors don't have to <strong>duplicate</strong> them in each of the wells.</p>
<h4>Unordered list</h4>
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
</ul>
</aside>
</main>
<section class="row">
<div class="col-md-12">
<h1>Section footer links</h1>
</div>
</section>
</body>
</html>