this repo has no description

add roboring webring

0xda157 13e55445 db41ec55

+35 -5
+1 -1
.editorconfig
··· 5 5 insert_final_newline = true 6 6 indent_style = space 7 7 8 - [*.{css,nix,json,yml}] 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 + 54 + [[extra.webrings]] 55 + name = "roboring" 56 + home = "https://stellophiliac.github.io/roboring" 57 + prev = "https://stellophiliac.github.io/roboring/0xda157/previous" 58 + next = "https://stellophiliac.github.io/roboring/0xda157/next"
+7
sass/style.scss
··· 97 97 height: min-content; 98 98 } 99 99 100 + footer { 101 + #footer-webrings { 102 + display: flex; 103 + gap: 0.5rem; 104 + } 105 + } 106 + 100 107 a { 101 108 color: var(--accent); 102 109 &:visited {
+21 -4
templates/partials/footer.html
··· 1 1 <footer> 2 - &copy; 0xda157 2024-{{ now(utc=true) | date(format="%Y") }} 3 - | CC BY-SA 4.0 4 - | <a href="https://codeberg.org/da157/website">source code</a> 5 - | build with <a href="https://www.getzola.org">zola</a> 2 + <div id="footer-info"> 3 + &copy; 0xda157 2024-{{ now(utc=true) | date(format="%Y") }} 4 + | CC BY-SA 4.0 5 + | <a href="https://codeberg.org/da157/website">source code</a> 6 + | build with <a href="https://www.getzola.org">zola</a> 7 + </div> 8 + <div id="footer-webrings"> 9 + webrings: 10 + {%- for webring in config.extra.webrings -%} 11 + <span class="webring"> 12 + <a href="{{ webring.prev }}">{{" <- "}}</a> 13 + {%- if webring.home -%} 14 + <a href="{{ webring.home }}">{{ webring.name }}</a> 15 + {%- endif -%} 16 + {%- if webring.random -%} 17 + <a href="{{ webring.random }}">random</a> 18 + {%- endif -%} 19 + <a href="{{ webring.next }}"> -> </a> 20 + </span> 21 + {%- endfor -%} 22 + </div> 6 23 </footer>