restructure, start flask stuff
This commit is contained in:
4
templates/app.css
Normal file
4
templates/app.css
Normal file
@@ -0,0 +1,4 @@
|
||||
.form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
8
templates/base.jinja2
Normal file
8
templates/base.jinja2
Normal file
@@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>Pyrometry Application</title>
|
||||
<link rel="app.css">
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}
|
||||
</body>
|
||||
7
templates/index.jinja2
Normal file
7
templates/index.jinja2
Normal file
@@ -0,0 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="form">
|
||||
<button onclick="">
|
||||
</button>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user