diff options
Diffstat (limited to '_includes/recent_posts.html')
-rw-r--r-- | _includes/recent_posts.html | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/_includes/recent_posts.html b/_includes/recent_posts.html deleted file mode 100644 index c079d30..0000000 --- a/_includes/recent_posts.html +++ /dev/null @@ -1,16 +0,0 @@ -{% if site.posts %} -<div class="column sidebar mt-3"> - <div class="column sidebar-element"> - <span> - {% t global.recent_posts %} - </span> - </div> - {% for post in site.posts limit:5 %} - <div class="column sidebar-element"> - <a href="{{ site.baseurl }}{{ post.url }}"> - {{ post.title }} - </a> - </div> - {% endfor %} -</div> -{% endif %} |