add average read times
This commit is contained in:
parent
e23647bb5e
commit
7619d0d4d0
7 changed files with 15 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
title = "45 Day Roguelike Postmortem"
|
title = "45 Day Roguelike Postmortem"
|
||||||
created_date = "2022-04-22"
|
created_date = "2022-04-22"
|
||||||
tags = ["programming", "game"]
|
tags = ["programming", "game"]
|
||||||
|
read_time = "5 minutes"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
title = "A Roxy Update"
|
title = "A Roxy Update"
|
||||||
created_date = "2024-02-14"
|
created_date = "2024-02-14"
|
||||||
tags = ["programming", "roxy", "web"]
|
tags = ["programming", "roxy", "web"]
|
||||||
|
read_time = "2 minutes"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
title = "Convenient Unity Attributes"
|
title = "Convenient Unity Attributes"
|
||||||
created_date = "2021-12-09"
|
created_date = "2021-12-09"
|
||||||
tags = ["programming", "game", "unity"]
|
tags = ["programming", "game", "unity"]
|
||||||
|
read_time = "5 minutes"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
title = "Making a Static Site Generator (and a New Site)"
|
title = "Making a Static Site Generator (and a New Site)"
|
||||||
created_date = "2023-08-15"
|
created_date = "2023-08-15"
|
||||||
tags = ["roxy", "programming", "web"]
|
tags = ["roxy", "programming", "web"]
|
||||||
|
read_time = "4 minutes"
|
||||||
|
|
|
@ -2,4 +2,5 @@ title = "On ECS"
|
||||||
#created_date = "2024-11-30"
|
#created_date = "2024-11-30"
|
||||||
description = "How ECS changed the way I makes games"
|
description = "How ECS changed the way I makes games"
|
||||||
tags = ["game-dev"]
|
tags = ["game-dev"]
|
||||||
|
read_time = "15 to 20 minutes"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
title = "Simplifying Code with Components"
|
title = "Simplifying Code with Components"
|
||||||
created_date = "2021-12-05"
|
created_date = "2021-12-05"
|
||||||
tags = ["unity", "game", "programming"]
|
tags = ["unity", "game", "programming"]
|
||||||
|
read_time = "5 minutes"
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,15 @@
|
||||||
Draft
|
Draft
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</small>
|
</small>
|
||||||
|
{% if this.read_time %}
|
||||||
|
<div>
|
||||||
|
<small class="muted">
|
||||||
|
<span>
|
||||||
|
{{ this.read_time }} read time
|
||||||
|
</span>
|
||||||
|
</small>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
</header>
|
</header>
|
||||||
{% block article %}
|
{% block article %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue