This is the repository for https://micromdm.io
The website is built with hugo. You're welcome to add to it.
- Install hugo
- Fork this repo and create a new branch (
git checkout -b my_post
) - Create a new blog post:
hugo new blog/my-post-title.md
- Open content/blog/my-post-title.md in your text editor and write an awesome blog post. You can use Markdown syntax for formatting.
- Use
hugo server --watch --buildDrafts=true --theme=micromdm
to view and edit this repo. Your local copy of the website will be visible athttp://localhost:1313
- Commit your changes (
git commit -m 'added my-post-title'
) andgit push
your branch. - Open a Pull Request.
The templates for the site are all located in the themes/micromdm
folder. You can view your changes instantly by running
hugo server --watch --buildDrafts=true --theme=micromdm
and opening http://localhost:1313
in your browser.