You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
924 B
Twig
37 lines
924 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="main-content" class="main-container"> {% block mainContent %}{% endblock %}
|
|
</section>
|
|
</body>
|
|
</html>
|
|
</div>
|
|
|
|
<footer>
|
|
{% if options['showFooter'] is defined %}
|
|
<!-- NO FOOTER -->
|
|
{% else %}
|
|
<div class="inner">
|
|
<div class="columns">
|
|
<div id="footer_left" class="column">
|
|
<a href="#">About</a><br/>
|
|
</div>
|
|
<div id="footer_right " class="column">
|
|
<a href="#">FAQ</a><br/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
</footer>
|
|
{% block javascripts %}{% endblock %}</body></html> |