16 lines
326 B
HTML
16 lines
326 B
HTML
{% extends "_default/base.html" %}
|
|
{% block content %}
|
|
|
|
<!-- home page template, has a banner and rows of page summaries -->
|
|
|
|
|
|
|
|
<div>
|
|
{% set page = get_page(path="mediakit/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
{% include "partials/media_hero.html" %}
|
|
{% include "partials/quote.html" %}
|
|
|
|
{% endblock content %} |