{% 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 %} {% set latest = blog_section.pages | first %}

{{ latest.title }}

{% if latest.date %}

{% endif %} {{ latest.content | safe }}
{% if blog_section.pages | length > 1 %}

Recent Posts

{% endif %}

All posts →

{% endif %} {% endblock content %}