Files
monsiteperso/app/templates/index.html.tpl
2026-03-28 12:20:30 +01:00

29 lines
517 B
Smarty

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