-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
175 lines (98 loc) · 4.19 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php get_header();
include (TEMPLATEPATH . '/inc/primary-menu.php');
?>
<div class="band chief">
<div class="container">
<div class="sixteen columns">
<div class="flexslider">
<ul class="slides">
<li>
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/loch-nevis.jpg" alt="" />
</figure>
</li>
<li>
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/iceland.jpg" alt="" />
</figure>
</li>
<li>
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/snow.jpg" alt="" />
</figure>
</li>
</ul>
</div><!-- end flexslider -->
</div>
<div class="ten columns">
<article>
<div class="three columns alpha thumbnail">
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/thumb_iceland.jpg" alt="iceland" />
</figure>
</div><!-- three -->
<div class="seven columns omega">
<p class="breadcrumbs"><a href="#">Breadecumb</a> > <a href="">trail</a></p>
<h2>The Evoling Role of Social Media</h2>
<p class="meta">Posted by <a href="#">Charlie</a>1 hour ago <a href="#">30 comments</a></p>
<p>A few years ago, news organizations were unsure about social. Journalists were apprehensive to create Twitter accounts and media companies questioned whether a branded Facebook fan page was necessary.</p>
</div><!-- /.seven -->
<hr />
</article><!-- blog post -->
<article>
<div class="three columns alpha thumbnail">
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/thumb_iceland.jpg" alt="iceland" />
</figure>
</div><!-- three -->
<div class="seven columns omega">
<p class="breadcrumbs"><a href="#">Breadecumb</a> > <a href="">trail</a></p>
<h2>The Evoling Role of Social Media</h2>
<p class="meta">Posted by <a href="#">Charlie</a>1 hour ago <a href="#">30 comments</a></p>
<p>A few years ago, news organizations were unsure about social. Journalists were apprehensive to create Twitter accounts and media companies questioned whether a branded Facebook fan page was necessary.</p>
</div><!-- /.seven -->
<hr />
</article><!-- blog post -->
<article>
<div class="three columns alpha thumbnail">
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/thumb_iceland.jpg" alt="iceland" />
</figure>
</div><!-- three -->
<div class="seven columns omega">
<p class="breadcrumbs"><a href="#">Breadecumb</a> > <a href="">trail</a></p>
<h2>The Evoling Role of Social Media</h2>
<p class="meta">Posted by <a href="#">Charlie</a>1 hour ago <a href="#">30 comments</a></p>
<p>A few years ago, news organizations were unsure about social. Journalists were apprehensive to create Twitter accounts and media companies questioned whether a branded Facebook fan page was necessary.</p>
</div><!-- /.seven -->
<hr />
</article><!-- blog post -->
<article>
<div class="three columns alpha thumbnail">
<figure>
<img src="<?php echo get_template_directory_uri(); ?>/images/thumb_iceland.jpg" alt="iceland" />
</figure>
</div><!-- three -->
<div class="seven columns omega">
<p class="breadcrumbs"><a href="#">Breadecumb</a> > <a href="">trail</a></p>
<h2>The Evoling Role of Social Media</h2>
<p class="meta">Posted by <a href="#">Charlie</a>1 hour ago <a href="#">30 comments</a></p>
<p>A few years ago, news organizations were unsure about social. Journalists were apprehensive to create Twitter accounts and media companies questioned whether a branded Facebook fan page was necessary.</p>
</div><!-- /.seven -->
<hr />
</article><!-- blog post -->
<nav class="pagination">
<ul>
<li><a href="#" class="selected">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><a href="#">6</a></li>
</ul>
</nav><!--end pagination-->
</div><!-- end ten -->
<?php get_sidebar(); ?>
</div><!-- end container -->
</div><!-- end band chief -->
<?php get_footer(); ?>