29 lines
911 B
HTML
29 lines
911 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ gettext('Frog Collective is a french indie computer game studio.') }}">
|
|
<title>Frog Collective</title>
|
|
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
|
|
<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">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
{% include "pages/index/footer.html" %}
|
|
</body>
|
|
</html>
|