27 lines
700 B
HTML
27 lines
700 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Frog Collective</title>
|
|
<link rel="stylesheet" href="/style.css"/>
|
|
<script type="module" src="/js/index.js"></script>
|
|
{% if context.current_language == "fr" %}
|
|
<style>
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
</style>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
{% include "lib/nav.html" %}
|
|
|
|
<div class="content">
|
|
{% include "pages/index/presentation.html" %}
|
|
{% include "pages/index/games.html" %}
|
|
{% include "pages/index/news.html" %}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|