mirror of
https://github.com/msmhq/msm.git
synced 2024-08-30 18:12:35 +00:00
19 lines
400 B
HTML
19 lines
400 B
HTML
---
|
|
layout: default
|
|
tab: blog
|
|
footer: hide
|
|
title: Blog · MSM
|
|
---
|
|
|
|
<div class="masthead">
|
|
<h1>Blog</h1>
|
|
<p>The narrative of MSM</p>
|
|
</div>
|
|
|
|
{% for post in paginator.posts %}
|
|
<div class="inline-post">
|
|
<h2 class="title"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
|
|
<p class="date">{{ post.date | date: "%d %B %Y" }}</p>
|
|
{{ post.content }}
|
|
</div>
|
|
{% endfor %} |