-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
29 lines (27 loc) · 883 Bytes
/
blog.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
25
26
27
28
29
---
layout: default
title: Blog
---
<div class="container support" style="margin-top: 10px;">
<div class="row" style="padding-top: 20px">
<div class="col-lg-12">
<h2 style="color: #285893;">Blog</h2>
<p>A space for users to share ideas, research, insight, and experiences and learn about the exciting things happening around the community.
Interested in authoring a guest blog? <a href="mailto:[email protected]?subject=Guest Blog Inquiry">Email us!</a>
</p>
<hr>
<div>
{% for post in site.posts %}
<div>
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
<div><b>{{ post.author }}</b></div>
<div><em>{{ post.date | date: "%-d %B %Y" }}</em></div>
<br/>
{{ post.excerpt | strip_html | truncatewords:75 }}
<div><hr></div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>