Initial commit with site and first Revuo Weekly issue

This commit is contained in:
2019-03-28 22:32:42 -06:00
commit 8d5620cdff
44 changed files with 1773 additions and 0 deletions

17
index.html Normal file
View file

@ -0,0 +1,17 @@
---
layout: default
---
<!-- Posts -->
<ul id="posts">
{% for post in paginator.posts %}
<li class="post">
<h2><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}">{{ post.title }}</a></h2>
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>