]> Witch of Git - web/blog/blob - webrings.njk
Add STAMPS!!!!!!!!
[web/blog] / webrings.njk
1 ---
2 title: Webrings
3 layout: "layouts/layout.njk"
4 summary: "It's good to make your own communities. I list my webrings here."
5 stamps:
6 - su/periblush.png
7 - hs/light.png
8 - su/strawberry.png
9 - hs/homestuck-house.png
10 - id/nonbinary.png
11 - id/trans.png
12 - id/lesbian.png
13 - id/they-them.png
14 - id/she-her.png
15 ---
16 <style>.fullwidth{width:100vw; padding: 0 0.5em;}</style>
17 <article>
18 <p>
19 It's good to make your own communities and your own spaces, and this is a fun and sorta goofy way to do that.
20 Also, homemade internet aesthetics absolutely own, so I'm gonna cover this page in stamps.
21 </p>
22 </article>
23 <div class="col hcenter"><div class="row fullwidth hcenter fwrap">
24 {% for stamp in stamps %}<img src="/stamps/{{stamp}}">{% endfor %}
25 </div></div>
26 {% for webring in collections.webrings %}
27 <article>
28 <h2 id="{{ webring.data.title | slug }}">{{ webring.data.title }}</h2>
29 <div class="row">
30 <a class="c-sun" href="{{ webring.data.prev }}">Prev Site</a>
31 <div class="spacer"></div>
32 <a class="c-sun" href="{{ webring.data.next }}">Next Site</a>
33 </div>
34 <section>
35 {{ webring.templateContent | safe }}
36 </section>
37 <ul>
38 {% for page in webring.data.pages %}
39 <li><a class="c-sun" href="{{ page.url }}">{{ page.title }}</a></li>
40 {% endfor %}
41 </ul>
42 </article>
43 <div class="col hcenter"><div class="row fullwidth hcenter fwrap">
44 {% for stamp in webring.data.stamps %}<img src="/stamps/{{stamp}}">{% endfor %}
45 </div></div>
46 {% endfor %}