Skip to content

Commit

Permalink
Fix author display
Browse files Browse the repository at this point in the history
  • Loading branch information
sixfold-origami committed Nov 29, 2023
1 parent 221a7d5 commit 3055a97
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/blog/debugging-lessons/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion content/blog/ecs-gui-framework/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion content/blog/game-engine-glue/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion content/blog/skeptics-guide-to-machine-learning/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion content/blog/triage-by-controversy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion content/blog/tyranny-of-nits/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
1 change: 1 addition & 0 deletions sass/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 8 additions & 0 deletions sass/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 4 additions & 1 deletion templates/page.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{% import "_macros.html" as macros %}
{% extends "index.html" %}

{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
Expand All @@ -8,6 +7,10 @@
<h1 class="title-text">{{ page.title | safe }}</h1>
<p class="subtitle-text">{{ page.description | safe }}</p>

{% for author in page.authors %}
<p class="author-text">{{ author | safe }}&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;{{page.date}}</p>
{% endfor %}

<div>{{ page.content | safe }}</div>

<p class="call-to-action">
Expand Down

0 comments on commit 3055a97

Please sign in to comment.