Files
scherbengericht-jetzt/index.html

51 lines
1.4 KiB
HTML

---
title: Scherbengericht jetzt
layout: default
---
{% assign intro-page = site.pages | where: "name", "intro.html" | first %}
{% assign about-page = site.pages | where: "name", "about.md" | first %}
{% include navigation.html %}
<div id="main">
<div id="intro" class="section p-intro">
{{ intro-page.content }}
</div>
<hr/>
{% for post in site.posts reversed %}
{% capture id %}{{ post.id | remove:'/' | downcase }}{% endcapture %}
<div id="{{id}}" class="section p-{{id}}">
{% if post.icon %}
<div class="subtlecircle sectiondivider imaged">
<img src="{{post.icon}}" alt="section icon" />
<h5 class="icon-title">{{ post.title }}</h5>
</div>
{% elsif post.fa-icon %}
<div class="subtlecircle sectiondivider faicon">
<span class="fa-stack">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-{{ post.fa-icon }} fa-stack-1x"></i>
</span>
<h5 class="icon-title">{{ post.title }}</h5>
</div>
{% else %}
<div class="subtlecircle sectiondivider">
<h1 class="icon-title">{{ post.title }}</h1>
</div>
{% endif %}
<div class="container {{ post.style }}">
{{ post.content }}
</div>
<!---->
<div style="text-align: center;"></div>
<hr/>
</div>
{% endfor %}
<div id="about" class="section p-about">
{{ about-page.content }}
</div>
</div>