Back to Expressjs

Express Blog Posts

en/blog/posts.md

latest634 B
Original Source

Want to write a post? See the submission guidelines.

{% if site.posts.size != 0 %}

<div class="blog-posts"> {% for post in site.posts %} <div class="blog-post"> <div class="blog-title"> <a href="{{ post.url }}"> {{ post.title }}</a> </div> <div class="blog-details"> {% include blog/authors.html authors=post.authors %} <div >{{ post.date | date:"%b %d, %Y" }}</div> </div> <div class="blog-excerpt"> {{post.excerpt | truncate: 240 | markdownify }} </div> </div> {% endfor %} </div> {% else %} There are currently no blog posts. {% endif %}