Nice little directory browser :D
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

basic /about page, fix link color accidentally applying on .clickable

+15 -4
+1 -1
functions.ps1
··· 250 250 footer -Class 'pb-10 pt-5' { 251 251 span -Class 'justify-center w-full flex text-current/75 gap-[1ch]' { 252 252 '๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ' 253 - a -Href 'https://git.helpimnotdrowning.net/helpimnotdrowning/Utatane' { 'running helpimnotdrowning/Utatane' } 253 + a -Href '/about' { 'running helpimnotdrowning/Utatane' } 254 254 '๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ' 255 255 } 256 256 }
+1 -1
public/style.css
··· 3074 3074 --tw-duration: 100ms; 3075 3075 transition-duration: 100ms; 3076 3076 } 3077 - a:not(td > a) { 3077 + a:not(td > a):not(.clickable) { 3078 3078 &:hover { 3079 3079 background-color: color-mix(in srgb, oklch(70.7% 0.165 254.624) 15%, transparent); 3080 3080 @supports (color: color-mix(in lab, red, red)) {
+1 -1
tailwind/style.tw.css
··· 79 79 @apply transition-colors duration-100; 80 80 } 81 81 82 - a:not(td > a) { 82 + a:not(td > a):not(.clickable) { 83 83 /* all links except those in a table since they get colored from td */ 84 84 &:hover { 85 85 /* like https://phk.freebsd.dk/ */
+12 -1
views/about.html.ps1
··· 21 21 -Title "About" ` 22 22 -Body { 23 23 div -Class 'n-box flex flex-row' { 24 - 'Read this source code in the footer link!' 24 + div -Class "flex" { 25 + a -Href '/' -Class 'clickable' -HxBoost true { '/' } 26 + } 27 + 28 + hr 29 + 30 + @" 31 + The source code for Utatane (this site) is available on the 32 + [helpimnotdrowning Git forge](https://git.helpimnotdrowning.net/helpimnotdrowning/Utatane) 33 + and [GitHub](https://github.com/helpimnotdrowning/Utatane). It is served and 34 + redistributed under the AGPLv3 license. 35 + "@ | ConvertFrom-Markdown | % Html 25 36 } 26 37 }