-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
33 lines (31 loc) · 851 Bytes
/
blog.html
File metadata and controls
33 lines (31 loc) · 851 Bytes
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
30
31
32
33
---
layout: default
title: Blog
permalink: /blog/
section: blog
---
<div id="home">
<div class="page-display slider-display">
<h1 class="tagline centre">Blog</h1>
<h3 class="centre">"There will be a status update soon I promise" - jamie</h3>
</div>
</div>
<div class="page-container">
{% for post in site.posts %}
<div class="blog-post">
<div class="blog-heading">
<h1>{{ post.title }}</h1>
<a href="{{ post.url }}"><i style="float: right;" class="fa fa-external-link fa-2x"></i></a>
</div>
<div class="blog-subheading">
<span>
Posted on {{ post.date | date_to_long_string }}. Authored by {{ post.author }}.
</span>
</div>
<div class="blog-body">
{{ post.content }}
</div>
</div>
{% endfor %}
</div>