this repo has no description
0
fork

Configure Feed

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

updated footer

Altagos 9290b30c a6c0d4e8

+81 -66
+1 -2
_config.ts
··· 31 31 32 32 const site = lume({ 33 33 src: "./src", 34 - location: new URL("https://altagos.dev"), 35 - prettyUrls: true, 36 34 }); 37 35 38 36 site.use(jsx_preact()); ··· 56 54 site.use(sass()); 57 55 site.use( 58 56 slugify_urls({ 57 + extensions: [".html"], 59 58 lowercase: true, 60 59 alphanumeric: true, 61 60 separator: "-",
+1 -1
src/_components/Header.tsx
··· 11 11 note !== undefined 12 12 ? ( 13 13 14 - <small>{note}</small> 14 + <div class="note">{note}</div> 15 15 ) 16 16 : ( 17 17 <></>
+22 -40
src/_includes/layouts/footer.njk
··· 1 1 <footer> 2 - <div id="copyright"> 3 - <p>&copy; 2024 Altagos</p> 2 + <div> 3 + <h2> 4 + <a href="/">Jakob Speer</a> 5 + </h2> 6 + <div class="socials"> 7 + <ul> 8 + {# <li> 9 + <a href="mailto:jakob@altagos.dev">E-Mail</a> 10 + </li> #} 11 + <li> 12 + <a href="https://github.com/altagos" rel="me">GitHub</a> 13 + </li> 14 + <li> 15 + <a href="https://sr.ht/~altagos" rel="me">Sourcehut</a> 16 + </li> 17 + <li> 18 + <a rel="me" href="https://hachyderm.io/@altagos">Mastodon</a> 19 + </li> 20 + </ul> 21 + </div> 4 22 </div> 5 23 6 - <div class="socials"> 7 - <a href="mailto:jakob@altagos.dev" class="email icon"> 8 - <!-- Source Collection: https://www.svgrepo.com/collection/kalai-oval-interface-icons/ --> 9 - <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> 10 - <path 11 - stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" 12 - d="M4 7.00005L10.2 11.65C11.2667 12.45 12.7333 12.45 13.8 11.65L20 7"/> 13 - <rect 14 - stroke="currentColor" stroke-width="1.5" stroke-linecap="round" 15 - x="3" y="5" width="18" height="14" rx="2"/> 16 - </svg> 17 - </a> 18 - 19 - <a 20 - class="sourcehut-logo icon" 21 - href="https://sr.ht/~altagos/" 22 - target="_blank" 23 - title="Sourcehut" 24 - aria-label="Sourcehut" 25 - > 26 - <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"> 27 - <path 28 - fill="currentColor" 29 - stroke="currentColor" 30 - 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" 31 - ></path> 32 - </svg> 33 - </a> 34 - 35 - <a 36 - class="github-logo icon" 37 - href="https://github.com/altagos/" 38 - target="_blank" 39 - title="GitHub" 40 - aria-label="GitHub" 41 - > 42 - <img src="assets/github_mark.png" alt="GitHub Logo"/> 43 - </a> 24 + <div id="copyright"> 25 + <p>&copy; 2024 Altagos</p> 44 26 </div> 45 27 </footer>
+48
src/_includes/sass/_footer.scss
··· 1 + footer { 2 + width: 100%; 3 + 4 + display: flex; 5 + flex-wrap: wrap; 6 + justify-content: space-between; 7 + 8 + padding: 2em 0; 9 + 10 + font-family: "Berkely Mono", monospace; 11 + font-size: 16px; 12 + 13 + // color: var(--color-subtle); 14 + color: var(--text-color); 15 + 16 + text-decoration: none; 17 + 18 + h2 { 19 + font-size: 24px; 20 + margin: 5px 0; 21 + 22 + a { 23 + text-decoration: none; 24 + color: var(--text-color); 25 + } 26 + } 27 + 28 + .socials ul { 29 + list-style: none; 30 + padding: 0; 31 + display: flex; 32 + line-height: normal; 33 + 34 + li { 35 + padding-right: 15px; 36 + font-size: 14px; 37 + 38 + a { 39 + text-decoration: underline; 40 + color: var(--text-color); 41 + } 42 + } 43 + } 44 + 45 + #copyright { 46 + font-size: small; 47 + } 48 + }
+8 -22
src/_includes/sass/root.scss
··· 1 1 @use "fonts"; 2 + @use "footer"; 2 3 @use "socials"; 3 4 4 5 :root { ··· 51 52 52 53 header { 53 54 line-height: 1.5; 55 + margin-bottom: 4em; 54 56 55 57 h1 { 56 58 font-variation-settings: "wght" 150; 57 59 font-size: 3.8rem; 58 60 margin-bottom: 10px; 59 61 } 62 + 63 + .note { 64 + font-family: "Berkely Mono", monospace; 65 + font-size: smaller; 66 + color: var(--color-subtle); 67 + } 60 68 } 61 69 62 70 content { 63 71 line-height: 1.5; 64 - font-family: "Berkely Mono", "Times New Roman"; 65 - } 66 - 67 - footer { 68 - width: 100%; 69 - 70 - display: flex; 71 - flex-wrap: wrap; 72 - justify-content: space-between; 73 - 74 - padding: 2em 0; 75 - 76 - font-family: "Berkely Mono"; 77 - font-size: small; 78 - 79 - color: var(--color-subtle); 80 - } 81 - 82 - small { 83 - font-size: smaller; 84 72 font-family: "Berkely Mono", monospace; 85 - 86 - color: var(--color-subtle); 87 73 } 88 74 89 75 @media only screen and (max-width: 320px) {
+1 -1
src/index.mdx
··· 2 2 metas: 3 3 title: "Work in Progress" 4 4 note: "Probably forever..." 5 - --- 5 + ---