-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update keep-your-data-up-to-date.html
- Loading branch information
1 parent
d4aa669
commit 749e2d1
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
application/templates/pages/guidance/keep-your-data-up-to-date.html
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 |
---|---|---|
@@ -1 +1,22 @@ | ||
{%- do pageData.update({ | ||
'pageTitle': 'Keep your data up to date' | ||
}) %} | ||
{% set templateName = 'dl-info/guidance/keep-your-data-up-to-date.html' %} | ||
{% extends "layouts/layout--guidance.html" %} | ||
{%- from "components/back-button/macro.jinja" import dlBackButton %} | ||
|
||
{% block breadcrumbs%} | ||
{{ dlBackButton({ | ||
"parentHref": '/guidance/' | ||
})}} | ||
{% endblock %} | ||
|
||
{% block content_primary %} | ||
|
||
{% set markdown_content %} | ||
{%- include pageData.root_url + "keep-your-data-up-to-date.md" with context -%} | ||
{% endset %} | ||
|
||
{{ markdown_content | render_markdown(govAttributes=True) }} | ||
|
||
{% endblock %} |