misp-website/news/index.html

42 lines
1.3 KiB
HTML
Raw Normal View History

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">
<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">
<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>
<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>