misp-website/_includes/sidebar.html

14 lines
292 B
HTML
Executable File

<div id="sidebar">
<!-- Sidebar -->
{% for post in site.posts offset: 0 limit: 2 %}
<section>
<h3>{{ post.title }}</h3>
{{ post.excerpt }}
<footer>
<a href="{{ site.prefix }}{{ post.url }}" class="button">Continue Reading</a>
</footer>
</section>
{% endfor %}
</div>