forked from donovanh/my-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles.html
28 lines (26 loc) · 948 Bytes
/
articles.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
---
layout: default
title: Articles – Sara Soueidan – Freelance Front-end Web Developer
name: articles
---
<div class="full-width">
<div class="wrapper clearfix">
<aside class="left-sidebar">
<h1>I Wrote:</h1>
</aside>
<section class="main clearfix" role="main">
{% for post in site.posts %}
<article class="post">
<h2 class="post-title">
{% if post.external %}
<a href="{{ post.external.url }}">{{ post.title }}</a>
{% else %}
<a href="{{ post.url }}">{{ post.title }}</a>
{% endif %}
</h2>
<p>{{ post.date | date_to_long_string }} {% if post.external %} — <strong>{{ post.external.host }}</strong> {% endif %}</p>
</article>
{% endfor %}
</section>
</div>
</div>