/perrymitchell.net

My personal website

Primary LanguageNunjucksMIT LicenseMIT

Perry Mitchell

My personal website - perrymitchell.net

Setup

  1. git clone git@github.com:perry-mitchell/perrymitchell.net.git
  2. cd perrymitchell.net && npm i
  3. npm run dev to serve the site.
  4. npm run build to build the site.

Tag Styling

Tags are styled in src/styles/tags.css. Coloring custom tags works as such:

...

.tag.beer {
  @apply bg-blue-700;
}

.tag.spirituality {
  @apply bg-indigo-700;
}

.tag.orcas {
  @apply bg-purple-700;
}

...