mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2025-09-21 21:04:47 -04:00
Initial commit with site and first Revuo Weekly issue
This commit is contained in:
commit
8d5620cdff
44 changed files with 1773 additions and 0 deletions
17
index.html
Normal file
17
index.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue