-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.2 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
layout: homepage.liquid
title: Cloudbacon
---
<hr>
<h3>Top 6</h3>
<p>
For folks who are are absolutely new here or perhaps
have only showed up once, here is a curated list
to get to know me, my writing style and what to expect
from this space.
</p>
<p>
These posts will help anyone assertain not only the tone
that I aim for but, the content and depth that you can
expect from anything new that may appear in your RSS
reader or inbox of choice.
</p>
<p>
This list is also very transitional and <em>highly</em>
likely to change. If it's the only thing you read here,
make sure to come back by for a new list bimonthly
</p>
{% assign posts = collections.posts %}
{% for post in posts reversed %}
{% if post.data.highlight %}
<div class="post">
<span class="post-title">
<a href="{{ post.url }}">{{ post.data.title }}</a>
</span>
<span class="post-date">
{{ post.date | date: '%b %Y' }}
</span>
</div>
{% endif %}
{% endfor %}
<h3>All Posts</h3>
{% for post in posts reversed %}
<div class="post">
<span class="post-title">
<a href="{{ post.url }}">{{ post.data.title }}</a>
</span>
<span class="post-date">
{{ post.date | date: '%b %Y' }}
</span>
</div>
{% endfor %}