From ceabef96ba23f1f47927198b5eec850738e4d140 Mon Sep 17 00:00:00 2001 From: blek Date: Sat, 21 Oct 2023 12:22:42 +1000 Subject: [PATCH] add app icon to /authors, overall improve the page's design --- filed/static/assets/mobile-hide.css | 6 +++ filed/templates/authors.html | 74 ++++++++++++++++++----------- 2 files changed, 52 insertions(+), 28 deletions(-) diff --git a/filed/static/assets/mobile-hide.css b/filed/static/assets/mobile-hide.css index e848275..4088da2 100644 --- a/filed/static/assets/mobile-hide.css +++ b/filed/static/assets/mobile-hide.css @@ -1,5 +1,11 @@ +.mobile-only { + display: none; +} @media (max-width:667px) { .mobile-hide { display: none } + .mobile-only { + display: inherit; + } } \ No newline at end of file diff --git a/filed/templates/authors.html b/filed/templates/authors.html index bdead71..75fe710 100644 --- a/filed/templates/authors.html +++ b/filed/templates/authors.html @@ -1,36 +1,54 @@ {% extends "base.html" %} +{% block head %} + +{% endblock %} + {% block body %} -
-

Authors

-

- {%- if conf.brand.instance_name != "blek! File" -%} - {{ conf.brand.instance_name }} is powered by - {%- endif -%} - blek! File is free and Open Source software, which is released under the - - GPLv3{# -#} - - license. +

+

+

- -

- The original program is written by blek! <me@blek.codes>, and is maintained solely by me. -
- Any future contributors will be listed here. -

- -

- PRs are welcome - - - Take a look at the git repo - -

- - - Go back - + + + + + + + +
+ + +

Authors

+

+ {%- if conf.brand.instance_name != "blek! File" -%} + {{ conf.brand.instance_name }} is powered by + {%- endif -%} + blek! File is free and Open Source software, which is released under the + + GPLv3{# -#} + + license. +

+ +

+ The original program is written by blek! <me@blek.codes>, and is maintained solely by me. +
+ Any future contributors will be listed here. +

+ +

+ PRs are welcome - + + Take a look at the git repo + +

+ + + Go back + +
{% endblock %} \ No newline at end of file