-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·117 lines (75 loc) · 4.5 KB
/
index.html
File metadata and controls
executable file
·117 lines (75 loc) · 4.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!-- Use this page as the index for your project -->
<!-- ADDING CUSTOM CSS - Add your custom CSS or Sass in /app/assets/sass/main.scss -->
<!-- Extends the layout from /app/views/layout.html -->
{% extends 'layout-hero-index.html' %}
<!--
In /app/views/layout.html you can:
- change the header and footer
- add custom CSS and JavaScript
-->
<!--
Use this to set the page name which will appear at the
start of the <title> tag, followed by the service name.
This is often not needed on the homepage, where only the
service name is needed. You can also reuse this variable
within the <h1>, where they are the same.
-->
{% set pageName = "Home" %}
<!-- For adding a breadcrumb or back link -->
<!-- Code examples can be found at https://service-manual.nhs.uk/design-system/components/breadcrumbs and https://service-manual.nhs.uk/design-system/components/back-link -->
{% block beforeContent %}
{% endblock %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<span class="nhsuk-hint">All prototypes for</span>
<h1 class="nhsuk-heading-l">
Search for medical evaluations - Alpha
</h1>
<h2 class="nhsuk-heading-m">Procurement team journey - current (v4)</h2>
<ul class="nhsuk-list">
<li><a href="current/homepage">Homepage</a></li>
<li><a href="current/sign-up-trusts-1">Sign up</a></li>
<li><a href="current/sign-in-nhs">Sign in</a></li>
<li><a href="current/sign-in">Sign in non NHS</a></li>
<li><a href="current/dashboard">Dashboard</a></li>
<li><a href="current/quick-share-upload-multiple">Share evaluation</a></li>
<li><a href="current/upload-business-case">Share business case</a></li>
<li><a href="current/search">Search</a></li>
<li><a href="current/categories">Product categories a-z</a></li>
<li><a href="current/search-results">Search results keyword</a></li>
<li><a href="current/category-wound-care">Search results category</a></li>
<li><a href="current/product-page">Product page 1</a></li>
<li><a href="current/product-page-wound-care">Product page 2</a></li>
<li><a href="current/search-results-viz-all">Search results visualisation <span class="nhsuk-tag nhsuk-tag--grey nhsuk-u-margin-left-5">experimental</span></a></li>
<li><a href="current/search-results-viz-sub-cat">Search results subcategory visualisation <span class="nhsuk-tag nhsuk-tag--grey nhsuk-u-margin-left-5">experimental</span></a></li>
<li><a href="current/search-results-dashboard">Data Dashboard <span class="nhsuk-tag nhsuk-tag--grey nhsuk-u-margin-left-5">experimental</span></a></li>
<!---
<li><a href="current/evaluate-suppliers">Evaluate suppliers</a></li>
<li><a href="current/award-contract">Award contract to supplier</a></li>
<li><a href="current/emails/notify">Email notifications</a></li>-->
</ul>
<hr class="nhsuk-section-break nhsuk-section-break--visible nhsuk-section-break--l">
<h3 class="nhsuk-heading-s">Email notifications</h3>
<ul class="nhsuk-list">
<li><a href="current/create-account/email-verification">Procurement - verify email</a></li>
<li><a href="current/create-account/email-welcome">Procurement - new account</a></li>
</ul>
<h2 class="nhsuk-heading-m">Previous versions</h2>
<p><a href="./v1/homepage">Version 1</a></p>
<p><a href="./v2/homepage">Version 2</a></p>
<p><a href="./v3/homepage">Version 3</a></p>
</div>
<div class="nhsuk-grid-column-one-third">
<h3 class="nhsuk-heading-m">Resources</h3>
<ul class="nhsuk-list">
<li><a href="https://app.boords.com/s/mjw4v6/frame">User journey - story board</a></li>
<li><a href="design-histories/design-histories">Design histories</a></li>
<li><a href="https://app.mural.co/t/gds5143/m/gds5143/1695116804329/f3d10edb4da71eac6b4c253abceab9264e38d87e?sender=u3cb128dcb686f0a84d584339">Alpha feedback board</a></li>
<li><a href="https://www.figma.com/board/19dSAlQYjIjBbuUQhtFbH4/DHSC---UX-Flows?node-id=0-1&t=klqgxPv7a8rOV3P6-1">Figma - User flows </a></li>
<li><a href="https://app.mural.co/t/compassalpha3100/m/compassalpha3100/1762347536715/a2fcd761427f62dc1a01ab26b927e154252195b4">Service user journeys - to be</a></li>
<li><a href="https://app.mural.co/t/compassalpha3100/m/compassalpha3100/1762947455097/20c3452b9e50dc2c481a19d74a20e2d8fda237b0">User research findings and analysis</a></li>
</ul>
</div>
</div>
{% endblock %}