diff --git a/content/blog/debugging-lessons/index.md b/content/blog/debugging-lessons/index.md index ad7e8a9..002ce33 100644 --- a/content/blog/debugging-lessons/index.md +++ b/content/blog/debugging-lessons/index.md @@ -2,7 +2,7 @@ title = "Lessons from my marathon Rust debugging session" description = "A methodical approach to squashing bugs for good" date = 2022-08-02 -author = "Alice I. Cecile" +authors = ["Alice I. Cecile"] [taxonomies] tags = ["bevy", "rust", "development philosophy"] diff --git a/content/blog/ecs-gui-framework/index.md b/content/blog/ecs-gui-framework/index.md index 989f576..21b1469 100644 --- a/content/blog/ecs-gui-framework/index.md +++ b/content/blog/ecs-gui-framework/index.md @@ -2,7 +2,7 @@ title = "So you want to build an ECS-backed GUI framework" description = "Challenges and opportunities in the future of `bevy_ui`" date = 2023-11-27 -author = "Alice I. Cecile, Rose Peck" +authors = ["Alice I. Cecile, Rose Peck"] [taxonomies] tags = ["bevy", "ecs", "ui"] diff --git a/content/blog/game-engine-glue/index.md b/content/blog/game-engine-glue/index.md index 8ffcb64..9c924ed 100644 --- a/content/blog/game-engine-glue/index.md +++ b/content/blog/game-engine-glue/index.md @@ -2,7 +2,7 @@ title = "Game engines are more than libraries glued together" description = "The value of vision and the cost of external dependencies" date = 2022-07-22 -author = "Alice I. Cecile" +authors = ["Alice I. Cecile"] [taxonomies] tags = ["bevy", "open source", "development philosophy"] diff --git a/content/blog/skeptics-guide-to-machine-learning/index.md b/content/blog/skeptics-guide-to-machine-learning/index.md index 6bdf4d0..c96bea0 100644 --- a/content/blog/skeptics-guide-to-machine-learning/index.md +++ b/content/blog/skeptics-guide-to-machine-learning/index.md @@ -2,7 +2,7 @@ title = "A skeptic's guide to AI-powered products" description = "Delivering value in the face of hype" date = 2023-10-03 -author = "Alice I. Cecile" +authors = ["Alice I. Cecile"] [taxonomies] tags = ["machine learning", "game design", "business"] diff --git a/content/blog/triage-by-controversy/index.md b/content/blog/triage-by-controversy/index.md index df31d0f..25fcef7 100644 --- a/content/blog/triage-by-controversy/index.md +++ b/content/blog/triage-by-controversy/index.md @@ -2,7 +2,7 @@ title = "Triage-by-controversy and community review" description = "Making good use of open source enthusiasm" date = 2023-09-09 -author = "Alice I. Cecile" +authors = ["Alice I. Cecile"] [taxonomies] tags = ["bevy", "open source", "development philosophy"] diff --git a/content/blog/tyranny-of-nits/index.md b/content/blog/tyranny-of-nits/index.md index 5688010..9da6ac6 100644 --- a/content/blog/tyranny-of-nits/index.md +++ b/content/blog/tyranny-of-nits/index.md @@ -2,7 +2,7 @@ title = "The Tyranny of Nits" description = "How open source work sputters and dies" date = 2023-09-29 -author = "Alice I. Cecile, Rose Peck" +authors = ["Alice I. Cecile, Rose Peck"] [taxonomies] tags = ["open source", "development philosophy"] diff --git a/sass/_header.scss b/sass/_header.scss index 1e2279b..7f88416 100644 --- a/sass/_header.scss +++ b/sass/_header.scss @@ -5,6 +5,7 @@ header { padding-bottom: 15px; padding-left: 0px; padding-right: 30px; + margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; diff --git a/sass/_text.scss b/sass/_text.scss index 73366f6..b2338b2 100644 --- a/sass/_text.scss +++ b/sass/_text.scss @@ -21,12 +21,20 @@ h1, // Controls subtitles shown on blog posts .subtitle-text { font-family: "Raleway", sans-serif; + font-weight: bold; font-style: italic; font-size: 20px; color: var( --text-on-secondary-color); margin-top: 0; } +.author-text { + font-family: "Raleway", sans-serif; + font-size: 20px; + color: var( --text-on-secondary-color); + margin-bottom: 3.0rem; +} + h2 { font-size: 1.75rem; font-weight: 800; diff --git a/templates/page.html b/templates/page.html index 1222f66..21a5c07 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,3 @@ -{% import "_macros.html" as macros %} {% extends "index.html" %} {% block title %}{{ page.title }} | {{ super() }} {% endblock title %} @@ -8,6 +7,10 @@

{{ page.title | safe }}

{{ page.description | safe }}

+{% for author in page.authors %} +

{{ author | safe }}   |   {{page.date}}

+{% endfor %} +
{{ page.content | safe }}