Skip to content
Snippets Groups Projects
Select Git revision
  • c5ac41cbefa1371b0261de22f379ef06e9a84e5a
  • test default
  • main protected
3 results

Makefile

Blame
  • home_page.html 389 B
    {% extends "styleguide2/base.html" %}
    {% load wagtailcore_tags %}
    
    {% block content %}
    
    {% include 'styleguide2/includes/organisms/layout/navbar.html' with is_transparent=True %}
    
    <main role="main">
      {% for block in page.content %}
        {% include_block block %}
      {% endfor %}
    
      {% include "styleguide2/includes/organisms/main_section/newsletter_section.html" %}
    </main>
    
    {% endblock %}