--- layout: default permalink: examples ---

Examples

This is more like an example page with different widgets.

Posts

{% for post in site.posts %} {% assign nth = forloop.index0 | modulo:2 %}
{% if nth == 0 %}
{{ post.title }}
{% endif %}
{{ post.date | date_to_string }} » {% if post.external_url %} {{ post.title }} {% else %} {{ post.title }} {% endif %}
{{ post.short_description }}
{% if nth == 1 %}
{{ post.title }}
{% endif %}
{% endfor %}

Cards

{% for project in site.projects %}
{{ project.name }}
{% if project.image %} {{ project.name }} {% endif %}

{{ project.description }}

{% endfor %}