-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (79 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
89 lines (79 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
title: "Index"
---
<link rel="stylesheet" href="css/index.css" />
<section class="blurb">
<h1>Welcome!</h1>
<p>
Oddwords is a quasi-journalistic site founded in 2018, created to document
and discuss the various games and events related to the Oddworld series, its
community, and its developers.
</p>
<p>
While most of the content on the site deals with Soulstorm, especially its
pre-release material, you can also find game critiques, interviews, articles
about various more or less known aspects of the series, a few surveys
conducted by me, and even a couple of fanfics.
</p>
<p>I hope you enjoy your stay!</p>
</section>
<section class="featured">
{% assign side =
"history,guide,whatsnext,foundarchives,miodd,timeline,mapinterview,pgyft,swinterview,unreleased"
| split: ',' %} {% assign posts = site.tags.spec %}
<h2>Featured posts</h2>
<ul class="trio">
{% assign sides =
"guide,whatsnext,history,pgyft,swinterview,mapinterview,foundarchives" | split: ',' %}
{% for side in sides %} {% assign post = posts | where:"slug", side | first
%} {% include index_featured_item.html post=post %} {% endfor %}
</ul>
<h2>Cut content</h2>
<ul class="four">
{% assign sides = "unreleased,squeek,miodd,abesquest" | split: ',' %} {% for
side in sides %} {% assign post = posts | where:"slug", side | first %} {%
assign id = post.id | split: '/' %} {% include index_featured_item.html
post=post %} {% endfor %}
</ul>
</section>
<section class="rest">
<div class="category">
<h2>Newest posts</h2>
<ul>
{% for post in site.posts limit:10 %} {% include index_list_item.html
post=post %} {% endfor %}
</ul>
</div>
{% assign categories = "stories, statistics, reviews, other, soulstorm, blog"
| split: ", " %} {% assign category_names = "Fanfics,Fandom-related
Statistics,Reviews,General Oddworld Content,Soulstorm-related Content,Blog" |
split: "," %} {% assign category_descriptions = "Short stories written by me.;
Surveys, measurements of social media engagement, and game rankings.;My
reviews of Oddworld media.;Everything that doesn't fit elsewhere.;Content
related to Soulstorm and its development.;Posts relating to Oddwords itself."
| split: ";" %} {% for category in categories %}
<div class="category">
<h2 id="{{ category }}">{{ category_names[forloop.index0] }}</h2>
<p>{{ category_descriptions[forloop.index0] }}</p>
<ul>
{% for post in site.categories[category] %} {% include
index_list_item.html post=post %} {% endfor %}
</ul>
</div>
{% endfor %}
<div class="category">
<h3>Archive</h3>
<p>
Below you can find a list of posts that largely concern pre-release
speculation from my part and so provide little relevant information these
days.
</p>
<details>
<summary>Reveal list</summary>
<ul>
{% for post in site.categories["ssarchive"] %} {% include
index_list_item.html post=post %} {% endfor %}
</ul>
</details>
</div>
</section>