diff --git a/assets/sass/user_styles.scss b/assets/sass/user_styles.scss index 01787b3..12b35e4 100644 --- a/assets/sass/user_styles.scss +++ b/assets/sass/user_styles.scss @@ -56,4 +56,5 @@ body { .satrs-img { max-width: 20%; height: auto; + margin-bottom: 1.0rem; } diff --git a/content/projects/fsfw/index.html b/content/projects/fsfw/index.html index ff72921..5709401 100644 --- a/content/projects/fsfw/index.html +++ b/content/projects/fsfw/index.html @@ -3,10 +3,12 @@ title = 'FSFW' date = 2023-01-01T08:00:00-07:00 draft = false tags = ["fsfw", "framework", "on-board-software", "cpp"] -homeSummary = """The Flight Software Framework, a C/C++ framework to develop On-Board Software for +summary = """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" +[[resources]] + name = "logo" + src = 'FSFW_Logo_V3_bw.png' +++
diff --git a/content/projects/sat-rs/index.html b/content/projects/sat-rs/index.html index 5c4950e..f67a29a 100644 --- a/content/projects/sat-rs/index.html +++ b/content/projects/sat-rs/index.html @@ -3,10 +3,12 @@ title = 'sat-rs' date = 2023-01-01T08:00:00-07:00 draft = false tags = ["framework", "on-board-software", "rust", "sat-rs"] -homeSummary = """A Rust framework to develop On-Board Software for remote systems +summary = """A Rust framework to develop On-Board Software for remote systems like satellites and rovers.""" -homeLogo = "sat-rs_logo.png" homeLogoCss = "satrs-img" +[[resources]] + name = "logo" + src = "sat-rs_logo.png" +++
diff --git a/content/projects/spacepackets/index.html b/content/projects/spacepackets/index.html index 5f44d37..9eb732d 100644 --- a/content/projects/spacepackets/index.html +++ b/content/projects/spacepackets/index.html @@ -2,8 +2,8 @@ title = 'spacepackets' date = 2023-01-01T08:00:00-07:00 tags = ["spacepackets", "ccsds", "ecss", "python"] -homeSummary = "A collection of CCSDS and ECSS packet standard implementations." -homeSummaryHeader = "

spacepackets

" +summary = "A collection of CCSDS and ECSS packet standard implementations." +homeSummaryHeader = "spacepackets" draft = false +++ diff --git a/layouts/index.html b/layouts/index.html index 6c884bf..e9c5caf 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -4,85 +4,34 @@

{{ .Content }}

-
{{ end }} diff --git a/themes/minimal-theme/layouts/_default/list.html b/themes/minimal-theme/layouts/_default/list.html index 50fc92d..eda337f 100644 --- a/themes/minimal-theme/layouts/_default/list.html +++ b/themes/minimal-theme/layouts/_default/list.html @@ -1,8 +1,10 @@ {{ define "main" }} +

{{ .Title }}

- {{ .Content }} - {{ range .Pages }} -

{{ .LinkTitle }}

- {{ .Summary }} - {{ end }} + {{ .Content }} + {{ range .Pages }} +

{{ .LinkTitle }}

+ {{ .Summary }} + {{ end }} +
{{ end }}