-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·33 lines (30 loc) · 913 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
30
31
32
33
---
layout: default
title: Blog
permalink: /blog/
---
<div class="blog">
<div id="instafeed" class="row"></div>
<div class="container">
<h1 class="header">Read all of my nonsense about code, music and apps</h1>
{% for post in site.posts %}
<div class="col s12 m8 offset-m2 l6 offset-l3">
<div class="card-panel grey lighten-5 z-depth-1">
<div class="row">
<div class="col s10 offset-s1">
<span class="black-text">
<h3 class="header"><a href="{{ post.url }}">{{ post.title }}</a></h3>
<time>{{ post.date | date: "%b %-d, %Y" }}</time>
{{ post.excerpt }}
</span>
<a href="{{ post.url }}" class="waves-effect waves-light btn-large red darken-4">Continue Reading</a>
</div>
</div>
</div>
</div>
{% endfor %}
<div>
<p class="rss-subscribe">subscribe <a href="{{ " /feed.xml " | prepend: site.baseurl }}">via RSS</a></p>
</div>
</div>
</div>