mirror of
https://github.com/danpros/htmly.git
synced 2026-04-23 14:06:23 +05:30
Update themes
This commit is contained in:
parent
96af6de09e
commit
3b9866e8f5
19 changed files with 25 additions and 97 deletions
|
|
@ -745,15 +745,15 @@ aside .copyright p {
|
|||
}
|
||||
|
||||
.share a.twitter {
|
||||
background: url(../../default/img/share-twitter.png) left top no-repeat;
|
||||
background: url(../../readable/img/share-twitter.png) left top no-repeat;
|
||||
}
|
||||
|
||||
.share a.facebook {
|
||||
background: url(../../default/img/share-facebook.png) left top no-repeat;
|
||||
background: url(../../readable/img/share-facebook.png) left top no-repeat;
|
||||
}
|
||||
|
||||
.share a.googleplus {
|
||||
background: url(../../default/img/share-googleplus.png) left top no-repeat;
|
||||
background: url(../../readable/img/share-googleplus.png) left top no-repeat;
|
||||
}
|
||||
|
||||
.share a:hover {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
<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="author"><a href="<?php echo $p->authorUrl ?>"><?php echo $p->author ?></a></span>
|
||||
<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>
|
||||
<?php } elseif (facebook()) { ?> -
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<span itemprop="datePublished"><a href="<?php echo $p->archive ?>" title="Show all posts made on this month"><?php echo format_date($p->date) ?></a></span>
|
||||
- Posted in
|
||||
<span itemprop="articleSection"><?php echo $p->category ?></span> by
|
||||
<span itemprop="author"><a href="<?php echo $p->authorUrl ?>"><?php echo $p->author ?></a></span> -
|
||||
<span itemprop="author"><a href="<?php echo $p->authorUrl ?>"><?php echo $p->authorName; ?></a></span> -
|
||||
<span><a href="<?php echo $p->url ?>" rel="permalink">Permalink</a></span>
|
||||
</div>
|
||||
<?php if (!empty($p->image)) { ?>
|
||||
|
|
|
|||
|
|
@ -11,17 +11,8 @@
|
|||
<h2 class="post-index">Posts by this author</h2>
|
||||
<?php if (!empty($posts)) { ?>
|
||||
<ul class="post-list">
|
||||
<?php $i = 0; $len = count($posts); ?>
|
||||
<?php foreach ($posts as $p): ?>
|
||||
<?php if ($i == 0) {
|
||||
$class = 'item first';
|
||||
} elseif ($i == $len - 1) {
|
||||
$class = 'item last';
|
||||
} else {
|
||||
$class = 'item';
|
||||
}
|
||||
$i++; ?>
|
||||
<li class="<?php echo $class; ?>">
|
||||
<li class="item">
|
||||
<span><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></span> on
|
||||
<span><?php echo format_date($p->date) ?></span> - Posted in <span><?php echo $p->tag ?></span>
|
||||
</li>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue