-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
33 lines (30 loc) · 1.15 KB
/
articles.html
File metadata and controls
33 lines (30 loc) · 1.15 KB
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: "Articles - StandardPixel.com"
header_text: "Articles I'm Reading"
header_style: "text-align:right;"
---
<section style="padding: 20px;">
<h3>Interesting Articles <a href="/articles.xml" title="RSS feed" style="font-size: 0.7em; font-weight: normal; color: #999;">RSS</a></h3>
<p class="subtle">A collection of articles I've found interesting and worth sharing.</p>
{% if site.data.articles.size > 0 %}
<ul style="list-style: disc; margin-left: 20px; padding-left: 20px;">
{% for article in site.data.articles %}
<li style="margin-bottom: 15px;">
<a href="{{ article.url }}" target="_blank" rel="noopener noreferrer">{{ article.title }}</a>
{% if article.date %}
<span style="color: #999; font-size: 0.9em;"> – {{ article.date | date: "%B %d, %Y" }}</span>
{% endif %}
{% if article.note %}
<p style="margin: 5px 0 0 0; color: #666;">{{ article.note }}</p>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>No articles yet. Add some by editing <code>_data/articles.yml</code></p>
{% endif %}
</section>
<section class="link-off">
<a href="/">...off to StandardPixel.com...</a>
</section>