1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-08 04:59:08 +00:00
safing-web/blog/index.html
2022-02-11 17:50:31 +01:00

24 lines
777 B
HTML

---
title: Safing Blog
layout: page
---
<section class="general-layout">
<div class="blogpod-container mt-80">
<div class="blogpod-container-top">
<span class="blogpod-container-top-bg-title">Follow Us</span>
<h2 class="blogpod-container-top-title">
Blog
</h2>
<div class="blogpod-container-top-extra">
<a class="link-secondary" href="{{ site.blog_feed_url }}"><i class="icon-rss"></i></a>
</div>
</div>
<div class="blogpod-container-bottom">
{% assign sorted_blogs = site.publications | reverse | where:"category","blog" %}
{% for post in sorted_blogs %}
{% include thumbnail_blog.html %}
{% endfor %}
</div>
</div>
</section>