-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR implements the Publishing journey start page. It relocates the upload page to form part of this user journey. Additionally changes were made to move the 'Beta banner' to the top partial.
- Loading branch information
Showing
9 changed files
with
92 additions
and
69 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
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 |
---|---|---|
@@ -1,24 +1,14 @@ | ||
<%- include("partials/top"); %> | ||
|
||
<div class="govuk-width-container app-width-container"> | ||
<div class="govuk-phase-banner"> | ||
<p class="govuk-phase-banner__content"> | ||
<strong class="govuk-tag govuk-phase-banner__content__tag"> | ||
<%= t('beta') %> | ||
</strong> | ||
<span class="govuk-phase-banner__text"> | ||
<%= t('feedback') %> | ||
</span> | ||
</p> | ||
</div> | ||
<!-- <a href="#" class="govuk-back-link">Back</a> --> | ||
<main class="govuk-main-wrapper" id="main-content" role="main"> | ||
<h1 class="govuk-heading-xl"><%= t('homepage.title') %></h1> | ||
<div class="govuk-width-container app-width-container"> | ||
<!-- <a href="#" class="govuk-back-link">Back</a> --> | ||
<main class="govuk-main-wrapper" id="main-content" role="main"> | ||
<h1 class="govuk-heading-xl"><%= t('homepage.title') %></h1> | ||
|
||
<p class="govuk-body"><%= t('homepage.welcome') %></p> | ||
|
||
<p class="govuk-body"><%= t('homepage.welcome') %></p> | ||
|
||
<p class="govuk-body"><%= t('homepage.apitext') %> <a href="/api"><code>/api</code></a></p> | ||
</main> | ||
</div> | ||
|
||
<p class="govuk-body"><%= t('homepage.apitext') %> <a href="/api"><code>/api</code></a></p> | ||
</main> | ||
</div> | ||
|
||
<%- include("partials/bottom"); %> |
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,20 @@ | ||
<%- include("../partials/top"); %> | ||
|
||
<div class="govuk-width-container app-width-container"> | ||
<!-- <a href="#" class="govuk-back-link">Back</a> --> | ||
<main class="govuk-main-wrapper" id="main-content" role="main"> | ||
<h1 class="govuk-heading-xl"><%= t('publish.start.title') %></h1> | ||
<p class="govuk-body"><%= t('publish.start.p1') %></p> | ||
<ul class="govuk-list govuk-list--bullet govuk-list--spaced"> | ||
<li><%= t('publish.start.data-table') %></li> | ||
<li><%= t('publish.start.lookup-table') %></li> | ||
<li><%= t('publish.start.metadata') %></li> | ||
</ul> | ||
<div class="govuk-button-group"> | ||
<a href="/<%= i18n.language %>/<%= t('routes.publish.start') %>/<%= t('routes.publish.upload') %>/" class="govuk-button"><%= t('buttons.continue') %></a> | ||
<a href="/<%= i18n.language %>/" class="govuk-link"><%= t('buttons.cancel') %></a> | ||
</div> | ||
</main> | ||
</div> | ||
|
||
<%- include("../partials/bottom"); %> |
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