mirror of
https://codeberg.org/andyscott-pages/andyscott-dot-me.git
synced 2024-11-09 13:50:49 -05:00
34 lines
945 B
Markdown
34 lines
945 B
Markdown
# astro-personal-website
|
|
Personal Website template with blog and themes made with Astro
|
|
|
|
## Project Strucutre
|
|
|
|
``` php
|
|
├── src/
|
|
│ ├── components/
|
|
│ │ ├── cs/
|
|
│ │ │ ├── TimeLine
|
|
│ │ ├── BaseHead.astro
|
|
│ │ ├── Card.astro
|
|
│ │ ├── Footer.astro
|
|
│ │ ├── Header.astro
|
|
│ │ └-─ HorizontalCard.jsx
|
|
│ │ └-─ SideBar.jsx
|
|
│ ├── layouts/
|
|
│ │ └-─ BaseLayout.astro
|
|
│ │ └-─ PostLayout.astro
|
|
│ └── pages/
|
|
│ │ ├── posts/
|
|
│ │ │ ├── post1.md
|
|
│ │ │ ├── post2.md
|
|
│ │ │ └── post3.md
|
|
│ │ └── index.astro
|
|
│ └── styles/
|
|
│ └-─ global.css
|
|
├── public/
|
|
│ ├── favicon.svg
|
|
│ └-─ social-image.png
|
|
├── astro.config.mjs
|
|
├── package.json
|
|
└── tsconfig.json
|
|
```
|