diff --git a/wish/static/theme.css b/wish/static/theme.css new file mode 100644 index 0000000..c9da568 --- /dev/null +++ b/wish/static/theme.css @@ -0,0 +1,12 @@ +body { + background-color: #003; + color: #5bf; +} + +a { + color: #8df; +} + +h1, h2, h3, h4, h5, h6 { + font-family: sans-serif; +} diff --git a/wish/templates/base.html b/wish/templates/base.html new file mode 100644 index 0000000..7b52548 --- /dev/null +++ b/wish/templates/base.html @@ -0,0 +1,56 @@ +{% load static %} + + + + {# Meta: #} + + {% if GENERATOR %} + + {% endif %} + {% if AUTHOR %} + + {% endif %} + {% if SITE_DESCRIPTION %} + + {% endif %} + + {# + + + #} + + {# TODO: More meta tags #} + + {# CSS and other: #} + + + {# Title setting #} + {% if page_title %} + {% set final_title = page_title ~ ' – ' ~ SITENAME %} + {% else %} + {% set final_title = SITENAME %} + {% endif %} + {{ final_title }} + + + +
+{% include "header.html" %} +
+ + + +
+{% block content %} +

No content here...

+{% endblock content %} +
+ + + + + diff --git a/wish/templates/footer.html b/wish/templates/footer.html new file mode 100644 index 0000000..b7275ba --- /dev/null +++ b/wish/templates/footer.html @@ -0,0 +1,2 @@ +
+Written using {{ GENERATOR }} probably by {{ AUTHOR }}. diff --git a/wish/templates/header.html b/wish/templates/header.html new file mode 100644 index 0000000..e69de29 diff --git a/wish/templates/sidebar.html b/wish/templates/sidebar.html new file mode 100644 index 0000000..e69de29