arcoa/templates/base.html.twig

28 lines
985 B
Twig

<!DOCTYPE html>
<html data-theme="light">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="shortcut icon" type="image/png" href="{{ asset('img/favicon.png') }}">
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
<footer class="footer pb-5">
<div class="content has-text-centered">
<p><strong><a href="/about">About</a></strong></p>
<p><strong><a href="/credits">Credits</a> </strong></p>
<p>
<strong>ArCOA</strong> - Copyright &copy; 2021 - {{ 'now' | date('Y') }}
<a href="https://ispc.cnr.it">CNR-ISPC</a> - <a href="http://www.studilefili.unimi.it/ecm/home">UniMi</a>
</p>
</div>
</footer>
</html>