tried to move everything to front matter
This commit is contained in:
parent
8d8f650218
commit
bdbb59e06d
@ -20,6 +20,7 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Not used anymore, not flexible enough..
|
||||||
.content-button {
|
.content-button {
|
||||||
display: button;
|
display: button;
|
||||||
background-color: #004191;
|
background-color: #004191;
|
||||||
@ -45,3 +46,15 @@ body {
|
|||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fsfw-img {
|
||||||
|
max-width: 50%;
|
||||||
|
height: auto;
|
||||||
|
margin-bottom: 1.0rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.satrs-img {
|
||||||
|
max-width: 20%;
|
||||||
|
height: auto;
|
||||||
|
margin-bottom: 1.0rem;
|
||||||
|
}
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
title = 'FSFW'
|
title = 'FSFW'
|
||||||
date = 2023-01-01T08:00:00-07:00
|
date = 2023-01-01T08:00:00-07:00
|
||||||
draft = false
|
draft = false
|
||||||
|
tags = ["fsfw", "framework", "on-board-software", "cpp"]
|
||||||
|
homeSummary = """The Flight Software Framework, a C/C++ framework to develop On-Board Software for
|
||||||
|
remote systems like satellites and rovers."""
|
||||||
|
homeLogo = "FSFW_Logo_V3_bw.png"
|
||||||
|
homeLogoCss = "fsfw-img"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
<div class="container text-center">
|
<div class="container text-center">
|
||||||
|
@ -2,6 +2,11 @@
|
|||||||
title = 'sat-rs'
|
title = 'sat-rs'
|
||||||
date = 2023-01-01T08:00:00-07:00
|
date = 2023-01-01T08:00:00-07:00
|
||||||
draft = false
|
draft = false
|
||||||
|
tags = ["framework", "on-board-software", "rust", "sat-rs"]
|
||||||
|
homeSummary = """A Rust framework to develop On-Board Software for remote systems
|
||||||
|
like satellites and rovers."""
|
||||||
|
homeLogo = "sat-rs_logo.png"
|
||||||
|
homeLogoCss = "satrs-img"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
<div class="container text-center">
|
<div class="container text-center">
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
+++
|
+++
|
||||||
title = 'spacepackets'
|
title = 'spacepackets'
|
||||||
date = 2023-01-01T08:00:00-07:00
|
date = 2023-01-01T08:00:00-07:00
|
||||||
|
tags = ["spacepackets", "ccsds", "ecss", "python"]
|
||||||
|
homeSummary = "A collection of CCSDS and ECSS packet standard implementations."
|
||||||
|
homeSummaryHeader = "<h2>spacepackets</h2>"
|
||||||
draft = false
|
draft = false
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -13,13 +13,24 @@
|
|||||||
href="projects/fsfw"
|
href="projects/fsfw"
|
||||||
class="col d-flex flex-column justify-content-center text-decoration-none"
|
class="col d-flex flex-column justify-content-center text-decoration-none"
|
||||||
>
|
>
|
||||||
<span
|
<div
|
||||||
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 px-2 py-3 border"
|
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 px-2 py-3 h-100 border"
|
||||||
>
|
>
|
||||||
<h2 class="display-6">FSFW</h2>
|
<span>
|
||||||
A C/C++ framework to develop On-Board Software for remote systems
|
{{ with site.GetPage "projects/fsfw" }}
|
||||||
like satellites and rovers.
|
{{ with .Params }}
|
||||||
|
{{ if (and .homeLogo .homeLogoCss) }}
|
||||||
|
<img
|
||||||
|
src="/projects/fsfw/{{ .homeLogo }}"
|
||||||
|
class={{ .homeLogoCss }}
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ .Params.homeSummary }}
|
||||||
|
{{ end }}
|
||||||
</span>
|
</span>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a
|
<a
|
||||||
@ -29,9 +40,23 @@
|
|||||||
<div
|
<div
|
||||||
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 py-3 px-2 h-100 border"
|
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 py-3 px-2 h-100 border"
|
||||||
>
|
>
|
||||||
<h2 class="display-6">sat-rs</h2>
|
<span>
|
||||||
A Rust framework to develop On-Board Software for remote systems
|
{{ with site.GetPage "projects/sat-rs" }}
|
||||||
like satellites and rovers.
|
{{ with .Params }}
|
||||||
|
{{ if (and .homeLogo .homeLogoCss) }}
|
||||||
|
<img
|
||||||
|
src="/projects/sat-rs/{{ .homeLogo }}"
|
||||||
|
class={{ .homeLogoCss }}
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
<br />
|
||||||
|
{{ with site.GetPage "projects/sat-rs" }}
|
||||||
|
{{ .Params.homeSummary }}
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
@ -42,8 +67,22 @@
|
|||||||
<div
|
<div
|
||||||
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 py-3 px-2 h-100 border"
|
class="bg-body-tertiary rounded d-flex flex-column flex-wrap justify-content-center my-2 py-3 px-2 h-100 border"
|
||||||
>
|
>
|
||||||
<h2 class="display-6">spacepackets</h2>
|
{{ with site.GetPage "projects/spacepackets" }}
|
||||||
A collection of CCSDS and ECSS packet standard implementations.
|
{{ with .Params }}
|
||||||
|
{{ if (and .homeLogo .homeLogoCss) }}
|
||||||
|
<img
|
||||||
|
src="/projects/sat-rs/{{ .homeLogo }}"
|
||||||
|
class={{ .homeLogoCss }}
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
{{ else if .homeSummaryHeader }}
|
||||||
|
{{ .homeSummaryHeader | safeHTML }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ with site.GetPage "projects/spacepackets" }}
|
||||||
|
{{ .Params.homeSummary }}
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user