Skip to content

Commit

Permalink
Merge pull request #156 from alphagov/43-create-a-base-page-for-the-apps
Browse files Browse the repository at this point in the history
43-create-a-base-page-for-the-apps
  • Loading branch information
benvand committed Oct 16, 2019
2 parents ab0066e + f3302a9 commit eff9c5c
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions app/templates/_base_page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% extends "toolkit/layouts/_base_page.html" %}

// Insert line for each component module import
2 changes: 1 addition & 1 deletion app/templates/briefs/_base_edit_question_page.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}
{% import "toolkit/forms/macros/forms.html" as forms %}

{% block page_title %}{{ question.question }} – Digital Marketplace{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion app/templates/briefs/application_submitted.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}Your response to ‘{{ brief.title }}’ - Digital Marketplace{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion app/templates/briefs/check_your_answers.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}Your response to ‘{{ brief.title }}’ - Digital Marketplace{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion app/templates/briefs/clarification_question.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}Ask a question about {{ brief.title }} – Digital Marketplace{% endblock %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}Not eligible for opportunity – Digital Marketplace{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion app/templates/briefs/question_and_answer_session.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}{{ brief.title }} question and answer session details – Digital Marketplace{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion app/templates/briefs/start_brief_response.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}

{% block page_title %}Apply for {{ brief.title }} – Digital Marketplace{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion app/templates/frameworks/opportunities_dashboard.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "toolkit/layouts/_base_page.html" %}
{% extends "_base_page.html" %}
{% import "toolkit/summary-table.html" as summary %}
{% block page_title %}Opportunities Overview - Digital Marketplace{% endblock %}

Expand Down

0 comments on commit eff9c5c

Please sign in to comment.