-
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.
Merge pull request #246 from digital-land/guidance-restructure
Guidance for publishers restructure - splitting intro page and making updates
- Loading branch information
Showing
19 changed files
with
221 additions
and
266 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
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
101 changes: 0 additions & 101 deletions
101
application/templates/pages/guidance/how-to-provide-data.md
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
3 changes: 3 additions & 0 deletions
3
application/templates/pages/guidance/keep-your-data-up-to-date.md
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,3 @@ | ||
Whenever the data changes, update it in the data URL. | ||
|
||
Every day we collect the data from the URL you have shared. |
22 changes: 22 additions & 0 deletions
22
application/templates/pages/guidance/publish-data-on-your-website.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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{%- do pageData.update({ | ||
'pageTitle': 'Publish data on your website' | ||
}) %} | ||
{% set templateName = 'dl-info/guidance/publish-data-on-your-website.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 + "publish-data-on-your-website.md" with context -%} | ||
{% endset %} | ||
|
||
{{ markdown_content | render_markdown(govAttributes=True) }} | ||
|
||
{% endblock %} |
Oops, something went wrong.