sat-sw-website/layouts/index.html

40 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 -->
2023-12-09 01:09:58 +01:00
<div class="container">
<h1 class="display-6">
{{ .Content }}
2023-12-09 01:09:58 +01:00
</h1>
</div>
2023-12-08 20:03:46 +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">
<div class="col d-flex flex-column justify-content-center">
<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>
</div>
<div class="col d-flex flex-column justify-content-center">
<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>
</div>
</div>
2023-12-09 01:09:58 +01:00
</div>
</div>
2023-12-09 01:09:58 +01:00
<div>
<!-- TODO: Somehow display the site summary as flexboxes? -->
{{ range first 10 .Site.RegularPages }} {{ .Render "summary" }} {{ end }}
</div>
</main>
2023-12-08 17:53:31 +01:00
{{ end }}