diff --git a/themes/openAV-Luppp/static/css/style.css b/themes/openAV-Luppp/static/css/style.css index fb155d8..d30f580 100644 --- a/themes/openAV-Luppp/static/css/style.css +++ b/themes/openAV-Luppp/static/css/style.css @@ -76,4 +76,8 @@ a.pure-button-primary { .content a:hover { color: #ff9900; +} + +.footer { + z-index: 100; } \ No newline at end of file diff --git a/themes/openAV-Luppp/templates/base.html b/themes/openAV-Luppp/templates/base.html new file mode 100644 index 0000000..0971e24 --- /dev/null +++ b/themes/openAV-Luppp/templates/base.html @@ -0,0 +1,55 @@ + + + + + + + + {% block title %}{{ SITENAME }}{% endblock title %} + + + + + + + + + + + + + + + + + + + + + + +
+
+ {{ SITENAME }} + + +
+
+ + {% block content %}{% endblock %} + + + + + + \ No newline at end of file diff --git a/themes/openAV-Luppp/templates/landing_page.html b/themes/openAV-Luppp/templates/landing_page.html index da65f4d..d517dc5 100644 --- a/themes/openAV-Luppp/templates/landing_page.html +++ b/themes/openAV-Luppp/templates/landing_page.html @@ -1,138 +1,89 @@ - - +{% extends "base.html" %} - - - - - {% block title %}{{ SITENAME }}{% endblock title %} - - - - - - - - - - - - - - - - - - - - - - -
-
- {{ SITENAME }} - - -
+{% block content %} +
+
+

{{ SPLASH_HEADING }}

+

+ {{ SPLASH_SUBHEADING }} +

+

+ + + {{ SPLASH_BUTTON_TEXT }} + +

+
-
-
-

{{ SPLASH_HEADING }}

-

- {{ SPLASH_SUBHEADING }} -

-

- - - {{ SPLASH_BUTTON_TEXT }} - -

-
-
+
+
+

{{ FEATURES_HEADING}}

-
-
-

{{ FEATURES_HEADING}}

- -
-
- -

- {{ FEATURES_FIRST_HEADING }} -

-

- {{ FEATURES_FIRST_CONTENT }} -

-
-
-

- {{ FEATURES_SECOND_HEADING }} -

-

- {{ FEATURES_SECOND_CONTENT }} -

-
-
-

- {{ FEATURES_THIRD_HEADING }} -

-

- {{ FEATURES_THIRD_CONTENT }} -

-
-
-

- {{ FEATURES_FOURTH_HEADING }} -

-

- {{ FEATURES_FOURTH_CONTENT }} -

-
-
-
- -
-
- File Icons -
-
- -

{{ RIBBON_HEADING }}

+
+
+

+ {{ FEATURES_FIRST_HEADING }} +

- {{ RIBBON_CONTENT }} + {{ FEATURES_FIRST_CONTENT }} +

+
+
+

+ {{ FEATURES_SECOND_HEADING }} +

+

+ {{ FEATURES_SECOND_CONTENT }} +

+
+
+

+ {{ FEATURES_THIRD_HEADING }} +

+

+ {{ FEATURES_THIRD_CONTENT }} +

+
+
+

+ {{ FEATURES_FOURTH_HEADING }} +

+

+ {{ FEATURES_FOURTH_CONTENT }}

+
-
-

{{ page.title }}

- -
-
-
- {{ page.content }} -
-
- +
+
+ File Icons
+
- +
+ +
+

{{ page.title }}

+ +
+
+
+ {{ page.content }} +
- - \ No newline at end of file + +
+{% endblock %} \ No newline at end of file diff --git a/themes/openAV-Luppp/templates/page.html b/themes/openAV-Luppp/templates/page.html index 0e136e9..b09d890 100644 --- a/themes/openAV-Luppp/templates/page.html +++ b/themes/openAV-Luppp/templates/page.html @@ -1,67 +1,14 @@ - - +{% extends "base.html" %} +{% block content %} +
+

{{ page.title }}

- - - - - {% block title %}{{ SITENAME }}{% endblock title %} - - - - - - - - - - - - - - - - - - - - - - -
-
- {{ SITENAME }} - -
    - {% for title, link in LINKS %} -
  • {{ title }}
  • - {% endfor %} -
+
+
+
+ {{ page.content }}
-
-

{{ CONTENT_HEADING }}

- -
-
-
- {{ CONTENT }} -
-
- -
- - - -
- - - - \ No newline at end of file +
+{% endblock %} \ No newline at end of file