summaryrefslogtreecommitdiff
path: root/app/templates
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2019-11-09 19:55:57 -0600
committerBlaise Thompson <blaise@untzag.com>2019-11-09 19:55:57 -0600
commitc99d2447b57d6e14a78013152a53bb4552a33bb7 (patch)
tree7abce49aa4a35e51ae43dd2cace880b611a5f93b /app/templates
parent735f16fe70f6f1d182d42d1f5161fe2aebe6aa6d (diff)
pre-commit
Diffstat (limited to 'app/templates')
-rw-r--r--app/templates/inventory.html16
-rw-r--r--app/templates/jobs.html19
-rw-r--r--app/templates/layout.html15
-rw-r--r--app/templates/main.css76
4 files changed, 0 insertions, 126 deletions
diff --git a/app/templates/inventory.html b/app/templates/inventory.html
deleted file mode 100644
index d995835..0000000
--- a/app/templates/inventory.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% 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 %}
diff --git a/app/templates/jobs.html b/app/templates/jobs.html
deleted file mode 100644
index 59d4ba8..0000000
--- a/app/templates/jobs.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% 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 %}
diff --git a/app/templates/layout.html b/app/templates/layout.html
deleted file mode 100644
index e63f746..0000000
--- a/app/templates/layout.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta name="viewport" content="width=device-width, initial-scale=1">
-<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
-</head>
-<body>
-
-<div class="container">
- {% block content %}
- {% endblock %}
-</div>
-
-</body>
-</html>
diff --git a/app/templates/main.css b/app/templates/main.css
deleted file mode 100644
index 8ad1c3e..0000000
--- a/app/templates/main.css
+++ /dev/null
@@ -1,76 +0,0 @@
-body {
- margin: 0;
- padding: 0;
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- color: #444;
-}
-/*
- * Formatting the header area
- */
-header {
- background-color: #DFB887;
- height: 35px;
- width: 100%;
- opacity: .9;
- margin-bottom: 10px;
-}
-header h1.logo {
- margin: 0;
- font-size: 1.7em;
- color: #fff;
- text-transform: uppercase;
- float: left;
-}
-header h1.logo:hover {
- color: #fff;
- text-decoration: none;
-}
-/*
- * Centering the body content
- */
-.container {
- width: 1200px;
- margin: 0 auto;
-}
-div.home {
- padding: 10px 0 30px 0;
- background-color: #E6E6FA;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-div.about {
- padding: 10px 0 30px 0;
- background-color: #E6E6FA;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-h2 {
- font-size: 3em;
- margin-top: 40px;
- text-align: center;
- letter-spacing: -2px;
-}
-h3 {
- font-size: 1.7em;
- font-weight: 100;
- margin-top: 30px;
- text-align: center;
- letter-spacing: -1px;
- color: #999;
-}
-.menu {
- float: right;
- margin-top: 8px;
-}
-.menu li {
- display: inline;
-}
-.menu li + li {
- margin-left: 35px;
-}
-.menu li a {
- color: #444;
- text-decoration: none;
-}