lyadmin/templates/main_layout.html

23 lines
570 B
HTML
Raw Normal View History

2020-11-26 01:14:59 -05:00
<!DOCTYPE html>
<head>
<title>LAINTILDE0</title>
2020-11-26 17:15:40 -05:00
{% if page_name %}
<link rel="stylesheet" href="{{url_for('static',filename='main_' + page_name + '.css')}}">
2020-11-26 17:15:40 -05:00
{% else %}
<link rel="stylesheet" href="{{url_for('static',filename='main.css')}}">
{% endif %}
2020-11-26 01:14:59 -05:00
</head>
2020-11-26 20:01:11 -05:00
<h1>{{ site_name }}</h1>
2020-11-26 01:14:59 -05:00
<body>
<div class="container">
{%block content%}
{%endblock%}
</div>
</body>
2020-11-26 17:06:39 -05:00
{% if page_name == "home" %}
<div style="min-height: 300px;"></div>
2020-11-26 01:14:59 -05:00
<footer>admin: <a href="email:gashapwn@protonmail.com">gashapwn@protonmail.com</a></footer>
2020-11-26 17:06:39 -05:00
{% endif %}
2020-11-26 01:14:59 -05:00
</html>