generated from ministryofjustice/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (68 loc) · 4.04 KB
/
index.html
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
{# This page was built as a prototype #}
{% extends "base.html" %}
{%- from 'govuk_frontend_jinja/components/button/macro.html' import govukButton -%}
{%- from 'categories/components/list-item.html' import list_item, list_item_small, list_item_arrow -%}
{% block content %}
{{ super() }}
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
<h1 class="govuk-heading-xl govuk-!-margin-bottom-4">Find problems covered by legal aid</h1>
<p class="govuk-body-l">Choose the problem you need help with.</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-4">Most searched problems</h2>
<br>
<div class="govuk-grid-column-full govuk-!-padding-left-0">
{{ list_item_arrow("Children, families and relationships",
"Includes children and social services, children in care. Also, help with children and finances if you divorce or split up.",
url_for("categories.family.landing")) }}
{{ list_item_arrow("Discrimination",
"Treated unfairly because of things like your disability or health condition, race, age, sex, religion or pregnancy.",
url_for("categories.discrimination.where")) }}
</div>
<div class="govuk-grid-column-full govuk-!-padding-left-0">
{{ list_item_arrow("Housing, homelessness, losing your home",
"Includes being evicted or forced to sell your home. Problems with landlords, repairs, neighbours or council housing.",
url_for("categories.housing.landing")) }}
{{ list_item_arrow("Asylum and immigration",
"Help if you’re seeking asylum. Help to stay in the UK if you experienced domestic abuse.",
url_for("categories.asylum_immigration.landing")) }}
</div>
<div class="govuk-grid-column-full govuk-!-padding-left-0">
{{ list_item_arrow("Domestic abuse",
"Includes controlling behaviour, emotional abuse, or if someone is harassing, threatening or hurting you or a child. This could be by a partner, ex-partner, or family member.",
url_for("categories.domestic_abuse.landing")) }}
{{ list_item_arrow("Special educational needs and disability (SEND)",
"Help if your child has SEND.",
url_for("categories.send.landing")) }}
</div>
<br>
</div>
<div class="govuk-grid-column-two-thirds">
<br>
<h3 class="govuk-heading-m">Other problems covered by legal aid</h3>
<br>
{{ list_item_small("Benefits",
"Appeal a decision about your benefits",
url_for("categories.benefits.appeal")) }}
{{ list_item_small("Legal action against public organisations",
"Includes schools, the police, government, prisons, NHS, the council.",
url_for("categories.index")) }}
{{ list_item_small("Care for old age, health issues or disability",
"Problems with social care. Neglect and bad-quality care. This includes getting care from the council or local authority, paying for care, care homes and other residential homes.",
url_for("categories.community_care.landing")) }}
{{ list_item_small("Mental capacity, mental health",
"Help if someone cannot make decisions about their health, day-to-day life or care. Help at mental health tribunals.",
url_for("categories.mental_capacity.landing")) }}
{{ list_item_small("Harassment and stalking",
"Get legal advice or go to court to stop someone harassing you.",
url_for("categories.index")) }}
<br>
<br>
{{ govukButton({
'text': "More problems covered by legal aid",
'href': url_for('categories.more_problems'),
'classes': "govuk-button--secondary"
}) }}
</div>
</div>
</div>
{% endblock %}