misp-website/_layouts/post.html

25 lines
629 B
HTML
Raw Normal View History

2015-01-07 23:34:47 +01:00
{% include header.html %}
<!-- Main -->
<section class="wrapper style1">
<div class="container">
<!-- Blog -->
<section>
<header class="major">
<h2>{{ page.title }}</h2>
2020-09-30 10:14:59 +02:00
<p>Posted {{ page.date | date_to_string }} by {{ page.authors }} </p>
2015-01-07 23:34:47 +01:00
</header>
<div class="row">
<div class="8u -2u">
<section class="box">
2015-09-07 23:35:16 +02:00
<a href="#" class="image left"><img src="{{ site.baseurl }}{{ page.featured }}" alt="" /></a>
2016-07-23 18:31:16 +02:00
{{ page.content | markdownify }}
2015-01-07 23:34:47 +01:00
</section>
</div>
</div>
</section>
</div>
</section>
2016-07-23 18:31:16 +02:00
{% include footer.html %}