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