This is where Lilith records her thoughts and work. It's a homepage with a few bells and whistles (choo choo!!).
Browse, peruse, and hopefully walk away with something new. :>
The corner is built with SvelteKit, so npm run dev starts a dev server, and npm run build builds the site for production.
Note: Make sure hugo is installed; otherwise, you'll have to add entries by hand.
- Generate a new journal entry with
hugo new --kind entry journal/entries/[entry-number]-[title].md; write your journal in markdown below the "front matter" (the section with top and bottom delineation). - Generate JSON for our
/journalendpoint withhugo. The file will be generated insrc/lib/journal/entries. - Run
npm run buildto rebuild the site. - Push to GitHub (or your repo host of choice) 🚀🚀
- Assuming you've set up a Netlify pipeline, your changes will be live soon.
Hugo generates JSON based on Markdown. To modify the shape of the JSON, you'll need to edit layouts\_default\single.journal.json.
For more information about Hugo templating, visit the Hugo Templates documentation. :>