forked from paulrobertlloyd/roadtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
148 lines (141 loc) · 6.34 KB
/
index.php
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
<?php
$title = 'Austin, TX - San Francisco, CA';
include_once('_inc/head.php');
include_once('_inc/banner.php');
?>
<header class="day">
<h1>Day 1</h1>
<p class="meta">Austin, <abbr title="Texas">TX</abbr> - Albuquerque, <abbr title="New Mexico">NM</abbr></p>
</header><!--/.day-->
<div role="main" class="main">
<ol class="media">
<li class="media-item">
<a href="item.php">
<img src="_assets/photos/1.jpg" alt=""/>
<h2 class="title">The first overtake</h2>
<time>11:04 AM</time>
</a>
</li>
<li class="media-item">
<a href="item.php">
<img src="_assets/photos/2.jpg" alt=""/>
<h2 class="title">Brady city hall</h2>
<time>12:15 PM</time>
</a>
</li>
<li class="media-item">
<a href="item.php">
<img src="_assets/photos/3.jpg" alt=""/>
<h2 class="title">New Mexican Ranch</h2>
<time>15:04 PM</time>
</a>
</li>
<li class="media-item">
<a href="item.php">
<img src="_assets/photos/4.jpg" alt=""/>
<h2 class="title">Fishin’</h2>
<time>14:27 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/5.jpg" alt=""/>
<h2 class="title">Every cloud</h2>
<time>14:32 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/6.jpg" alt=""/>
<h2 class="title">Road to nowhere</h2>
<time>15:21 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/7.jpg" alt=""/>
<h2 class="title">Haulage</h2>
<time>16:01 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/8.jpg" alt=""/>
<h2 class="title">Western Wear</h2>
<time>16:22 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/9.jpg" alt=""/>
<h2 class="title">Wrong turn</h2>
<time>17:43 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/10.jpg" alt=""/>
<h2 class="title">Roswell</h2>
<time>17:46 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/11.jpg" alt=""/>
<h2 class="title">Drive Thru</h2>
<time>20:04 PM</time>
</a>
</li>
<li class="media-item">
<a href="#">
<img src="_assets/photos/12.jpg" alt=""/>
<h2 class="title">Roswell city hall</h2>
<time>21:22 PM</time>
</a>
</li>
</ol>
<ul role="navigation" class="pages">
<li class="page-prev"><a href="#">← Prev</a></li>
<li class="page-current"><a rel="prev" href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li class="page-next"><a rel="next" href="#">Next →</a></li>
</ul>
</div><!--/main-->
<div role="complementary" class="complementary">
<h2>What is this site all about?</h2>
<p>On March 12 2012, three web developers left the throngs of SXSW in Austin, Texas and headed west towards California. Covering 5 states over 4 nights and 3 days, they arrived in San Francisco on March 15. But really, this is just some placeholder content to demonstrate how one might go about designing a responsive website.</p>
<h3>Journeymen</h3>
<ul class="vcards">
<li class="vcard">
<img class="photo" src="_assets/traveller-paul.png" alt="" width="64" height="64"/>
<h4 class="fn n">Paul Lloyd</h4>
<p>
<a class="url" href="http://paulrobertlloyd.com/">paulrobertlloyd.com</a><br/>
<a class="twitter" href="http://twitter.com/paulrobertlloyd/">@paulrobertlloyd</a>
</p>
</li>
<li class="vcard">
<img class="photo" src="_assets/traveller-andy.png" alt="" width="64" height="64"/>
<h4 class="fn n">Andy Hume</h4>
<p>
<a class="twitter" class="url" href="http://andyhume.net/">andyhume.net</a><br/>
<a class="twitter" href="http://twitter.com/andyhume/">@andyhume</a>
</p>
</li>
<li class="vcard">
<img class="photo" src="_assets/traveller-ben.png" alt="" width="64" height="64"/>
<h4 class="fn n">Ben Barnett</h4>
<p>
<a class="url" href="http://benbarnett.net/">benbarnett.net</a><br/>
<a class="twitter" href="http://twitter.com/benpbarnett">@benpbarnett</a>
</p>
</li>
</ul>
</div><!--/complementary-->
<?php
include_once('_inc/contentinfo.php');
include_once('_inc/foot.php');
?>