File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed
Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1010 <ul class =" navbar" >
1111 <li ><a class =" navbar__link" href ={ ` ${import .meta .env .BASE_URL }/writings/ ` } >/writings</a ></li >
1212 <li ><a class =" navbar__link" href ={ ` ${import .meta .env .BASE_URL }/photos/ ` } >/photos</a ></li >
13+ <li ><a class =" navbar__link" href ={ ` ${import .meta .env .BASE_URL }/ideas/ ` } >/ideas</a ></li >
1314 <li ><a class =" navbar__link" href ={ ` ${import .meta .env .BASE_URL }/misc/ ` } >/misc</a ></li >
1415 </ul >
1516</header >
Original file line number Diff line number Diff line change 1+ I put my ideas on here.
Original file line number Diff line number Diff line change 1+ ---
2+ import BaseLayout from " ../../layouts/Base.astro" ;
3+ import IdeasContent from " ../../content/ideas.md" ;
4+ import Markdown from " ../../components/Markdown.astro" ;
5+ ---
6+
7+ <BaseLayout >
8+ <div class =" content" >
9+ <h2 class =" title" >Ideas</h2 >
10+ <div class =" markdown" >
11+ <Markdown >
12+ <IdeasContent />
13+ </Markdown >
14+ </div >
15+ </div >
16+ </BaseLayout >
17+
18+ <style >
19+ .content {
20+ padding-top: var(--spacing-lg);
21+ padding-bottom: var(--spacing-lg);
22+ }
23+ .title {
24+ margin-bottom: var(--spacing-lg);
25+ }
26+ .desc {
27+ margin-bottom: var(--spacing-xxs);
28+ }
29+ </style >
You can’t perform that action at this time.
0 commit comments