Refactored index template to use template includes.

This commit is contained in:
th3r00t
2022-11-28 23:02:43 -05:00
parent 1ad708ad10
commit e75212f08f

View File

@@ -1,9 +1,7 @@
<html> <!doctype html>
<head> {% include 'header.html' %}
<title>pyShelf Content Server</title> {% include 'navigation.html' %}
<link href="{{ url_for('static', path='/styles.css') }}" rel="stylesheet"> <section>
</head> {{ package.test }}
<body> </section>
<h1>ID: {{ id }}</h1> {% include 'footer.html' %}
</body>
</html>