summaryrefslogtreecommitdiff
path: root/app/templates/jobs.html
blob: 59d4ba89c768f81caa11c04dc053671e6426ce3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 %}