sat-sw-website/layouts/index.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2023-12-08 17:53:31 +01:00
{{ define "main" }}
2023-12-09 01:09:58 +01:00
<main aria-role="main">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
<div class="container">
2023-12-09 02:12:35 +01:00
<h1 class="display-6">{{ .Content }}</h1>
</div>
2023-12-08 20:03:46 +01:00
2023-12-09 02:12:35 +01:00
<!-- TODO: Find a way that the content of these boxes can be specified in front matter. -->
<div class="container">
2023-12-09 01:09:58 +01:00
<div class="container py-4 text-center overflow-hidden">
<div class="row row-cols-2">
2023-12-09 02:12:35 +01:00
<a
href="projects/fsfw"
class="col d-flex flex-column justify-content-center text-decoration-none"
>
2023-12-09 01:09:58 +01:00
<div
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2"
>
<h2 class="display-6 py-5 mx-2">
Flight Software Framework (FSFW)
</h2>
</div>
2023-12-09 02:12:35 +01:00
</a>
<a
href="projects/sat-rs"
class="col d-flex flex-column justify-content-center text-decoration-none"
>
2023-12-09 01:09:58 +01:00
<div
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 h-100"
>
<h2 class="display-6 py-5 mx-2">sat-rs</h2>
2023-12-08 20:03:46 +01:00
</div>
2023-12-09 02:12:35 +01:00
</a>
2023-12-08 20:03:46 +01:00
</div>
2023-12-09 01:09:58 +01:00
</div>
</div>
</main>
2023-12-08 17:53:31 +01:00
{{ end }}