21 lines
No EOL
377 B
Twig
21 lines
No EOL
377 B
Twig
{% extends '/layout.twig' %}
|
|
|
|
{% block title %}{{ metatabs.meta.title }} | {{ settings.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if home and settings.themes.cyanine.landingpage %}
|
|
|
|
{% include 'home.twig' %}
|
|
|
|
{% elseif home and settings.themes.cyanine.blog %}
|
|
|
|
{% include 'blog.twig' %}
|
|
|
|
{% else %}
|
|
|
|
{% include 'page.twig' %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %} |