rstcms/templates/layout.html

59 lines
2.5 KiB
HTML

<!doctype html>
<html>
<head>
{% block head %}
<!-- CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- jQuery and JS bundle w/ Popper.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='style.css') }}">
<title>{% block title %}{% endblock %}</title>
{% endblock %}
</head>
<body>
<div id="header">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">rst CMS</a>
<div class="navbar-collapse collapse justify-content-between">
<ul class="navbar-nav mr-auto">
<span class="navbar-text">
a no bs CMS
</span>
</ul>
<ul class="navbar-nav">
{% if user %}
<li class="nav-item nav-link">Logged in as: {{ user.username }} <img width='30px' src='{{ user.avatar_url }}'></li>
<li class="nav-item"> <a class="nav-link" href="/logout">Logout</a></li>
{% else %}
<span class="navbar-text">
<li class="nav-item"><a href="/login">login</a></li>
</span>
{% endif %}
</ul>
</div>
</nav>
</div>
<div id='messages'>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</div>
<div id="content" class="container-fluid">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
powered by <a href=''>gitea</a> &amp; <a href=''>flask</a> / themed with <a href="">bootstrap</a> &copy; Copyright 2020 by <a href="https://seidlm.at/">Matthias Seidl</a>.
{% endblock %}
</div>
</body>
</html>