Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Theme (Layout)

Jonathan Tsang edited this page Sep 1, 2017 · 1 revision

Description

Available Sections

The following is a list of sections available to the page template:

Imports

The following is a list of imports found in the template:

Template Markup

{% comment %}
  This document defines the base html.
{% endcomment %}

<!DOCTYPE html>
<html>
  <head>
    {{ required_header_content }}
    {% include 'meta_tags' %}
    {% include 'theme_wide_css' %}
    {% include 'page_specific_css' %}
  </head>
  <body class="{{ page.page_identifier | kebab_filter }}">
    {% section 'page_header' %}
    {{ content_for_layout }}
    {% section 'footer' %}
    {% include 'theme_wide_footer_scripts' %}
    {% include 'site_wide_footer_scripts' %}
    {{ required_footer_content }}
  </body>
</html>
Clone this wiki locally