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>
|
2023-12-09 02:01:11 +01:00
|
|
|
</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. -->
|
2023-12-09 02:01:11 +01:00
|
|
|
<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-10 19:29:43 +01:00
|
|
|
<span
|
2023-12-09 01:09:58 +01:00
|
|
|
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>
|
2023-12-10 19:29:43 +01:00
|
|
|
</span>
|
2023-12-09 02:12:35 +01:00
|
|
|
</a>
|
2023-12-09 18:37:16 +01:00
|
|
|
|
2023-12-09 02:12:35 +01:00
|
|
|
<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-09 18:37:16 +01:00
|
|
|
|
|
|
|
<a
|
|
|
|
href="projects/spacepackets"
|
|
|
|
class="col d-flex flex-column justify-content-center text-decoration-none"
|
|
|
|
>
|
|
|
|
<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">spacepackets</h2>
|
|
|
|
</div>
|
|
|
|
</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 }}
|