From 6702e7412828729c7a5df776d014f25deabf2274 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 27 Aug 2014 23:12:09 -0400 Subject: docs: initial rambutan theme Still needs bundled fonts and polish. --- docs/source/_better_theme/layout.html | 95 +++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 docs/source/_better_theme/layout.html (limited to 'docs/source/_better_theme/layout.html') diff --git a/docs/source/_better_theme/layout.html b/docs/source/_better_theme/layout.html new file mode 100644 index 0000000..31c6675 --- /dev/null +++ b/docs/source/_better_theme/layout.html @@ -0,0 +1,95 @@ +{%- extends "basic/layout.html" %} +{%- from "relbar.html" import relbar_top with context %} +{%- from "relbar.html" import relbar_bottom with context %} + +{#- ### head ### -#} + +{%- block extrahead %} + + {#- make mobile reasonable #} + + + {%- for css_file in theme_cssfiles %} + {%- if css_file.startswith('http') %} + + {%- else %} + + {%- endif %} + {%- endfor %} + + {%- for js_file in theme_scriptfiles %} + + {%- endfor %} + + {%- if theme_inlinecss %} + + {%- endif %} + + {%- block userhead %} + {%- endblock %} +{%- endblock %} + +{#- ### content ### -#} + +{%- block header %} + {%- if theme_showheader|tobool %} + + {%- endif %} +{%- endblock %} + +{%- block relbar1 -%}{{ relbar_top() }}{%- endblock -%} +{%- block relbar2 -%}{{ relbar_bottom() }}{%- endblock -%} + +{%- block footer %} + + + {% if theme_ga_ua %} + + {% endif %} +{%- endblock %} -- cgit v1.2.3