lyadmin/templates/main_layout.html
2020-11-26 22:06:39 +00:00

19 lines
440 B
HTML

<!DOCTYPE html>
<head>
<title>LAINTILDE0</title>
<link rel="stylesheet" href="{{url_for('static',filename='main_' + page_name + '.css')}}">
</head>
<h1>lingy.in</h1>
<body>
<div class="container">
{%block content%}
{%endblock%}
</div>
</body>
{% if page_name == "home" %}
<div style="min-height: 300px;"></div>
<footer>admin: <a href="email:gashapwn@protonmail.com">gashapwn@protonmail.com</a></footer>
{% endif %}
</html>