deblan.tv/src/Deblan/Bundle/BlogBundle/Resources/views/Default/tinyThePost.html.twig
2015-05-22 12:58:07 +02:00

24 lines
823 B
Twig

<article class="post" id="post-{{ post.id }}">
<header>
<h3><a href="{{ post.link }}" target="_blank">{{ post.title }}</a></h3>
<div class="meta">
<address class="author">
<span class="glyphicon glyphicon-user"></span>
<a rel="author" href="{{ post.link }}" target="_blank">{{ post.author }}</a>
</address>
<time datetime="{{ post.updated|date("Y-m-d") }}" title="{{ post.updated|date("r") }}">
<span class="glyphicon glyphicon-calendar"></span>
{{ post.updated|date("d/m/Y à H\\hi") }}
</time>
</div>
</header>
<div class="page-content">
{{ post.excerpt|raw }}
<p><a href="{{ post.link }}" target="_blank">{{ post.link }}</a></p>
</div>
</article>