this repo has no description
0
fork

Configure Feed

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

added links to sourcehut and github

Altagos 03ef1d04 da694893

+79 -12
+32 -2
src/_includes/layouts/footer.njk
··· 1 1 <footer> 2 - <p>&copy; 2024 Altagos</p> 3 - </footer> 2 + <div id="copyright"> 3 + <p>&copy; 2024 Altagos</p> 4 + </div> 5 + 6 + <div class="socials"> 7 + <a 8 + class="sourcehut-logo" 9 + href="https://sr.ht/~altagos/" 10 + target="_blank" 11 + title="Sourcehut" 12 + aria-label="Sourcehut" 13 + > 14 + <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"> 15 + <path 16 + fill="currentColor" 17 + stroke="currentColor" 18 + d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z" 19 + ></path> 20 + </svg> 21 + </a> 22 + 23 + <a 24 + class="github-logo" 25 + href="https://github.com/altagos/" 26 + target="_blank" 27 + title="GitHub" 28 + aria-label="GitHub" 29 + > 30 + <img src="assets/github_mark.png" /> 31 + </a> 32 + </div> 33 + </footer>
+29
src/_includes/sass/_socials.scss
··· 1 + .socials { 2 + display: flex; 3 + align-content: center; 4 + align-items: center; 5 + flex-wrap: wrap; 6 + gap: 10px; 7 + } 8 + 9 + .sourcehut-logo, 10 + .github-logo { 11 + display: block; 12 + 13 + width: 23px; 14 + height: 23px; 15 + 16 + color: var(--arc-palette-maxContrastColor, #000); 17 + } 18 + 19 + .github-logo { 20 + padding: 3px; 21 + 22 + background-color: white; 23 + border-radius: 5px; 24 + 25 + img { 26 + width: 23px; 27 + height: 23px; 28 + } 29 + }
+17 -10
src/_includes/sass/root.scss
··· 1 1 @use "fonts"; 2 + @use "socials"; 2 3 3 4 :root { 4 5 --background-color: var(--arc-palette-background, #fff); ··· 48 49 padding: 2em 0; 49 50 } 50 51 52 + header { 53 + line-height: normal; 54 + 55 + h1 { 56 + font-variation-settings: "wght" 150; 57 + font-size: 3.8rem; 58 + margin-bottom: 10px; 59 + } 60 + } 61 + 51 62 content { 52 63 line-height: 1.5; 53 64 } 54 65 55 66 footer { 67 + width: 100%; 68 + 69 + display: flex; 70 + flex-wrap: wrap; 71 + justify-content: space-between; 72 + 56 73 padding: 2em 0; 57 74 58 75 font-family: "Berkely Mono"; 59 76 font-size: small; 60 77 61 78 color: var(--color-subtle); 62 - } 63 - 64 - header { 65 - line-height: normal; 66 - 67 - h1 { 68 - font-variation-settings: "wght" 150; 69 - font-size: 3.8rem; 70 - margin-bottom: 10px; 71 - } 72 79 } 73 80 74 81 small {
src/assets/github-mark.png

This is a binary file and will not be displayed.

+1
src/assets/sourcehut-logo.svg
··· 1 + <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" stroke="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path></svg>