diff options
author | fabrixxm <fabrixxm@kirgroup.net> | 2024-11-16 18:11:17 +0100 |
---|---|---|
committer | fabrixxm <fabrixxm@kirgroup.net> | 2024-11-16 18:11:17 +0100 |
commit | 268b7d09e8dc6dcbfb4b4793ec5333314fa9b31e (patch) | |
tree | 0805661132fb91dc52c25606dd6fd0641079fb3d /templates/web/base.html | |
parent | fa4b7667f7f859fbbe3fd5f910e5c130b76ae028 (diff) |
Diffstat (limited to 'templates/web/base.html')
-rw-r--r-- | templates/web/base.html | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/templates/web/base.html b/templates/web/base.html index a3c430b..13dedf5 100644 --- a/templates/web/base.html +++ b/templates/web/base.html @@ -14,14 +14,18 @@ </head> <body> <header> - <h1><a href="{{ url_for('index') }}"><img src="{{ url_for('static', filename='linkopedia_rgb.svg') }}">Linkopedia</a></h1> - <span>i Bookmark del <a href="https://gl-como.it/">GL-Como</a></span> + <div> + <h1><a href="{{ url_for('index') }}"><img src="{{ url_for('static', filename='linkopedia_rgb.svg') }}">Linkopedia</a></h1> + <span>i Bookmark del <a href="https://gl-como.it/">GL-Como</a></span> + </div> </header> + <nav> + <form method="get" action="{{ url_for('search') }}"> + <input name="q" placeholder="cerca..." value="{% if q %}{{ q }}{% endif %}"> + </form> + </nav> {% block content %}{% endblock %} <footer> - <form method="get" action="{{ url_for('search') }}"><input name="q" placeholder="cerca..." value="{% if q %}{{ q }}{% endif %}"></form> - </footer> - <footer> <small> <svg xmlns="http://www.w3.org/2000/svg" class="svg-icon" viewBox="0 0 194 194"><path d="M3.7 88.4L88.4 3.7c4.9-4.9 12.8-4.9 17.7 0l17.6 17.6-22.3 22.3c-5.3-1.8-11.2-.6-15.4 3.5-4.2 4.2-5.3 10.2-3.5 15.4L61 84c-5.2-1.8-11.2-.6-15.4 3.5-5.8 5.8-5.8 15.2 0 21 5.8 5.8 15.2 5.8 21 0 4.4-4.4 5.4-10.8 3.2-16.2l20.2-20v52.8c-1.4.7-2.8 1.6-3.9 2.8-5.8 5.8-5.8 15.2 0 21 5.8 5.8 15.2 5.8 21 0 5.8-5.8 5.8-15.2 0-21-1.4-1.4-3.1-2.5-4.9-3.2V71.4c1.8-.7 3.4-1.8 4.9-3.2 4.4-4.4 5.5-10.9 3.2-16.3l22-22 58 58.1c4.9 4.9 4.9 12.8 0 17.7l-84.7 84.7c-4.9 4.9-12.8 4.9-17.7 0L3.7 106c-4.9-4.8-4.9-12.8 0-17.6" fill="#f03c2e"/></svg> <a href="http://git.trueelena.org/bookmarks/gl-como/about/">collection</a> |