this repo has no description
1
fork

Configure Feed

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

๐Ÿ’„ Improve footer a bit

+7 -2
+6 -1
src/layouts/Regular.astro
··· 1 1 --- 2 + import YAML from "yaml"; 2 3 import { getCollection } from "astro:content"; 3 4 import Bare from "./Bare.astro"; 4 5 import { setCssColors } from "../colors"; ··· 67 68 68 69 <pre 69 70 class="locals" 70 - set:html={JSON.stringify(Astro.locals, null, 2).replace( 71 + set:html={YAML.stringify(Astro.locals, null, { 72 + indent: 2, 73 + simpleKeys: true, 74 + lineWidth: 80, 75 + }).replace( 71 76 Astro.locals.buildCommit ?? "", 72 77 `<a href=https://github.com/gwennlbh/portfolio/commit/${Astro.locals.buildCommit}>${Astro.locals.buildCommit?.slice(0, 8)}</a>`, 73 78 )}
+1 -1
src/pages/works/[work].astro
··· 154 154 class="swatch" 155 155 style={`background-color: ${color}; color: var(--${name === "primary" ? "secondary" : "primary"}, black)`} 156 156 > 157 - #{i + 1} 157 + C{i+1} 158 158 </code> 159 159 )) 160 160 }