-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.j2
113 lines (95 loc) · 4.34 KB
/
index.html.j2
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Civil Service Network Directory</title>
<link href="unbranded.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="govuk-width-container">
<div class="govuk-phase-banner">
<p class="govuk-phase-banner__content">
<strong class="govuk-tag govuk-phase-banner__content__tag">
Feedback
</strong>
<span class="govuk-phase-banner__text">
This is a new service – your <a class="govuk-link" href="mailto:[email protected]?subject=CS Acronym Buster - Feedback">feedback</a> will help us to improve it.
</span>
</p>
</div>
<a href="https://toolsforcivilservants.co.uk" class="govuk-back-link">Tools for Civil Servants</a>
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h1 class="govuk-heading-l">Civil Service Network Directory
<span class="govuk-caption-l">One stop shop for finding CS networks and communities.</span></h1>
<p class="govuk-body">This site aims to share all the networks and communities in the Civil Service.</p>
<div class="govuk-inset-text">
Want to add your network or community? <a href="https://forms.gle/Z3n3r4F1VEaVbGU29" class="govuk-link">Add it here</a>!
</div>
</div>
<div class="govuk-grid-column-one-third">
<div class="govuk-inset-text">
Last Updated : {{ date.strftime('%d-%m-%Y') }}
</div>
</div>
</div>
<div class="govuk-grid-row">
<main class="govuk-main-wrapper " id="main-content" role="main">
<h2 class="govuk-heading-l">The Networks</h2>
<div>
{% for timestamp in networks -%}
{% if timestamp["What is name of your network, community or group?"] != "" %}
<div class="govuk-grid-column-one-third">
<h3 class="govuk-heading-m">{{ timestamp["What is name of your network, community or group?"] }}</h3>
<p>{{ timestamp["What is the purpose of your network, community or group?"] }}</p>
<p><b>Open to:</b> {{ timestamp["Who is able to join?"] }}</P>
{% if timestamp["Website"] != "" %}
<a href="{{ timestamp["Website"] }}" class="govuk-button govuk-button--secondary">
Web Link
</a>
{% endif %}
{% if timestamp["Network Email Address"] != "" %}
<a href="mailto:{{ timestamp["Network Email Address"] }}?subject={{ timestamp["What is name of your network, community or group?"] }} - Enquiry" class="govuk-button govuk-button--secondary">
Email
</a>
{% endif %}
</div>
{% endif %}
{% endfor %}
</div>
</main>
</div>
<footer class="govuk-footer " role="contentinfo">
<div class="govuk-width-container ">
<div class="govuk-footer__meta">
<div class="govuk-footer__meta-item govuk-footer__meta-item--grow">
<h2 class="govuk-visually-hidden">Social links</h2>
<ul class="govuk-footer__inline-list">
<li class="govuk-footer__inline-list-item">
Built by Samuel Hoskin. Find me on:
</li>
<li class="govuk-footer__inline-list-item">
<a class="govuk-footer__link" href="https://github.com/Samuel-Hoskin/CS-Networks/">
GitHub
</a>
</li>
<li class="govuk-footer__inline-list-item">
<a class="govuk-footer__link" href="https://www.linkedin.com/in/samuel-hoskin/">
LinkedIn
</a>
</li>
<li class="govuk-footer__inline-list-item">
<a class="govuk-footer__link" href="https://twitter.com/Samuel_Hoskin">
Twitter
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>