tangled
alpha
login
or
join now
da157.id
/
website
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
add roboring webring
0xda157
3 months ago
13e55445
db41ec55
+35
-5
4 changed files
expand all
collapse all
unified
split
.editorconfig
config.toml
sass
style.scss
templates
partials
footer.html
+1
-1
.editorconfig
···
5
5
insert_final_newline = true
6
6
indent_style = space
7
7
8
8
-
[*.{css,nix,json,yml}]
8
8
+
[*.{css,nix,json,yml,toml}]
9
9
indent_size = 2
10
10
11
11
[*.{md,html,scss}]
+6
config.toml
···
50
50
[extra.fediverse]
51
51
host = "mastodon.catgirl.cloud"
52
52
user = "da157"
53
53
+
54
54
+
[[extra.webrings]]
55
55
+
name = "roboring"
56
56
+
home = "https://stellophiliac.github.io/roboring"
57
57
+
prev = "https://stellophiliac.github.io/roboring/0xda157/previous"
58
58
+
next = "https://stellophiliac.github.io/roboring/0xda157/next"
+7
sass/style.scss
···
97
97
height: min-content;
98
98
}
99
99
100
100
+
footer {
101
101
+
#footer-webrings {
102
102
+
display: flex;
103
103
+
gap: 0.5rem;
104
104
+
}
105
105
+
}
106
106
+
100
107
a {
101
108
color: var(--accent);
102
109
&:visited {
+21
-4
templates/partials/footer.html
···
1
1
<footer>
2
2
-
© 0xda157 2024-{{ now(utc=true) | date(format="%Y") }}
3
3
-
| CC BY-SA 4.0
4
4
-
| <a href="https://codeberg.org/da157/website">source code</a>
5
5
-
| build with <a href="https://www.getzola.org">zola</a>
2
2
+
<div id="footer-info">
3
3
+
© 0xda157 2024-{{ now(utc=true) | date(format="%Y") }}
4
4
+
| CC BY-SA 4.0
5
5
+
| <a href="https://codeberg.org/da157/website">source code</a>
6
6
+
| build with <a href="https://www.getzola.org">zola</a>
7
7
+
</div>
8
8
+
<div id="footer-webrings">
9
9
+
webrings:
10
10
+
{%- for webring in config.extra.webrings -%}
11
11
+
<span class="webring">
12
12
+
<a href="{{ webring.prev }}">{{" <- "}}</a>
13
13
+
{%- if webring.home -%}
14
14
+
<a href="{{ webring.home }}">{{ webring.name }}</a>
15
15
+
{%- endif -%}
16
16
+
{%- if webring.random -%}
17
17
+
<a href="{{ webring.random }}">random</a>
18
18
+
{%- endif -%}
19
19
+
<a href="{{ webring.next }}"> -> </a>
20
20
+
</span>
21
21
+
{%- endfor -%}
22
22
+
</div>
6
23
</footer>