1
0
Fork 0
This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
nexus-archive/templates/base.html.twig

28 lines
775 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Nexus Archive{% endblock %}</title>
<link href="/css/combined.css" rel="stylesheet">
</head>
<body>
<header>
<nav>
<menu>
{% for menuItem in mainMenuGenerator.getMenu() %}
{% if menuItem.external %}
<li><a href="{{ menuItem.url }}" rel="external">{{ menuItem.name }}</a></li>
{% else %}
<li><a href="{{ menuItem.url }}">{{ menuItem.name }}</a></li>
{% endif %}
{% endfor %}
</menu>
</nav>
</header>
<main>
{% block body %}{% endblock %}
</main>
</body>
</html>