set up docker generation
This commit is contained in:
25
web2mqtt/templates/layout.html
Normal file
25
web2mqtt/templates/layout.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='site.css') }}" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<a href="{{ url_for('home') }}" class="navbar-brand">Home</a>
|
||||
<a href="{{ url_for('about') }}" class="navbar-item">About</a>
|
||||
<a href="{{ url_for('contact') }}" class="navbar-item">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="body-content">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
<hr/>
|
||||
<footer>
|
||||
<p>© 2018</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user