We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4aa669 commit 749e2d1Copy full SHA for 749e2d1
application/templates/pages/guidance/keep-your-data-up-to-date.html
@@ -1 +1,22 @@
1
+{%- do pageData.update({
2
+ 'pageTitle': 'Keep your data up to date'
3
+}) %}
4
+{% set templateName = 'dl-info/guidance/keep-your-data-up-to-date.html' %}
5
+{% extends "layouts/layout--guidance.html" %}
6
+{%- from "components/back-button/macro.jinja" import dlBackButton %}
7
8
+{% block breadcrumbs%}
9
+ {{ dlBackButton({
10
+ "parentHref": '/guidance/'
11
+ })}}
12
+{% endblock %}
13
+
14
+{% block content_primary %}
15
16
+ {% set markdown_content %}
17
+ {%- include pageData.root_url + "keep-your-data-up-to-date.md" with context -%}
18
+ {% endset %}
19
20
+ {{ markdown_content | render_markdown(govAttributes=True) }}
21
22
0 commit comments