- native chatGPT UI
- native Algolia UI
- Copy and paste this into your terminal to install the theme as a git submodule and copy the default configs.
brew install hugo site_name="milodocs_$(date +%s%N | md5sum | head -c 8)" hugo new site "$site_name" cd "$site_name" git init git submodule add https://github.com/lbliii/milodocs themes/milodocs mkdir config/ cp -r themes/milodocs/exampleSite/config/* config/ rm config/_default/security.yaml rm hugo.toml git add . git commit -m "Initial commit" hugo server -D -p 1313
- Open localhost:1313
- Create your first markdown directory under
content/(for example,content/get-started). - Add an
_index.mdfile with the following frontmatter:--- title: description: weight: ---
- Check your site to see it displayed.
Getting from 0 to 1 takes ~5 minutes.
brew install hugoSee Hugo Docs for more options:
hugo new site <siteName>-
Open your
<siteName>project directory. -
Navigate to the
themes/directory. -
Run the following command:
gh repo clone lbliii/milodocs
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = 'milodocs'Time to start saving your progress!
- Run the following:
git init - Add a comment.
- Push your new site and theme to your remote git repo.
- Navigate into the
siteNamerepo. - Run the following:
hugo server - Open localhost (typically localhost:1313).