cosmicpi-rpi_V1.5/frontend/templates/base.html
2017-10-12 14:12:03 +02:00

17 lines
No EOL
442 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<link rel="stylesheet" href="style.css" />
<title>{% block title %}{% endblock %} - My Webpage</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
Copyright 2015 by <a href="https://pythonspot.com/">pythonspot</a>.
{% endblock %}
</div>
</body>
</html>