mirror of
https://github.com/danpros/htmly.git
synced 2026-04-21 04:56:23 +05:30
Translate theme
This commit is contained in:
parent
3593d27c7f
commit
e2c495204a
24 changed files with 99 additions and 99 deletions
|
|
@ -21,13 +21,13 @@
|
|||
<h2 class="title-index" itemprop="name"><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></h2>
|
||||
<?php } ?>
|
||||
<div class="date">
|
||||
<span itemprop="datePublished"><?php echo format_date($p->date) ?></span> - Posted in
|
||||
<span itemprop="articleSection"><?php echo $p->category ?></span> by
|
||||
<span itemprop="datePublished"><?php echo format_date($p->date) ?></span> - <?php echo i18n('Posted_in');?>
|
||||
<span itemprop="articleSection"><?php echo $p->category ?></span> <?php echo i18n('by');?>
|
||||
<span itemprop="author"><a href="<?php echo $p->authorUrl ?>"><?php echo $p->authorName; ?></a></span>
|
||||
<?php if (disqus_count()) { ?> -
|
||||
<span><a href="<?php echo $p->url ?>#disqus_thread">Comments</a></span>
|
||||
<span><a href="<?php echo $p->url ?>#disqus_thread"><?php echo i18n('Comments');?></a></span>
|
||||
<?php } elseif (facebook()) { ?> -
|
||||
<a href="<?php echo $p->url ?>#comments"><span><fb:comments-count href=<?php echo $p->url ?>></fb:comments-count> Comments</span></a>
|
||||
<a href="<?php echo $p->url ?>#comments"><span><fb:comments-count href=<?php echo $p->url ?>></fb:comments-count> <?php echo i18n('Comments');?></span></a>
|
||||
<?php } ?>
|
||||
<?php if (login()) { echo ' - <span><a href="'. $p->url .'/edit?destination=post">Edit</a></span>'; } ?>
|
||||
</div>
|
||||
|
|
@ -62,10 +62,10 @@
|
|||
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
|
||||
<div class="pager">
|
||||
<?php if (!empty($pagination['prev'])): ?>
|
||||
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev">Newer</a></span>
|
||||
<span><a href="?page=<?php echo $page - 1 ?>" class="pagination-arrow newer" rel="prev"><?php echo i18n('Newer');?></a></span>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($pagination['next'])): ?>
|
||||
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next">Older</a></span>
|
||||
<span><a href="?page=<?php echo $page + 1 ?>" class="pagination-arrow older" rel="next"><?php echo i18n('Older');?></a></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue