16 lines
917 B
Twig
16 lines
917 B
Twig
<div class="post">
|
|
<h3>{% if title_links %}<a href="{{ path('GergelyPolonkaiFrontBundle_blogViewPost', {year: post.createdAt|date('Y'), month: post.createdAt|date('m'), day: post.createdAt|date('d'), slug: post.slug}) }}">{% endif %}{{ post.title }}{% if title_links %}</a>{% else %}<div class="plusone-container"><div class="g-plusone" data-annotation="inline" data-size="small" data-width="300"></div></div>{% endif %}</h3>
|
|
<p class="article-date">{{ post.createdAt|date('m-d-Y :: H:i') }} by {{ post.user.name }}</p>
|
|
{{ post.content|insert_code_chunks }}
|
|
{% if post.tags|length > 0 %}
|
|
<p class="article-tags">Tags:
|
|
{% for tag in post.tags %}
|
|
<a href="{{ path('GergelyPolonkaiFrontBundle_blogTagList', { name: tag.name }) }}">{{ tag.name }}</a>
|
|
{% endfor %}
|
|
</p>
|
|
{% endif %}
|
|
{% if not title_links %}
|
|
<div class="g-plus" data-action="share" data-height="15"></div>
|
|
{% endif %}
|
|
</div>
|