mirror of https://github.com/MISP/misp-website
14 lines
292 B
HTML
Executable File
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.baseurl }}{{ post.url }}" class="button">Continue Reading</a>
|
|
</footer>
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|