2023-12-08 17:53:31 +01:00
|
|
|
|
|
|
|
{{ define "main" }}
|
|
|
|
<main aria-role="main">
|
|
|
|
<div class="homepage-content">
|
|
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
2023-12-08 18:35:32 +01:00
|
|
|
<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.
|
|
|
|
</h2>
|
|
|
|
</div>
|
2023-12-08 17:53:31 +01:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<!-- TODO: Somehow display the site summary as flexboxes? -->
|
|
|
|
{{ range first 10 .Site.RegularPages }}
|
|
|
|
{{ .Render "summary" }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|