2013-10-21 09:35:06 +02:00
< div id = "welcome" >
2013-10-19 13:38:20 +02:00
< h1 > <?php echo $this -> config -> main -> title ?> </ h1 >
< p >
< span > serving <?php echo $this -> context -> transport -> postCount ?> posts</ span >
< / p >
< / div >
<?php if ( ! empty ( $this -> context -> featuredPost )) : ?>
2013-10-21 09:35:06 +02:00
< div class = "header" >
Featured image
< ul class = "tags" >
<?php foreach ( $this -> context -> featuredPost -> sharedTag as $tag ) : ?>
< li >
< a href = " <?php echo \Chibi\UrlHelper :: route ( 'post' , 'list' , [ 'query' => $tag -> name ]) ?> " >
<?php echo $tag -> name ?>
< / a >
< / li >
<?php endforeach ?>
< / ul >
< span class = "favs-comments" >
<?php printf ( '%d fav%s' , $x = $this -> context -> featuredPost -> countOwn ( 'favoritee' ), $x == 1 ? '' : 's' ) ?> , 
<?php printf ( '%d comment%s' , $x = $this -> context -> featuredPost -> countOwn ( 'comment' ), $x == 1 ? '' : 's' ) ?>
< / span >
< div class = "clear" > < / div >
< / div >
2013-10-19 13:38:20 +02:00
2013-10-21 09:35:06 +02:00
< div class = "body" >
< a href = " <?php echo \Chibi\UrlHelper :: route ( 'post' , 'view' , [ 'id' => $this -> context -> featuredPost -> id ]) ?> " >
< img src = " <?php echo \Chibi\UrlHelper :: route ( 'post' , 'retrieve' , [ 'name' => $this -> context -> featuredPost -> name ]) ?> " alt = " <?php echo $this -> context -> featuredPost -> name ?> " />
< / a >
< / div >
2013-10-19 13:38:20 +02:00
2013-10-21 09:35:06 +02:00
< div class = "footer" >
Featured 
<?php if ( $this -> context -> featuredPostUser ) : ?>
by < a href = " <?php echo \Chibi\UrlHelper :: route ( 'user' , 'view' , [ 'name' => $this -> context -> featuredPostUser -> name ]) ?> " > <?php echo $this -> context -> featuredPostUser -> name ?> </ a > , 
<?php endif ?>
<?php printf ( '%d day%s' , $x = round (( time () - $this -> context -> featuredPostDate ) / ( 24 * 3600. )), $x == 1 ? '' : 's' ) ?> ago
2013-10-19 13:38:20 +02:00
< div class = "clear" > < / div >
< / div >
2013-10-21 09:35:06 +02:00
< div class = "clear" > < / div >
2013-10-19 13:38:20 +02:00
<?php endif ?>