demo-HTML-over-WebSockets-i.../apps/front/templates/partials/blog/single.html
Andros Fenollosa 42ffd59ad6 Add comments
2021-03-13 10:39:24 +01:00

23 lines
663 B
HTML

<div class="container grid-md">
<article>
<h1>{{ post.title }}</h1>
<h2>{{ post.author }}</h2>
<div>{{ post.content }}</div>
</article>
<section id="comments">
<hr>
<h3>Comments</h3>
{% for comment in comments %}
<div class="tile">
<div class="tile-icon">
<i class="icon icon-file centered"></i>
</div>
<div class="tile-content">
<p class="tile-title">{{ comment.name }}</p>
<p class="tile-subtitle">{{ comment.body }}</p>
</div>
</div>
<hr>
{% endfor %}
</section>
</div>