forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
24 lines (21 loc) · 850 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
---
<div class="posts">
<div style="background: #E1F5A9; padding: 1em; border-radius: 1em; border: 2px solid #74DF00">
Hey! This site -- both style and content -- is maintained by the ISMRM
community on <a href="https://github.com/ISMRM/ismrm.github.io">GitHub</a>. Head over to contribute articles, features, bug reports, and other feedback.
</div>
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="date">
{{ post.date | date: "%B %e, %Y" }} {% if post.author %} • {{ post.author }} {% endif %}
</div>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>