diff options
author | Blaise Thompson <blaise@untzag.com> | 2019-11-09 19:41:30 -0600 |
---|---|---|
committer | Blaise Thompson <blaise@untzag.com> | 2019-11-09 19:41:30 -0600 |
commit | 735f16fe70f6f1d182d42d1f5161fe2aebe6aa6d (patch) | |
tree | ca1ee47f01fa0e56cb470d628e8b7cdcfe1df5fc /app/templates/inventory.html |
initial commit
Diffstat (limited to 'app/templates/inventory.html')
-rw-r--r-- | app/templates/inventory.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/templates/inventory.html b/app/templates/inventory.html new file mode 100644 index 0000000..d995835 --- /dev/null +++ b/app/templates/inventory.html @@ -0,0 +1,16 @@ +{% extends "layout.html" %} +{% block content %} + +<div class="header"> + <a class="logo">shopdb</a> + <div class="header-right"> + <a href="jobs">jobs</a> + <a class="active" href="inventory">inventory</a> + </div> +</div> + +<h1>inventory</h1> + +<p>This website was built with Python via the Flask framework.</p> + +{% endblock %} |