moving theme flag to config.toml (#12)

This commit is contained in:
Brandon Kurtz
2018-10-16 21:53:20 -04:00
committed by Victor Vrantchan
parent b8f8b8eb80
commit bedc42a52b
3 changed files with 4 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
serve:
hugo server -t micromdm -w
hugo serve

View File

@@ -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.

View File

@@ -1,4 +1,5 @@
languageCode = "en-us"
title = "MicroMDM"
baseurl = "https://micromdm.io/"
theme = "micromdm"
canonifyUrls = false