diff options
author | Adam Tauber <asciimoo@gmail.com> | 2015-11-17 23:13:30 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2015-11-17 23:38:22 +0100 |
commit | 1d6597b40773b688ca317e1ab1ffe133b370afb1 (patch) | |
tree | 433c03ffffd6dc53a70d059028b449a2be0fecd6 /docs/_themes/searx_theme/layout.html | |
download | searxng-1d6597b40773b688ca317e1ab1ffe133b370afb1.tar.gz searxng-1d6597b40773b688ca317e1ab1ffe133b370afb1.zip |
[enh] initial structure
Diffstat (limited to 'docs/_themes/searx_theme/layout.html')
-rw-r--r-- | docs/_themes/searx_theme/layout.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/_themes/searx_theme/layout.html b/docs/_themes/searx_theme/layout.html new file mode 100644 index 000000000..edf70c1a8 --- /dev/null +++ b/docs/_themes/searx_theme/layout.html @@ -0,0 +1,20 @@ +{%- extends "basic/layout.html" %} +{%- block extrahead %} + {{ super() }} + {% if theme_touch_icon %} + <link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" /> + {% endif %} + <link media="only screen and (max-device-width: 480px)" href="{{ + pathto('_static/small_flask.css', 1) }}" type= "text/css" rel="stylesheet" /> + <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9"> +{% endblock %} +{%- block relbar2 %}{% endblock %} +{%- block relbar1 %}{% endblock %} +{%- block sidebarsearch %}{% endblock %} +{%- block sidebarsourcelink %}{% endblock %} +{%- block sidebartoc %}{% endblock %} +{%- block footer %} + <div class="footer"> + © Copyright {{ copyright }}. + </div> +{%- endblock %} |