{% extends "base.html" %} {% block title %}{{ section.title }} - {{ config.title }}{% endblock title %} {% block content %}
{% if section.title %}

{{ section.title }}

{% endif %}
{{ section.content | safe }}
{% set projects_section = get_section(path="projects/_index.md") %} {% if projects_section.pages | length > 0 %}

Projects

{% endif %} {% set blog_section = get_section(path="blog/_index.md") %} {% if blog_section.pages | length > 0 %}

Blog

{% set latest = blog_section.pages | first %}

{{ latest.title }}

{% if latest.date %}

{% endif %} {% if latest.summary %} {{ latest.summary | safe }} {% else %}

{{ latest.content | striptags | truncate(length=400) }}

{% endif %}

Read more →

{% if blog_section.pages | length > 1 %}

Recent Posts

{% endif %}

All posts →

{% endif %} {% endblock content %}