diff --git a/config.toml b/config.toml index 36ee7cd1886f02859b7bf3f254287e19fab4cf38..e1b56a20f742ad27fb9b83ed08d8e78bc064e22a 100644 --- a/config.toml +++ b/config.toml @@ -3,7 +3,9 @@ contentdir = "content" layoutdir = "layouts" publishdir = "public" title = "Beautiful Hugo" -canonifyurls = true +canonifyURLs = true +#relativeURLs = true +#uglyURLs = true DefaultContentLanguage = "en" theme = "beautifulhugo" diff --git a/content/post/2017-03-07-bigimg-sample.md b/content/post/2017-03-07-bigimg-sample.md index 754d999a64ccac41c3ad2d3faaa43c0e63966062..a4f3e64d881e435b99f3d372aa897b236461a9cc 100644 --- a/content/post/2017-03-07-bigimg-sample.md +++ b/content/post/2017-03-07-bigimg-sample.md @@ -3,7 +3,7 @@ title: Big Image Sample subtitle: Using Multiple Images date: 2017-03-07 tags: ["example", "bigimg"] -bigimg: [{src: "/img/triangle.jpg", desc: "Triangle"}, {src: "/img/sphere.jpg", desc: "Sphere"}, {src: "/img/hexagon.jpg", desc: "Hexagon"}] +bigimg: [{src: "img/triangle.jpg"}, {src: "img/sphere.jpg"}, {src: "img/hexagon.jpg"}] --- The image banners at the top of the page are refered to as "bigimg" in this theme. They are optional, and one more more can be specified. If more than one is specified, the images rotate every 10 seconds. In the front matter, bigimgs are specified using an array of hashes. @@ -37,4 +37,4 @@ bigimg: - {src: "/img/hexagon.jpg", desc: "Hexagon"} ``` -Additional information can be found [in this YAML tutorial](https://rhnh.net/2011/01/31/yaml-tutorial/). \ No newline at end of file +Additional information can be found [in this YAML tutorial](https://rhnh.net/2011/01/31/yaml-tutorial/).