-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
36 lines (29 loc) · 959 Bytes
/
index.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
---
<p>Syndicated to <a href="https://git.work">git.work</a>.</p>
<div class="posts">
{% for post in site.posts %}
<article class="post h-entry h-product">
<h1 class="p-name"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{% if post.price %}
<p>Price: <span class="p-price">{{ post.price }}</span></p>
{% endif %}
{{ post.excerpt }}
</div>
<div class="date">
Written on <date datetime="{{ post.date | date_to_xmlschema }}" class="dt-published">{{ post.date | date: "%B %e, %Y" }}</date>
</div>
{% if post.skills %}
<p>Skills:
{% for skill in post.skills %}
<span class="p-category">{{ skill }}</span>
{% endfor %}
</p>
{% endif %}
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
<a href="{{ post.url | absolute_url }}" class="u-url">Permalink</a>
</article>
{% endfor %}
</div>