Files
CoqResearch/_layouts/default.html
T
alois 87ff37dddb
Build and Deploy Jekyll / build (push) Has been cancelled
feat: initialisation site académique
2026-05-25 16:15:37 +02:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ page.title | default: site.title }}</title>
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔬</text></svg>">
{% seo %}
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<a class="nav-brand" href="/">{{ site.name }}</a>
<div class="nav-links">
{% for item in site.data.navigation %}
{% if item.external %}
<a href="{{ item.url }}" target="_blank" rel="noopener">{{ item.title }}</a>
{% else %}
<a href="{{ item.url }}" {% if page.url == item.url %}class="active"{% endif %}>{{ item.title }}</a>
{% endif %}
{% endfor %}
</div>
</div>
</nav>
<main>{{ content }}</main>
<footer>
<p>&copy; {{ 'now' | date: "%Y" }} {{ site.name }} &mdash; <a href="mailto:{{ site.email }}">{{ site.email }}</a></p>
</footer>
</body>
</html>