29 lines
557 B
Smarty
29 lines
557 B
Smarty
<!DOCTYPE html>
|
|
<html lang="{{ config.lang }}">
|
|
|
|
<head>
|
|
<!-- Style CSS -->
|
|
{% include 'themes/'+config.theme+'/_head.html' %}
|
|
{% block css %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
{% block body %}
|
|
|
|
{% include 'themes/'+config.theme+'/_nav.html' %}
|
|
|
|
{% for bloc in myblocs.values() %}
|
|
{% include 'themes/'+config.theme+'/blocs/_'+bloc.type+'.html' %}
|
|
{% endfor %}
|
|
|
|
|
|
{% endblock %}
|
|
</body>
|
|
|
|
{% include 'themes/'+config.theme+'/javascript.html' %}
|
|
{% block js %}
|
|
{% endblock js %}
|
|
</html>
|
|
|