added a feed for devlogs & news

This commit is contained in:
Ell 2023-06-04 19:06:57 +02:00
parent 6cd5e2d43f
commit ec54e798fb
5 changed files with 15 additions and 2 deletions

View file

@ -7,3 +7,4 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem "jekyll"
gem "webrick"
gem "jekyll-postfiles"
gem "jekyll-feed"

View file

@ -29,6 +29,8 @@ GEM
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-feed (0.17.0)
jekyll (>= 3.7, < 5.0)
jekyll-postfiles (3.1.0)
jekyll (>= 3.8.6, < 5)
jekyll-sass-converter (2.1.0)
@ -65,6 +67,7 @@ PLATFORMS
DEPENDENCIES
jekyll
jekyll-feed
jekyll-postfiles
webrick

View file

@ -8,6 +8,7 @@ defaults:
plugins:
- jekyll-postfiles
- jekyll-feed
# markdown formatting
kramdown:
@ -18,3 +19,11 @@ kramdown:
ndash: --
laquo: "<<"
raquo: ">>"
# atom feed
url: https://tinylifegame.com/devlogs
title: Tiny Life News and Devlogs
description: News and devlogs for Tiny Life, a fun simulation game where you mess with people's lives
author: Ellpeck Games
feed:
posts_limit: 10000

View file

@ -1,6 +1,6 @@
<div class="section">
<h1 id="devlogs">📢 News and Devlogs</h1>
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. Occasionally, we also post about the game's development or other news. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a> or subscribe to <a href="#subscribe">the mailing list</a>.</p>
<p>Along with every major update, we publish a devlog that features additional information as well as some screenshots. Occasionally, we also post about the game's development or other news. You can read them on itch or on Steam. You can also read <a href="https://docs.tinylifegame.com/Changelog">the full changelog</a> or subscribe to <a href="#subscribe">the mailing list</a> or <a href="/feed.xml">the Atom feed</a>.</p>
<div class="devlogs">
{% for post in site.posts %}

View file

@ -15,7 +15,7 @@ nav: blognav.html
<div class="section blog-section">
<h1>{{ page.title }}</h1>
<p>📖 You can also read this post <a href="{{ page.itch }}">on itch</a> or <a href="{{ page.steam }}">on Steam</a>, or you can subscribe to <a href="../../#subscribe">the mailing list</a>.</p>
<p>📖 You can also read this post <a href="{{ page.itch }}">on itch</a> or <a href="{{ page.steam }}">on Steam</a>, or you can subscribe to <a href="../../#subscribe">the mailing list</a> or <a href="/feed.xml">the Atom feed</a>.</p>
{% include anchor_headings.html html=content anchorBody="#" anchorClass="anchor-heading" %}
</div>