-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 872 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
---
<div class="container-fluid shadow bg-white px-4 py-5 mb-4 text-center">
<div class="rounded-4 shadow-lg d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">
<i class="bi bi-code-slash display-1 px-3 py-2"></i>
</div>
<h1 class="display-5 fw-bold">{{ site.title }}</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Digital services designed and developed by <a href="https://matthew-shaw.github.io/" target="_blank" rel="noopener">Matthew Shaw</a>.<br>Focused on public services, open data, transparency, civil & social good.</p>
</div>
</div>
<div class="container">
<h2>Projects</h2>
<div class="row row-cols-1 row-cols-md-3 g-4">
{% for project in site.data.projects %}
<div class="col">
{% include project.html %}
</div>
{% endfor %}
</div>
</div>