mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-01 06:06:11 +08:00
This is the repository for https://micromdm.io
The website is built with hugo. You're welcome to add to it.
Adding a new blog post
- 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 serveormake serveto 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 pushyour branch. - Open a Pull Request.
Making changes to the site
The templates for the site are all located in the themes/micromdm folder. You can view your changes instantly by running
hugo serve or make serve and opening http://localhost:1313 in your browser.