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