-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (27 loc) · 1.31 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
<?php get_header(); ?>
<section class="section">
<div class="container">
<div class="column">
<h1 class="site-title is-spaced caption"><?php bloginfo( 'name' ); ?></h1>
</div>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="column">
<h2 class="entry-title is-spaced caption"><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<span class="entry-date">
<span class="icon is-small"><i class="fa fa-pencil"></i></span><time itemprop="datePublished" datetime="<?php the_time( 'Y-m-d' ) ;?>"><?php the_time( 'Y/m/d' ) ;?></time>
</span>
<span class="tag tag-category <?php echo gs_get_category_class();?>"><?php the_category(' '); ?></span>
<?php the_tags( '<span class="tag is-light tag-tag">', "</span>\n<span class=\"tag is-light tag-tag\">", '</span>'); ?>
</div>
<div class="entry-excerpt">
<?php the_excerpt(); ?>
</div>
</div>
<?php endwhile; ?>
<?php gs_pagenate(); ?>
<?php endif; ?>
</div>
</section>
<?php get_footer(); ?>