Clean up the themes

This commit is contained in:
danpros 2020-05-06 10:16:33 +07:00
commit fb6fac0af1
24 changed files with 61 additions and 43 deletions

View file

@ -50,7 +50,7 @@
</div>
<footer class="entry-footer">
<span class="posted-on">
<a href="<?php echo $p->url;?>" rel="permalink"><time class="entry-date published updated"><?php echo date('F d, Y', $p->date) ?></time></a>
<a href="<?php echo $p->url;?>" rel="permalink"><time class="entry-date published updated"><?php echo format_date($p->date) ?></time></a>
</span>
<span class="byline">
<span class="author vcard">

View file

@ -48,7 +48,7 @@
</div>
<footer class="entry-footer">
<span class="posted-on">
<a href="<?php echo $p->url;?>" rel="permalink"><time class="entry-date published updated"><?php echo date('F d, Y', $p->date) ?></time></a>
<a href="<?php echo $p->url;?>" rel="permalink"><time class="entry-date published updated"><?php echo format_date($p->date) ?></time></a>
</span>
<span class="byline">
<span class="author vcard">

View file

@ -19,7 +19,7 @@
$i++; ?>
<li class="<?php echo $class; ?>">
<span><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></span> on
<span><?php echo date('d F Y', $p->date) ?></span> - <?php echo i18n('Posted_in');?> <span><?php echo $p->tag ?></span>
<span><?php echo format_date($p->date) ?></span> - <?php echo i18n('Posted_in');?> <span><?php echo $p->tag ?></span>
</li>
<?php endforeach; ?>
</ul>