Skip to content

Commit

Permalink
Provide a simple two thirds column layout
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldfallen committed Aug 14, 2017
1 parent 0fe0374 commit 7a8a42f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions templates/layouts/two_thirds.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{% extends "layouts/govuk_template.html" %}

{% block content -%}

{% block breadcrumbs %}{% endblock %}

<main id="content" role="main" tabindex="-1">
<div class="grid-row">
<div class="column-two-thirds">
{% block two_thirds -%}{%- endblock %}
</div>
<div class="column-one-thirds">
{% block one_third -%}{%- endblock %}
</div>
</div>
</main>

{%- endblock %}

0 comments on commit 7a8a42f

Please sign in to comment.