From 977c7c38ff4196f43c4784308d81fd7e6a471511 Mon Sep 17 00:00:00 2001 From: syn Date: Mon, 16 Mar 2020 22:17:48 +0300 Subject: Init commit --- app/templates/base.html.j2 | 18 ++++++++++++++++++ app/templates/index.html.j2 | 21 +++++++++++++++++++++ app/templates/profile.html.j2 | 6 ++++++ 3 files changed, 45 insertions(+) create mode 100644 app/templates/base.html.j2 create mode 100644 app/templates/index.html.j2 create mode 100644 app/templates/profile.html.j2 (limited to 'app/templates') diff --git a/app/templates/base.html.j2 b/app/templates/base.html.j2 new file mode 100644 index 0000000..b2c0957 --- /dev/null +++ b/app/templates/base.html.j2 @@ -0,0 +1,18 @@ + + + + Eternal Blume + + + + {% block load_scripts %} + {% endblock %} + + + +
+ {% block content %} + {% endblock %} +
+ + diff --git a/app/templates/index.html.j2 b/app/templates/index.html.j2 new file mode 100644 index 0000000..f7d9746 --- /dev/null +++ b/app/templates/index.html.j2 @@ -0,0 +1,21 @@ +{% extends "base.html.j2" %} + +{% block load_scripts %} + + + +{% endblock %} + +{% block content %} + +
+
+ +{% for url in picurls %} + + {{ url }} +
+ +
+{% endfor %} +{% endblock %} diff --git a/app/templates/profile.html.j2 b/app/templates/profile.html.j2 new file mode 100644 index 0000000..d4da6c4 --- /dev/null +++ b/app/templates/profile.html.j2 @@ -0,0 +1,6 @@ +{% extends "base.html.j2" %} +{% block content %} + +
url: {{ '/i/' + url }} +date: 1986-04-26T21:23+0000
+{% endblock %} \ No newline at end of file -- cgit v1.2.1-18-gbd029