-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
51 lines (40 loc) · 1.52 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
<?php get_header(); ?>
<div class="hero">
</div>
<div class="container">
<h2>Who voted against Net Neutrality?</h2>
<?php
if ( have_posts() ){
while ( have_posts() ){
the_post(); ?>
<div class="card card-body margins">
<header>
<div class="row">
<div class="col-12">
<h1>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h1>
<div class="date">
<?php the_date(); ?>
</div>
</div>
</div>
</header>
<div class="row">
<div class="col-12 col-lg 8">
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>">
Read More...
</a>
</div>
<div class="col-12 col-lg-4">
<?php the_tags('Tags: ' , ' , ' , '<br>'); ?>
</div>
</div>
</div>
<?php }
}
?>
</div>