commit
b8dff4a817
@ -0,0 +1 @@
|
||||
admin.json
|
@ -0,0 +1,9 @@
|
||||
import sqlalchemy
|
||||
from flask import Flask
|
||||
from flask import render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def index():
|
||||
return render_template('partsearch.html')
|
@ -0,0 +1,15 @@
|
||||
html {
|
||||
background-color: #D7E2E2;
|
||||
color: #000F0F;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-left: 40pt;
|
||||
margin-top: 20pt;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-left: 20pt;
|
||||
}
|
||||
|
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>ELAB Part Search Engine</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="../static/style.css">
|
||||
<script type="text/javascript" src="../static/script.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>ELAB Part Search Engine</h1>
|
||||
<p>Looking for obsolete ICs that were discontinued years ago?</p>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in new issue