-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide a simple two thirds column layout
- Loading branch information
1 parent
0fe0374
commit 7a8a42f
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 %} |