my website

show nix store path for the website on the website

+21 -3
+1 -1
src/discord.html
··· 26 26 i have friend requests disabled, so contact me elsewhere first 27 27 </p> 28 28 </body> 29 - </html> 29 + </html>
+19 -1
src/index.html
··· 15 15 align-items: flex-end; 16 16 min-height: 100vh; 17 17 } 18 + #src { 19 + text-decoration: none; 20 + color: inherit; 21 + opacity: 0.5; 22 + transition: opacity 200ms; 23 + } 24 + #src:is(:hover, :focus-visible) { 25 + opacity: 1; 26 + } 27 + #src code { 28 + white-space: normal; 29 + overflow-wrap: anywhere; 30 + font: inherit; 31 + } 18 32 </style> 19 33 </head> 20 34 <body> ··· 37 51 <li><a href="https://matrix.to/#/@chfour:eeep.ee">matrix</a></li> 38 52 <li><a href="discord.html">discord</a></li> 39 53 <li><a href="https://files.eeep.ee/">file dump</a></li> 40 - <li><a href="https://github.com/chfour/website3">website source</a></li> 41 54 </ul> 55 + <p> 56 + <a id="src" href="https://github.com/chfour/website3" aria-label="website source" title="website source"> 57 + <code>{{placeholder "http.vars.websitePath"}}</code> 58 + </a> 59 + </p> 42 60 </article> 43 61 </body> 44 62 </html>
+1 -1
src/style.css
··· 23 23 color: black; 24 24 font-family: 'Inter', sans-serif; 25 25 font-optical-sizing: auto; 26 + margin: 0; 26 27 } 27 28 28 29 article { 29 - /* max-width: 30em; */ 30 30 margin: 3rem; 31 31 } 32 32