Skip to content

Commit b71e841

Browse files
committed
feat(blog): add overview page that lists all posts
1 parent 42bac9c commit b71e841

File tree

18 files changed

+89
-30
lines changed

18 files changed

+89
-30
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ This project is licensed under either of:
3131
With the exception of:
3232

3333
* The [Font Awesome](https://fontawesome.com) social icons, which are used under a [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/) license
34-
* The [OpenMoji](https://openmoji.org) icons used on the homepage, which are used under a [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license
34+
* The [OpenMoji](https://openmoji.org) icons used on the homepage, which are used under a [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license

config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ date_format = "%F"
1111

1212
[extra.home]
1313
max_posts = 3
14+
15+
[extra.posts]
1416
show_summaries = false
1517
max_summary_length = 250
1618

content/posts/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
2-
redirect_to = "/"
2+
title = "Posts"
33
insert_anchor_links = "right"
4+
template = "posts.html"
45
page_template = "post.html"
56
sort_by = "date"
6-
+++
7+
+++

content/posts/newsletter-001/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #1 - August 2019"
33
date = 2019-09-02
4+
transparent = true
45
aliases = ["/2019/09/02/newsletter-001", "2019/09/02/newsletter-001.html"]
56
+++
67

content/posts/newsletter-002/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #2 - September 2019"
33
date = 2019-10-05
4+
transparent = true
45
aliases = ["/2019/10/05/newsletter-002", "2019/10/05/newsletter-002.html"]
56
+++
67

content/posts/newsletter-003/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #3 - October 2019"
33
date = 2019-11-07
4+
transparent = true
45
aliases = ["/2019/11/027/newsletter-003", "2019/11/07/newsletter-003.html"]
56
+++
67

content/posts/newsletter-004/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #4 - November 2019"
33
date = 2019-12-08
4+
transparent = true
45
+++
56

67
<!-- markdownlint-disable no-trailing-punctuation -->

content/posts/newsletter-005/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #5 - December 2019"
33
date = 2020-01-10
4+
transparent = true
45
+++
56

67
Welcome to the fifth issue of the Rust GameDev Workgroup’s

content/posts/newsletter-006/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #6 - January 2020"
33
date = 2020-02-16
4+
transparent = true
45
+++
56

67
<!-- markdownlint-disable no-trailing-punctuation -->

content/posts/newsletter-007/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+++
22
title = "This Month in Rust GameDev #7 - February 2020"
33
date = 2020-03-05
4+
transparent = true
45
+++
56

67
<!-- markdownlint-disable no-trailing-punctuation -->

0 commit comments

Comments
 (0)