-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathblog.html
38 lines (33 loc) · 1.21 KB
/
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
34
35
36
37
38
---
layout: default
permalink: /blog.deprecated/
---
<section class="left-container about out blog">
<div class="logo-set">
<h2>Blog</h2>
<span class="intro">Shiffman's blog</span>
</div>
<div class="content-wrapper article">
{% for post in site.posts %}
<article class="article-list">
<span class="line-charm"></span>
<p class="date">{{ post.date | date: "%b %d, %Y" }}</p>
<h1><a class="fun-link" href="{{ post.url }}">{{ post.title }}</a></h1>
{{ content }}
<!-- <a href="{{ post.url }}/" class="body-link primary">READ ARTICLE</a> -->
</article>
{% endfor %}
</div>
</section>
<section class="right-container quick-links out">
<h5>QUICK LINKS</h5>
<div class="quick-link">
<a href="mailto:[email protected]" class="secondary">Contact Daniel via Email</a>
</div>
<div class="quick-link">
<a href="https://twitter.com/shiffman" target="_blank" class="secondary">Shiffman on Twitter</a>
</div>
<div class="quick-link">
<a href="https://github.com/shiffman" target="_blank" class="secondary">Shiffman on Github</a>
</div>
</section>