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