diff --git a/Makefile b/Makefile index 31ad73f1..bf2ef25e 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ serve: - hugo server -t micromdm -w + hugo serve diff --git a/README.md b/README.md index 81e6f80c..93cc83c1 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The website is built with [hugo](https://gohugo.io/). You're welcome to add to i 2. Fork this repo and create a new branch (`git checkout -b my_post`) 3. Create a new blog post: `hugo new blog/my-post-title.md` 4. Open content/blog/my-post-title.md in your text editor and write an awesome blog post. You can use Markdown syntax for formatting. -5. Use `make serve` to view and edit this repo. Your local copy of the website will be visible at `http://localhost:1313` +5. Use `hugo serve` or `make serve` to view and edit this repo. Your local copy of the website will be visible at `http://localhost:1313` 6. Commit your changes (`git commit -m 'added my-post-title'`) and `git push` your branch. 7. Open a Pull Request. @@ -16,5 +16,4 @@ The website is built with [hugo](https://gohugo.io/). You're welcome to add to i # 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 -`make serve` and opening `http://localhost:1313` in your browser. - +`hugo serve` or `make serve` and opening `http://localhost:1313` in your browser. diff --git a/config.toml b/config.toml index fc9cbb5f..6cb36641 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,5 @@ languageCode = "en-us" title = "MicroMDM" baseurl = "https://micromdm.io/" +theme = "micromdm" canonifyUrls = false