From dd0cce923a29aee84f7050b7e0c886c8d32a84a7 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 7 Aug 2017 09:17:36 +0300 Subject: Add wiki content --- templates/base.html | 2 ++ templates/index.html | 16 +++++++--------- templates/wiki-page.html | 6 ++++++ templates/wiki.html | 9 +++++++++ 4 files changed, 24 insertions(+), 9 deletions(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 379b224..64d672f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -19,7 +19,9 @@ +
{% block body %} {% endblock %} +
diff --git a/templates/index.html b/templates/index.html index e0067fb..6f6ea1a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,15 +1,13 @@ {% extends 'base.html' %} {% block body %} -
-
-

postmarketOS

-
- -
-
-

postmarketOS, or pmOS in short, is a touch-optimized, pre-configured Alpine Linux with own packages, that can be installed on smartphones (Not usable for most people yet!).

-
+
+

postmarketOS

+
+ +
+
+

postmarketOS, or pmOS in short, is a touch-optimized, pre-configured Alpine Linux with own packages, that can be installed on smartphones (Not usable for most people yet!).

{% endblock %} diff --git a/templates/wiki-page.html b/templates/wiki-page.html index e69de29..7a24d02 100644 --- a/templates/wiki-page.html +++ b/templates/wiki-page.html @@ -0,0 +1,6 @@ +{% extends 'base.html' %} + +{% block body %} +

{{ title }}

+{{ html|safe }} +{% endblock %} diff --git a/templates/wiki.html b/templates/wiki.html index e69de29..66d870b 100644 --- a/templates/wiki.html +++ b/templates/wiki.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block body %} + +{% endblock %} -- cgit v1.3.1