generated from Robbo-lab/div-web-application-development-assessment-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regions-page.html
149 lines (127 loc) · 4.89 KB
/
regions-page.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!-- BEGIN CONTENT WRAPPER -->
<div class="content">
<div class="container">
<div class="row">
<!-- BEGIN MAIN CONTENT -->
<div class="main col-sm-8">
<!-- BEGIN BLOG LISTING -->
<div class="grid-style1 clearfix">
<div class="item col-md-12"><!-- Set width to 4 columns for grid view mode only -->
<div class="image image-large">
<a href="#">
<span class="btn btn-default"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="http://placehold.it/720x255" alt="" />
</div>
<div class="info-blog">
<h3>
<a href="#">The Northeast</a>
</h3>
<p>Sed rutrum urna id tellus euismod gravida. Praesent placerat, mauris ac pellentesque fringilla, tortor libero condimen. Aliquam fermem tum nulla felis, sed molestie libero porttitor in.</p>
</div>
</div>
<div class="item col-md-12"><!-- Set width to 4 columns for grid view mode only -->
<div class="image image-large">
<a href="#">
<span class="btn btn-default"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="http://placehold.it/720x255" alt="" />
</div>
<div class="info-blog">
<h3>
<a href="#">The Northwest</a>
</h3>
<p>Sed rutrum urna id tellus euismod gravida. Praesent placerat, mauris ac pellentesque fringilla, tortor libero condimen. Aliquam fermem tum nulla felis, sed molestie libero porttitor in.</p>
</div>
</div>
<div class="item col-md-12"><!-- Set width to 4 columns for grid view mode only -->
<div class="image image-large">
<a href="#">
<span class="btn btn-default"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="http://placehold.it/720x255" alt="" />
</div>
<div class="info-blog">
<h3>
<a href="#">The Southeast</a>
</h3>
<p>Sed rutrum urna id tellus euismod gravida. Praesent placerat, mauris ac pellentesque fringilla, tortor libero condimen. Aliquam fermem tum nulla felis, sed molestie libero porttitor in.</p>
</div>
</div>
<div class="item col-md-12"><!-- Set width to 4 columns for grid view mode only -->
<div class="image image-large">
<a href="#">
<span class="btn btn-default"><i class="fa fa-file-o"></i> Read More</span>
</a>
<img src="http://placehold.it/720x255" alt="" />
</div>
<div class="info-blog">
<h3>
<a href="#">The Southwest</a>
</h3>
<p>Sed rutrum urna id tellus euismod gravida. Praesent placerat, mauris ac pellentesque fringilla, tortor libero condimen. Aliquam fermem tum nulla felis, sed molestie libero porttitor in.</p>
</div>
</div>
</div>
<!-- END BLOG LISTING -->
<!-- BEGIN PAGINATION -->
<div class="pagination">
<ul id="previous">
<li><a href="#"><i class="fa fa-chevron-left"></i></a></li>
</ul>
<ul>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
</ul>
<ul id="next">
<li><a href="#"><i class="fa fa-chevron-right"></i></a></li>
</ul>
</div>
<!-- END PAGINATION -->
</div>
<!-- END MAIN CONTENT -->
<!-- BEGIN SIDEBAR -->
<div class="sidebar gray col-sm-4">
<!-- BEGIN LATEST NEWS -->
<h2 class="section-title">Popular articles</h2>
<ul class="latest-news">
<li class="col-md-12">
<div class="image">
<a href="blog-detail.html"></a>
<img src="http://placehold.it/100x100" alt="" />
</div>
<ul class="top-info">
<li><i class="fa fa-calendar"></i> 30 July 2014</li>
</ul>
<h4><a href="#">It's all about the Northeast</a></h4>
</li>
<li class="col-md-12">
<div class="image">
<a href="blog-detail.html"></a>
<img src="http://placehold.it/100x100" alt="" />
</div>
<ul class="top-info">
<li><i class="fa fa-calendar"></i> 20 July 2014</li>
</ul>
<h4><a href="#">Southwest: Best ever</a></h4>
</li>
<li class="col-md-12">
<div class="image">
<a href="blog-detail.html"></a>
<img src="http://placehold.it/100x100" alt="" />
</div>
<ul class="top-info">
<li><i class="fa fa-calendar"></i> 10 July 2014</li>
</ul>
<h4><a href="#">I went to the Northwest and stole from and old lady</a></h4>
</li>
</ul>
<!-- END LATEST NEWS -->
</div>
<!-- END SIDEBAR -->
</div>
</div>
</div>
<!-- END CONTENT WRAPPER -->