apostrophe-multisite
Version:
Multisite support for the Apostrophe CMS. Create & manage multiple sites with the same configuration and host them efficiently.
41 lines (30 loc) • 892 B
HTML
{% extends "outerLayoutBase.html" %}
{% block startHead %}
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{% endblock %}
{% block apostropheMenu %}{% endblock %}
{% block title %}
{% if data.piece %}
{{ data.piece.title }}
{% elseif data.page %}
{{ data.page.title }}
{% else %}
{{ apos.log('Looks like you forgot to override the title block in a template that does not have access to an Apostrophe page or piece.') }}
{% endif %}
{% endblock %}
{% block extraHead %}
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500" rel="stylesheet">
{% endblock %}
{% block beforeMain %}
<header>
<nav class="o-container c-navigation">
{{ apos.adminBar.output() }}
</nav>
</header>
{% endblock %}
{% block main %}{% endblock %}
{% block afterMain %}
<footer>
</footer>
{% endblock %}
{% block extraBody %}{% endblock %}