83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
<!-- Show each post on this page -->
|
|
<?php foreach ($posts as $Post): ?>
|
|
|
|
<article class="post">
|
|
|
|
<!-- Show plugins, Hook: Post Begin -->
|
|
<?php Theme::plugins('postBegin') ?>
|
|
|
|
<!-- Post's header -->
|
|
<header>
|
|
<div class="title">
|
|
<h1><a href="<?php echo $Post->permalink() ?>"><?php echo $Post->title() ?></a></h1>
|
|
<p><?php echo $Post->description() ?></p>
|
|
</div>
|
|
<div class="meta">
|
|
<?php
|
|
// Get the user who created the post.
|
|
$User = $Post->user();
|
|
|
|
// Default author is the username.
|
|
$author = $User->username();
|
|
|
|
// If the user complete the first name or last name this will be the author.
|
|
if( Text::isNotEmpty($User->firstName()) || Text::isNotEmpty($User->lastName()) ) {
|
|
$author = $User->firstName().' '.$User->lastName();
|
|
}
|
|
?>
|
|
<time class="published" datetime="2015-11-01"><?php echo $Post->date() ?></time>
|
|
<div class="author"><span class="name"><?php echo $author ?></span><img src="<?php echo $User->profilePicture() ?>" alt=""></div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Cover Image -->
|
|
<?php
|
|
if($Post->coverImage()) {
|
|
echo '<a href="'.$Post->permalink().'" class="image featured"><img src="'.$Post->coverImage().'" alt="Cover Image"></a>';
|
|
}
|
|
?>
|
|
|
|
<!-- Post's content, the first part if has pagebrake -->
|
|
<?php echo $Post->content(false) ?>
|
|
|
|
<!-- Post's footer -->
|
|
<footer>
|
|
|
|
<!-- Read more button -->
|
|
<?php if($Post->readMore()) { ?>
|
|
<ul class="actions">
|
|
<li><a href="<?php echo $Post->permalink() ?>" class="button"><?php $Language->p('Read more') ?></a></li>
|
|
</ul>
|
|
<?php } ?>
|
|
|
|
<!-- Post's tags -->
|
|
<ul class="stats">
|
|
<?php
|
|
$tags = $Post->tags(true);
|
|
|
|
foreach($tags as $tagKey=>$tagName) {
|
|
echo '<li><a href="'.HTML_PATH_ROOT.$Url->filters('tag').'/'.$tagKey.'">'.$tagName.'</a></li>';
|
|
}
|
|
?>
|
|
</ul>
|
|
</footer>
|
|
|
|
<!-- Plugins Post End -->
|
|
<?php Theme::plugins('postEnd') ?>
|
|
|
|
</article>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<!-- Pagination -->
|
|
<ul class="actions pagination">
|
|
<?php
|
|
if( Paginator::get('showNewer') ) {
|
|
echo '<li><a href="'.Paginator::urlPrevPage().'" class="button big previous">'.$Language->get('Prev page').'</a></li>';
|
|
}
|
|
|
|
if( Paginator::get('showOlder') ) {
|
|
echo '<li><a href="'.Paginator::urlNextPage().'" class="button big next">'.$Language->get('Next page').'</a></li>';
|
|
}
|
|
?>
|
|
</ul>
|