2012-08-08 02:11:40 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
tab: blog
|
|
|
|
footer: hide
|
2012-08-08 13:53:54 +00:00
|
|
|
title: Blog · MSM
|
2012-08-08 02:11:40 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<div class="masthead">
|
|
|
|
<h1>Blog</h1>
|
|
|
|
<p>The narrative of MSM</p>
|
|
|
|
</div>
|
|
|
|
|
2013-09-01 22:51:12 +00:00
|
|
|
{% for post in site.posts %}
|
2012-08-08 02:11:40 +00:00
|
|
|
<div class="inline-post">
|
2013-09-01 23:41:39 +00:00
|
|
|
<div class="title-card">
|
|
|
|
<div class="left">
|
|
|
|
<a class="avatar" href="https://github.com/{{ post.author }}" target="_blank" title="{{ post.author }}">
|
|
|
|
<img src="https://github.com/{{ post.author }}.png">
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<h2 class="title">
|
|
|
|
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
|
|
|
</h2>
|
|
|
|
<p class="date">{{ post.date | date: "%d %B %Y" }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-08-08 02:11:40 +00:00
|
|
|
{{ post.content }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|