diff options
| author | home_pc <[email protected]> | 2020-01-20 13:48:51 -0800 |
|---|---|---|
| committer | home_pc <[email protected]> | 2020-01-20 13:48:51 -0800 |
| commit | 75fa1d1810e98453960a81115d88302e276d817f (patch) | |
| tree | 92f37accb3cb041d056d00525b5830a69862631a /docs/source/_themes/groundwork/layout.html | |
| parent | fixed install.mel issue (diff) | |
| download | artv2-75fa1d1810e98453960a81115d88302e276d817f.tar.xz artv2-75fa1d1810e98453960a81115d88302e276d817f.zip | |
Uploading work on refactor
At this point, all components can build their skeletons. Next steps are to get components building their rigs.
Diffstat (limited to 'docs/source/_themes/groundwork/layout.html')
| -rw-r--r-- | docs/source/_themes/groundwork/layout.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/source/_themes/groundwork/layout.html b/docs/source/_themes/groundwork/layout.html new file mode 100644 index 0000000..1864aec --- /dev/null +++ b/docs/source/_themes/groundwork/layout.html @@ -0,0 +1,34 @@ +{%- 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_groundwork.css', 1) }}" type= "text/css" rel="stylesheet" /> + <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9"> + <!-- Place this tag in your head or just before your close body tag. --> +{% endblock %} + +{%- block sidebarsearch %} + {{ super() }} + {%- include "contribute.html" %} +{% endblock %} + +{% block relbar2 %} + {% if theme_github_fork %} + <div class="github_fork"> + <a href="http://github.com/{{ theme_github_fork }}"> + <img style="position: fixed; top: 0; right: 0; border: 0;" + src="https://s3.amazonaws.com/github/ribbons/forkme_right_{{ theme_github_ribbon_color }}.png" + alt="Fork me on GitHub"> + </a> + </div> + {% endif %} + +{% endblock %} + +{%- block footer %} + <div class="footer"> + © Copyright {{ copyright }}. + </div> +{%- endblock %} |