well that was insanely hard

This commit is contained in:
Robin Müller 2023-12-09 01:09:58 +01:00
parent be1bed9768
commit a6a2527153
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -1,49 +1,38 @@
{{ define "main" }} {{ define "main" }}
<main aria-role="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 -->
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md --> <div class="container">
<div class="container"> <h1 class="display-6">
<h1 class="display-6"> This is a collection of open-source software projects maintained by the
This is a collection of open-source software projects maintained by satellite division of the Institute of Space Systems at the University of
the satellite division of the Institute of Space Systems at the Stuttgart.
University of Stuttgart. </h1>
</h2>
<div class="container text-center"> <div class="container py-4 text-center overflow-hidden">
<div class="row"> <div class="row row-cols-2">
<div class="col-md-6"> <div class="col d-flex flex-column justify-content-center">
<div <div
class="bg-body-tertiary text-center overflow-hidden" class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2"
> >
<div class="d-flex flex-equal align-content-center justify-content-center"> <h2 class="display-6 py-5 mx-2">
<h2 class="display-6 py-5"> Flight Software Framework (FSFW)
Flight Software Framework (FSFW) </h2>
</h2> </div>
</div> </div>
</div> <div class="col d-flex flex-column justify-content-center">
</div> <div
<div class="col-md-6"> class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 h-100"
<div >
class="bg-body-tertiary text-center overflow-hidden" <h2 class="display-6 py-5 mx-2">sat-rs</h2>
>
<div class="d-flex flex-equal align-content-center justify-content-center">
<h2 class="display-6 py-3">
sat-rs
</h2>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>
{{ .Content }} </div>
<div> </div>
<!-- TODO: Somehow display the site summary as flexboxes? --> {{ .Content }}
{{ range first 10 .Site.RegularPages }} <div>
{{ .Render "summary" }} <!-- TODO: Somehow display the site summary as flexboxes? -->
{{ end }} {{ range first 10 .Site.RegularPages }} {{ .Render "summary" }} {{ end }}
</div> </div>
</main> </main>
{{ end }} {{ end }}