https://github.com/perry-mitchell/perrymitchell.net
My personal website
https://github.com/perry-mitchell/perrymitchell.net
Last synced: 4 days ago
JSON representation
My personal website
- Host: GitHub
- URL: https://github.com/perry-mitchell/perrymitchell.net
- Owner: perry-mitchell
- License: mit
- Created: 2018-09-21T19:19:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-09T11:32:19.000Z (over 2 years ago)
- Last Synced: 2025-01-03T13:24:04.376Z (over 1 year ago)
- Language: Nunjucks
- Size: 5.49 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Perry Mitchell
My personal website - [perrymitchell.net](https://perrymitchell.net)
## Setup
1. `git clone git@github.com:perry-mitchell/perrymitchell.net.git`
1. `cd perrymitchell.net && npm i`
1. `npm run dev` to serve the site.
1. `npm run build` to build the site.
## Tag Styling
Tags are styled in `src/styles/tags.css`. Coloring custom tags works as such:
```css
...
.tag.beer {
@apply bg-blue-700;
}
.tag.spirituality {
@apply bg-indigo-700;
}
.tag.orcas {
@apply bg-purple-700;
}
...
```