aboutsummaryrefslogtreecommitdiffstats
path: root/templates/template.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/template.html')
-rw-r--r--templates/template.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/templates/template.html b/templates/template.html
new file mode 100644
index 0000000..d6c1a0b
--- /dev/null
+++ b/templates/template.html
@@ -0,0 +1,47 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel='stylesheet' href="{{url_for('static', filename='style.css')}}">
+ </head>
+ <body>
+ <div id=wrapper>
+ <header>
+ <span>
+ <nav id=links>
+ <ul>
+ {% for name, link in links %}
+ <li>
+ <a href={{link}}>{{name}}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </nav>
+ </span>
+ <div id=headerflex>
+ <div id=headers>
+ <a href="/" id=TheTitle><h1>{{title}}</h1></a>
+ <nav id=articles>
+ <ul>
+ {% for name, link in articles %}
+ <li>
+ <a href={{link}}>{{name}}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </nav>
+ </div>
+ <a href="/">
+ <img alt={{image[0]}} src={{image[1]}}>
+ </a>
+ </div>
+ </header>
+ <article>
+ {% block content %}
+ {% endblock %}
+ </article>
+ <footer>
+ <p>Web design is my passion</p>
+ </footer>
+ </div>
+ </body>
+</html> \ No newline at end of file