Front page, collections, about

This commit is contained in:
Madison Scott-Clary
2017-09-06 21:48:07 -06:00
parent 4d3b632cd1
commit 2d8d1014e2
24 changed files with 1734 additions and 71 deletions

View File

@ -0,0 +1,26 @@
---
layout: home-page
---
<h1>Rum and Coke</h1>
<p>Much ink has been spent following the exploits of our furry characters, but sometimes, the real interest lies in the act of us as humans being furries.</p>
<p>Taking the form of short stories, these fables of a furry con explore the topics of gender, kink, sex, and relationships at one furry convention.</p>
<ol class="post-card-box clearfix">
{% for post in site.tags['Rum and Coke'] %}
<li>
<div class="post-card{% cycle ' light-purple', '', ' light-gray', ' light-pink' %}">
<a href="{{post.url | prepend: site.baseurl}}" class="post-card-image"{% if post.img %} style="background-image: url( {{ "/assets/img/" | prepend: site.baseurl | append : post.img}} )"{% endif %}>
</a>
<div class="post-card-body">
{% for tag in post.tags %}
<a href="{{site.baseurl}}/tags#{{tag}}" class="tag">|&#32;{{ tag }}</a>
{% endfor %}
<a href="{{post.url | prepend: site.baseurl}}" class="post-card-link"><h3 class="post-card-title">{{post.title}}</h3></a>
</div>
</div>
</li>
{% endfor %}
</ol>