This is a personal blog and research notes site built using Hugo with the PaperMod theme.
This blog serves as a repository for personal research notes, technical explorations, and insights into AI architecture and cognitive models.
- Static Site Generator: Hugo
- Theme: PaperMod
To run this blog locally:
- Install Hugo: If you don't have Hugo installed, follow the official installation guide: https://gohugo.io/installation/
- Clone the repository:
git clone https://github.com/Finerestaurant/new-token.git cd new-token git submodule update --init --recursive # Initialize themes like PaperMod
- Run the development server:
This will start a local server, usually at
hugo server -D
http://localhost:1313/. The-Dflag includes draft content.
Content is managed within the content/ directory. Markdown files (.md) are used for blog posts and pages.
This site is deployed to GitHub Pages. The deployment workflow is configured in .github/workflows/deploy.yml.
- Hugo Configuration:
hugo.tomlcontains the main configuration for the site, including menus, params, and theme settings. - Theme Configuration: PaperMod theme specific configurations can be found in
themes/PaperMod/.
Note: This README has been updated to reflect the migration from Astro/Starlight to Hugo and the PaperMod theme. Previous content related to Astro has been removed.