-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog.html
36 lines (31 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
30
31
32
33
34
35
36
---
layout: default
permalink: blog
---
<div>
<section>
<h1>Blog & Notes</h1>
{% for post in site.posts %}
<div class="media t-hackcss-media">
<div class="media-body">
<div class="media-heading">
<span>{{ post.date | date_to_string }} »
{% if post.external_url %}
<a href="{{ post.external_url }}" target="_blank" title="{{ project.name }}">
{{ post.title }}
</a>
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}" title="{{ project.name }}">
{{ post.title }}
</a>
{% endif %}
</span>
</div>
<div class="media-content">
{{ post.short_description }}
</div>
</div>
</div>
{% endfor %}
</section>
</div>