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/jobs.html | |
initial commit
Diffstat (limited to 'app/templates/jobs.html')
| -rw-r--r-- | app/templates/jobs.html | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/app/templates/jobs.html b/app/templates/jobs.html new file mode 100644 index 0000000..59d4ba8 --- /dev/null +++ b/app/templates/jobs.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} +{% block content %} + +<div class="header"> +  <a class="logo">shopdb</a> +  <div class="header-right"> +    <a class="active" href="jobs">jobs</a> +    <a href="inventory">inventory</a> +  </div> +</div> + + +<h1>jobs</h1> +<p>This website was built with Python via the Flask framework.</p> + +{{ df|safe }} + + +{% endblock %} | 
