|
|
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
|
|
|
<article class="post type-post hentry <?php if (!empty($p->image) || !empty ($p->audio) || !empty ($p->video)):?>has-post-thumbnail<?php endif;?>">
|
|
|
<?php if (!empty($p->image)):?>
|
|
|
<div class="post-thumbnail">
|
|
|
<img style="width:100%;" title="<?php echo $p->title; ?>" alt="<?php echo $p->title; ?>" class="attachment-post-thumbnail wp-post-image" src="<?php echo $p->image; ?>">
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<?php if (!empty($p->audio)):?>
|
|
|
<div class="post-thumbnail">
|
|
|
<iframe width="100%" height="200px" class="embed-responsive-item" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=<?php echo $p->audio;?>&auto_play=false&visual=true"></iframe>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<?php if (!empty($p->video)):?>
|
|
|
<div class="post-thumbnail">
|
|
|
<iframe width="100%" height="315px" class="embed-responsive-item" src="https://www.youtube.com/embed/<?php echo get_video_id($p->video); ?>" frameborder="0" allowfullscreen></iframe>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<?php if (!empty($p->quote)):?>
|
|
|
<div class="post-blockquote">
|
|
|
<blockquote class="quote"><?php echo $p->quote ?></blockquote>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<header class="entry-header">
|
|
|
<?php if (login()) { echo tab($p); } ?>
|
|
|
<?php if (!empty($p->link)) {?>
|
|
|
<div class="post-link"><h1 class="entry-title"><a href="<?php echo $p->link ?>" target="_blank"><?php echo $p->title; ?></a></h1></div>
|
|
|
<?php } else { ?>
|
|
|
<h1 class="entry-title"><?php echo $p->title; ?></h1>
|
|
|
<?php } ?>
|
|
|
</header>
|
|
|
<div class="entry-content post-<?php echo $p->date;?>">
|
|
|
<?php echo $p->body; ?>
|
|
|
</div>
|
|
|
<style>.related {padding-bottom:2em;}.related p {margin-top:0;margin-bottom:0.5em;} .related ul {margin-left:1em;}</style>
|
|
|
<div class="related entry-content">
|
|
|
<hr>
|
|
|
<p><strong><?php echo i18n('Related_posts');?></strong></p>
|
|
|
<?php echo get_related($p->related);?>
|
|
|
</div>
|
|
|
<div class="author-info">
|
|
|
<h2 class="author-heading"><?php echo i18n('Published').' '.i18n('by');?></h2>
|
|
|
<div class="author-avatar">
|
|
|
<img width="56" height="56" class="avatar avatar-56" src="<?php echo theme_path();?>images/avatar.png" alt="<?php echo $author->name; ?>">
|
|
|
</div><!-- .author-avatar -->
|
|
|
<div class="author-description">
|
|
|
<h3 class="author-title"><?php echo $author->name; ?></h3>
|
|
|
<?php echo $author->about ?>
|
|
|
</div><!-- .author-description -->
|
|
|
</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 format_date($p->date) ?></time></a>
|
|
|
</span>
|
|
|
<span class="byline">
|
|
|
<span class="author vcard">
|
|
|
<a href="<?php echo $p->authorUrl; ?>"><?php echo $p->authorName; ?></a>
|
|
|
</span>
|
|
|
</span>
|
|
|
<span class="cat-links">
|
|
|
<?php echo $p->category; ?>
|
|
|
</span>
|
|
|
<span class="tags-links">
|
|
|
<?php echo $p->tag; ?>
|
|
|
</span>
|
|
|
<?php if (disqus_count()) { ?>
|
|
|
<span class="comments-link"><a href="<?php echo $p->url ?>#disqus_thread"> <?php echo i18n('Comments');?></a></span>
|
|
|
<?php } elseif (facebook()) { ?>
|
|
|
<span class="comments-link"><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></span>
|
|
|
<?php } ?>
|
|
|
</footer>
|
|
|
</article>
|
|
|
<?php if (disqus()): ?>
|
|
|
<?php echo disqus($p->title, $p->url) ?>
|
|
|
<?php endif; ?>
|
|
|
<?php if (disqus_count()): ?>
|
|
|
<?php echo disqus_count() ?>
|
|
|
<?php endif; ?>
|
|
|
<?php if (facebook() || disqus()): ?>
|
|
|
<div class="comments-area" id="comments">
|
|
|
<?php if (facebook()): ?>
|
|
|
<div class="fb-comments" data-href="<?php echo $p->url ?>" data-numposts="<?php echo config('fb.num') ?>" data-colorscheme="<?php echo config('fb.color') ?>"></div>
|
|
|
<?php endif; ?>
|
|
|
<?php if (disqus()): ?>
|
|
|
<div id="disqus_thread"></div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<nav role="navigation" class="navigation post-navigation">
|
|
|
<h2 class="screen-reader-text">Post navigation</h2>
|
|
|
<div class="nav-links">
|
|
|
<?php if (!empty($prev)): ?>
|
|
|
<div class="nav-previous"><a style="background-image: url(<?php echo($prev['image']); ?>);<?php if (!empty($prev['image'])):?>color:#fff;<?php endif;?>" rel="prev" href="<?php echo($prev['url']); ?>"><span style="<?php if (!empty($prev['image'])):?>color:#fff;<?php endif;?>" aria-hidden="true" class="meta-nav"><?php echo i18n('Prev');?></span> <span class="screen-reader-text">Previous post:</span> <span class="post-title"><?php echo($prev['title']); ?></span></a></div>
|
|
|
<?php endif; ?>
|
|
|
<?php if (!empty($next)): ?>
|
|
|
<div class="nav-next"><a style="background-image: url(<?php echo($next['image']); ?>);<?php if (!empty($next['image'])):?>color:#fff;<?php endif;?>" rel="next" href="<?php echo($next['url']); ?>"><span style="<?php if (!empty($next['image'])):?>color:#fff;<?php endif;?>" aria-hidden="true" class="meta-nav"><?php echo i18n('Next');?></span> <span class="screen-reader-text">Next post:</span> <span class="post-title"><?php echo($next['title']); ?></span></a></div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
</nav>
|