diff --git a/content/games/the-guild.md b/content/games/the-guild.md new file mode 100644 index 0000000..4444356 --- /dev/null +++ b/content/games/the-guild.md @@ -0,0 +1,13 @@ +--- +picture: the-guild.png +picture_alt: in-game screenshot of a cow-boy riding in wilderness +website: https://the-guild.frog-collective.org +--- + +### The Guild + +Saddle up, partner! Welcome to "Frontier Fortune: Prospector's Quest" where the +dusty trails of the Old West lead to riches beyond your wildest dreams. In this +thrilling adventure, you step into the boots of a rugged prospector, venturing +into uncharted territories to uncover precious resources for a greedy guild +hungry for wealth and power. diff --git a/assets/img/the-guild.png b/content/games/the-guild.png similarity index 100% rename from assets/img/the-guild.png rename to content/games/the-guild.png diff --git a/src/pages/index/games.html b/src/pages/index/games.html new file mode 100644 index 0000000..04d464c --- /dev/null +++ b/src/pages/index/games.html @@ -0,0 +1,26 @@ +{% set title = "Games" %} +{% set title_image = "/img/section-games.png" %} + +{% extends "lib/section.html.j2" %} + +{% block content %} + {% with content = site.content.load("games") %} + {% for game in content.glob("*.md") %} +
+
+ {{ game.meta.picture_alt }} + +
+
+ {{ game.html }} + Learn More +
+
+ {% endfor %} + {% endwith %} +{% endblock %} + diff --git a/src/pages/index/page.html b/src/pages/index/page.html index cb5c9d2..726c70d 100644 --- a/src/pages/index/page.html +++ b/src/pages/index/page.html @@ -52,37 +52,8 @@
{% include "pages/index/presentation.html" %} -
-

Games

-
-
- in-game screenshot of a cow-boy riding in wilderness - -
-
-

The Guild

-

- Saddle up, partner! Welcome to "Frontier Fortune: - Prospector's Quest" where the dusty trails of the Old - West lead to riches beyond your wildest dreams. In this - thrilling adventure, you step into the boots of a - rugged prospector, venturing into uncharted territories - to uncover precious resources for a greedy guild hungry - for wealth and power. -

- Learn More -
-
-
+ {% include "pages/index/games.html" %} +