24 lines
447 B
HTML
24 lines
447 B
HTML
<!doctype html>
|
|
<html lang="{{ lang }}" onmouseup="dropdown_hide(event)">
|
|
|
|
{% include 'tmpl/_header.htm' %}
|
|
|
|
<body onkeydown="checkkey(event)">
|
|
|
|
{% include 'tmpl/_lang-dropdown.htm' %}
|
|
|
|
{% include 'tmpl/_menu.htm' %}
|
|
|
|
<div id="article">
|
|
{% include 'tmpl/_git.htm' %}
|
|
|
|
{% include 'tmpl/_article.htm' %}
|
|
|
|
{% include 'tmpl/_socials.htm' %}
|
|
</div>
|
|
|
|
{% include 'tmpl/_footer.htm' %}
|
|
</body>
|
|
|
|
</html>
|