aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2021-02-02 12:24:06 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2021-02-02 12:24:06 +0000
commit1dac1ee189bdcf70a5dd933d5f6a69a15d5a8d7e (patch)
tree0bff6312d7e3bcc364d7632da708f74d15cbd0f3 /templates
parent6eb416ac7784ce08b6959e3db06ccd404736516f (diff)
downloadeda.gay-1dac1ee189bdcf70a5dd933d5f6a69a15d5a8d7e.tar.gz
eda.gay-1dac1ee189bdcf70a5dd933d5f6a69a15d5a8d7e.zip
added the program files for the first time
Diffstat (limited to 'templates')
-rw-r--r--templates/discord.html5
-rw-r--r--templates/index.html31
-rw-r--r--templates/template.html47
3 files changed, 83 insertions, 0 deletions
diff --git a/templates/discord.html b/templates/discord.html
new file mode 100644
index 0000000..b4504a2
--- /dev/null
+++ b/templates/discord.html
@@ -0,0 +1,5 @@
+{% extends "template.html" %}
+{% block content %}
+ <p>You can contact me on discord (telegram preferred):</p>
+ <h1>{{discord}}</h1>
+ {% endblock %} \ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..93138d0
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,31 @@
+{% extends "template.html" %}
+{% block content %}
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ <p>Haiiiiiiii, this is the index page uwu</p>
+ {% endblock %} \ No newline at end of file
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