2016-07-23 18:31:16 +02:00
|
|
|
---
|
|
|
|
title: Blog
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<!-- Main -->
|
|
|
|
<section class="wrapper style1">
|
|
|
|
<div class="container">
|
|
|
|
<div id="content">
|
|
|
|
<div class="row">
|
|
|
|
<div class="12u">
|
|
|
|
|
|
|
|
<!-- Blog -->
|
|
|
|
<section>
|
|
|
|
<header class="major">
|
2019-08-07 13:31:02 +02:00
|
|
|
<h2>News</h2><span><a href="https://www.misp-project.org/feed.xml"><img src="/assets/images/rss.svg" alt="RSS Feed" width="40" height="40" /></a></span>
|
2016-07-23 18:31:16 +02:00
|
|
|
</header>
|
2017-11-05 10:58:17 +01:00
|
|
|
{% for post in site.posts offset: 0 limit: 40 %}
|
2016-07-23 18:31:16 +02:00
|
|
|
<div class="row">
|
|
|
|
<section class="12u">
|
|
|
|
<div class="box post">
|
2019-03-10 11:14:09 +01:00
|
|
|
<a href="#" class="image left"><img src="{{ site.baseurl }}{{ post.featured }}" alt="post.excerpt" style=""></a>
|
2016-07-23 18:31:16 +02:00
|
|
|
<div class="inner">
|
2016-08-11 17:10:06 +02:00
|
|
|
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
|
2016-08-02 15:59:10 +02:00
|
|
|
<i>Posted on {{ post.date | date_to_string }}</i>
|
2017-02-18 16:09:55 +01:00
|
|
|
<p>{{ post.excerpt }}</p>
|
2016-07-23 18:31:16 +02:00
|
|
|
<footer>
|
|
|
|
<a href="{{ site.baseurl }}{{ post.url }}" class="button">Continue Reading</a>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|