Back to components
Journey pages
Example
Council house repairs
Report a repair
HTML Snippet for Journey Liheaderst
<p class="pre-title">
Council house repairs
</p>
<h1 class="top">
Report a repair
</h1>
Journey List
Ordered list
An ordered list should be used when the order of the items should be in a specific order.
Example
HTML Snippet for ordered List
<aside class="part-navigation__container" role="complementary">
<nav class="part-navigation" role="navigation" aria-label="Pages in this guide">
<ol class="list">
<li>Report a repair</li>
<li><a href="#">Emergency repairs</a></li>
<li><a href="#">Your appointment</a></li>
</ol>
</nav>
</aside>
Unordered list
Unordered lists are used when the order of the items is not relevant.
Example
HTML Snippet for unordered list
<aside class="part-navigation__container" role="complementary">
<nav class="part-navigation" role="navigation" aria-label="Pages in this guide">
<ul class="list">
<li>Report a repair</li>
<li><a href="#">Emergency repairs</a></li>
<li><a href="#">Your appointment</a></li>
</ul>
</nav>
</aside>
Journey List - Split test
Ordered list
An ordered list should be used when the order of the items should be in a specific order.
Example
HTML Snippet for Journey List split test
<aside class="part-navigation__container" role="complementary">
<nav class="part-navigation part-navigation--a" role="navigation" aria-label="Pages in this guide">
<ol class="list">
<li>Report a repair</li>
<li><a href="#">Emergency repairs</a></li>
<li><a href="#">Your appointment</a></li>
</ol>
</nav>
</aside>
Unordered list
Unordered lists are used when the order of the items is not relevant.
Example
HTML Snippet for Journey List split test
<aside class="part-navigation__container" role="complementary">
<nav class="part-navigation part-navigation--a" role="navigation" aria-label="Pages in this guide">
<ul class="list">
<li>Report a repair</li>
<li><a href="#">Emergency repairs</a></li>
<li><a href="#">Your appointment</a></li>
</ul>
</nav>
</aside>
Next / Previous
Example