-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added page to overwrite service name
- Loading branch information
Showing
3 changed files
with
35 additions
and
1 deletion.
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
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
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,32 @@ | ||
|
||
{% extends 'layout.html' %} | ||
|
||
{% block pageTitle %} | ||
Change the service name on one page - NHS prototype kit | ||
{% endblock %} | ||
|
||
{% block beforeContent %} | ||
{% include "how-tos/includes/breadcrumb.html" %} | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div class="nhsuk-grid-row"> | ||
|
||
<div class="nhsuk-grid-column-two-thirds"> | ||
|
||
<h1> | ||
Change the service name on one page | ||
</h1> | ||
|
||
|
||
<p>You can set a different service name to the rest of your prototype on one page.</p> | ||
<p>Use this code:</p> | ||
<pre tabindex="0" class="app-pre"><code class="language-markup">{{'{% set serviceName %} | ||
Book a test | ||
{% endset%}' | escape }} | ||
</code></pre> | ||
|
||
</div> | ||
</div> | ||
|
||
{% endblock %} |