sat-sw-website/layouts/index.html

39 lines
1.3 KiB
HTML

{{ define "main" }}
<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">
<h1 class="display-6">
This is a collection of open-source software projects maintained by the
satellite division of the Institute of Space Systems at the University of
Stuttgart.
</h1>
<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>
</div>
</div>
</div>
</div>
</div>
{{ .Content }}
<div>
<!-- TODO: Somehow display the site summary as flexboxes? -->
{{ range first 10 .Site.RegularPages }} {{ .Render "summary" }} {{ end }}
</div>
</main>
{{ end }}