layout: default
<header class=“text-center vertical-center home-header” style=“background-image: url({{ site.data.home.background_path | default: ”/assets/pattern.svg“ }});”>
<div class="small-container{% unless site.logo_path == "" %} push-down{% endunless %}"> <h2 class="no-margin-top">{{ site.data.home.heading | default: "One morning, when Gregor Samsa woke from troubled dreams." }}</h2> {{ site.data.home.body_markdown | default: "Ulysses, Ulysses - Soaring through all the galaxies. In search of Earth, flying in to the night. Ulysses, Ulysses - Fighting evil and tyranny, with all his power, and with all of his might. Ulysses - no-one else can do the things you do. Ulysses - like a bolt of thunder from the blue." | markdownify }} {% include mailchimp-form.html %} </div>
</header>
<section class=“posts overlap”>
<div class="container"> {% assign posts = site.posts %} {% for item in posts %} <article class="cell"> <a href="{{ item.url }}"> <img class="thumbnail-image" src=" {{ item.image | default: "assets/thumbnail.svg" }}" alt="{{ item.title }}"> </a> <div class="container"> <h3><a class="title-link" href="{{ item.url }}">{{ item.title }}</a></h3> {{ item.excerpt | truncatewords: 45 }} </div> </article> {% endfor %} </div>
</section>