Initialize blog scaffold
Add the CLI, site, and sample content so the project can run locally. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
9d2628b318
commit
b78f4b39c9
40 changed files with 9140 additions and 0 deletions
14
frontend/site/src/components/SiteNav.astro
Normal file
14
frontend/site/src/components/SiteNav.astro
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
const links = [
|
||||
{ href: '/', label: 'Home' },
|
||||
{ href: '/archive/', label: 'Archive' },
|
||||
{ href: '/tags/', label: 'Tags' },
|
||||
{ href: '/rss.xml', label: 'RSS' }
|
||||
];
|
||||
---
|
||||
|
||||
<nav class="site-nav" aria-label="Primary">
|
||||
{links.map((link) => (
|
||||
<a href={link.href}>{link.label}</a>
|
||||
))}
|
||||
</nav>
|
||||
Loading…
Add table
Add a link
Reference in a new issue