mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
26 lines
560 B
HTML
26 lines
560 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ page.lang }}">
|
||
|
<head>
|
||
|
<script>
|
||
|
var languages = new Array();
|
||
|
{% for language in site.languages %}
|
||
|
languages.push("{{language}}");
|
||
|
{% endfor %}
|
||
|
</script>
|
||
|
{% include head.html %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include navigation.html %}
|
||
|
|
||
|
<div id="content">
|
||
|
{% if page.title == "Official Website" %}<img src="{{site.assets}}/images/banner.png" id="banner" />{% endif %}
|
||
|
|
||
|
<div class="container">
|
||
|
{{ content }}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% include footer.html %}
|
||
|
</body>
|
||
|
</html>
|