Compare commits

...

2 Commits

Author SHA1 Message Date
ray 8d9b703b3b set canonifyURLs to true
fixes images requests getting 404 errors
2020-02-16 21:15:02 +00:00
ray fef8954bc3 do not publish draft posts 2020-02-16 21:14:13 +00:00
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
rm -R ./blog rm -R ./blog
hugo -D hugo

View File

@ -1,4 +1,5 @@
baseURL = "https://rayelliott.dev/blog/" baseURL = "https://rayelliott.dev/blog/"
canonifyURLs = true
languageCode = "en-us" languageCode = "en-us"
title = "RayElliottDev" title = "RayElliottDev"
@ -39,20 +40,20 @@ url = "https://git.rayelliott.dev"
[[menu.main]] [[menu.main]]
name = "About" name = "About"
weight = 3 weight = 3
url = "/about/" url = "about/"
[[menu.main]] [[menu.main]]
name = "Portfolio" name = "Portfolio"
weight = 5 weight = 5
url = "/categories/portfolio/" url = "categories/portfolio/"
[[menu.main]] [[menu.main]]
name = "Posts" name = "Posts"
weight = 10 weight = 10
url ="/posts/" url ="posts/"
[[menu.main]] [[menu.main]]
name = "Categories" name = "Categories"
weight = 20 weight = 20
url = "/categories/" url = "categories/"
[[menu.main]] [[menu.main]]
name = "Tags" name = "Tags"
weight = 30 weight = 30
url = "/tags/" url = "tags/"