From 093dddf70b773ee41d6e58c9f95a4ea3500b64c0 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Tue, 29 Sep 2015 21:57:08 -0500 Subject: Added initial example site for theme --- exampleSite/config.toml | 197 ++++++++++++++++++++++ exampleSite/content/customgallery/anothercar.md | 6 + exampleSite/content/customgallery/anothercup.md | 6 + exampleSite/content/customgallery/anotherdrone.md | 6 + exampleSite/content/customgallery/anotherfood.md | 6 + exampleSite/content/customgallery/anotherjars.md | 6 + exampleSite/content/customgallery/anotherphone.md | 6 + exampleSite/content/customgallery/car.md | 6 + exampleSite/content/customgallery/cup.md | 6 + exampleSite/content/customgallery/drone.md | 6 + exampleSite/content/customgallery/food.md | 6 + exampleSite/content/customgallery/jars.md | 6 + exampleSite/content/customgallery/phone.md | 6 + exampleSite/content/custompost/eight.md | 15 ++ exampleSite/content/custompost/eleven.md | 15 ++ exampleSite/content/custompost/five.md | 15 ++ exampleSite/content/custompost/four.md | 15 ++ exampleSite/content/custompost/info.md | 11 ++ exampleSite/content/custompost/nine.md | 15 ++ exampleSite/content/custompost/one.md | 15 ++ exampleSite/content/custompost/redirect.md | 11 ++ exampleSite/content/custompost/seven.md | 15 ++ exampleSite/content/custompost/six.md | 15 ++ exampleSite/content/custompost/ten.md | 15 ++ exampleSite/content/custompost/three.md | 15 ++ exampleSite/content/custompost/twelve.md | 15 ++ exampleSite/content/custompost/two.md | 15 ++ exampleSite/content/customproject/anothercar.md | 10 ++ exampleSite/content/customproject/anothercup.md | 10 ++ exampleSite/content/customproject/anotherdrone.md | 10 ++ exampleSite/content/customproject/anotherfood.md | 10 ++ exampleSite/content/customproject/anotherjars.md | 10 ++ exampleSite/content/customproject/anotherphone.md | 10 ++ exampleSite/content/customproject/car.md | 10 ++ exampleSite/content/customproject/cup.md | 10 ++ exampleSite/content/customproject/drone.md | 10 ++ exampleSite/content/customproject/food.md | 10 ++ exampleSite/content/customproject/jars.md | 10 ++ exampleSite/content/customproject/phone.md | 10 ++ exampleSite/content/gallery/anothercar.md | 6 + exampleSite/content/gallery/anothercup.md | 6 + exampleSite/content/gallery/anotherdrone.md | 6 + exampleSite/content/gallery/anotherfood.md | 6 + exampleSite/content/gallery/anotherjars.md | 6 + exampleSite/content/gallery/anotherphone.md | 6 + exampleSite/content/gallery/car.md | 6 + exampleSite/content/gallery/cup.md | 6 + exampleSite/content/gallery/drone.md | 6 + exampleSite/content/gallery/food.md | 6 + exampleSite/content/gallery/jars.md | 6 + exampleSite/content/gallery/phone.md | 6 + exampleSite/content/post/eight.md | 15 ++ exampleSite/content/post/eleven.md | 15 ++ exampleSite/content/post/five.md | 15 ++ exampleSite/content/post/four.md | 15 ++ exampleSite/content/post/info.md | 11 ++ exampleSite/content/post/nine.md | 15 ++ exampleSite/content/post/one.md | 15 ++ exampleSite/content/post/redirect.md | 11 ++ exampleSite/content/post/seven.md | 15 ++ exampleSite/content/post/six.md | 15 ++ exampleSite/content/post/ten.md | 15 ++ exampleSite/content/post/three.md | 15 ++ exampleSite/content/post/twelve.md | 15 ++ exampleSite/content/post/two.md | 15 ++ exampleSite/content/project/anothercar.md | 10 ++ exampleSite/content/project/anothercup.md | 10 ++ exampleSite/content/project/anotherdrone.md | 10 ++ exampleSite/content/project/anotherfood.md | 10 ++ exampleSite/content/project/anotherjars.md | 10 ++ exampleSite/content/project/anotherphone.md | 10 ++ exampleSite/content/project/car.md | 10 ++ exampleSite/content/project/cup.md | 10 ++ exampleSite/content/project/drone.md | 10 ++ exampleSite/content/project/food.md | 10 ++ exampleSite/content/project/jars.md | 10 ++ exampleSite/content/project/phone.md | 10 ++ exampleSite/layouts/customgallery/single.html | 2 + exampleSite/layouts/custompost/single.html | 2 + exampleSite/layouts/customproject/single.html | 2 + exampleSite/layouts/section/customgallery.html | 2 + exampleSite/layouts/section/custompost.html | 2 + exampleSite/layouts/section/customproject.html | 2 + exampleSite/static/img/banner.jpg | Bin 0 -> 2949765 bytes exampleSite/static/img/car.jpg | Bin 0 -> 536569 bytes exampleSite/static/img/cup.jpg | Bin 0 -> 1636901 bytes exampleSite/static/img/drone.jpg | Bin 0 -> 406704 bytes exampleSite/static/img/food.jpg | Bin 0 -> 1530170 bytes exampleSite/static/img/jars.jpg | Bin 0 -> 1307429 bytes exampleSite/static/img/phone.jpg | Bin 0 -> 2316255 bytes 90 files changed, 997 insertions(+) create mode 100644 exampleSite/config.toml create mode 100644 exampleSite/content/customgallery/anothercar.md create mode 100644 exampleSite/content/customgallery/anothercup.md create mode 100644 exampleSite/content/customgallery/anotherdrone.md create mode 100644 exampleSite/content/customgallery/anotherfood.md create mode 100644 exampleSite/content/customgallery/anotherjars.md create mode 100644 exampleSite/content/customgallery/anotherphone.md create mode 100644 exampleSite/content/customgallery/car.md create mode 100644 exampleSite/content/customgallery/cup.md create mode 100644 exampleSite/content/customgallery/drone.md create mode 100644 exampleSite/content/customgallery/food.md create mode 100644 exampleSite/content/customgallery/jars.md create mode 100644 exampleSite/content/customgallery/phone.md create mode 100644 exampleSite/content/custompost/eight.md create mode 100644 exampleSite/content/custompost/eleven.md create mode 100644 exampleSite/content/custompost/five.md create mode 100644 exampleSite/content/custompost/four.md create mode 100644 exampleSite/content/custompost/info.md create mode 100644 exampleSite/content/custompost/nine.md create mode 100644 exampleSite/content/custompost/one.md create mode 100644 exampleSite/content/custompost/redirect.md create mode 100644 exampleSite/content/custompost/seven.md create mode 100644 exampleSite/content/custompost/six.md create mode 100644 exampleSite/content/custompost/ten.md create mode 100644 exampleSite/content/custompost/three.md create mode 100644 exampleSite/content/custompost/twelve.md create mode 100644 exampleSite/content/custompost/two.md create mode 100644 exampleSite/content/customproject/anothercar.md create mode 100644 exampleSite/content/customproject/anothercup.md create mode 100644 exampleSite/content/customproject/anotherdrone.md create mode 100644 exampleSite/content/customproject/anotherfood.md create mode 100644 exampleSite/content/customproject/anotherjars.md create mode 100644 exampleSite/content/customproject/anotherphone.md create mode 100644 exampleSite/content/customproject/car.md create mode 100644 exampleSite/content/customproject/cup.md create mode 100644 exampleSite/content/customproject/drone.md create mode 100644 exampleSite/content/customproject/food.md create mode 100644 exampleSite/content/customproject/jars.md create mode 100644 exampleSite/content/customproject/phone.md create mode 100644 exampleSite/content/gallery/anothercar.md create mode 100644 exampleSite/content/gallery/anothercup.md create mode 100644 exampleSite/content/gallery/anotherdrone.md create mode 100644 exampleSite/content/gallery/anotherfood.md create mode 100644 exampleSite/content/gallery/anotherjars.md create mode 100644 exampleSite/content/gallery/anotherphone.md create mode 100644 exampleSite/content/gallery/car.md create mode 100644 exampleSite/content/gallery/cup.md create mode 100644 exampleSite/content/gallery/drone.md create mode 100644 exampleSite/content/gallery/food.md create mode 100644 exampleSite/content/gallery/jars.md create mode 100644 exampleSite/content/gallery/phone.md create mode 100644 exampleSite/content/post/eight.md create mode 100644 exampleSite/content/post/eleven.md create mode 100644 exampleSite/content/post/five.md create mode 100644 exampleSite/content/post/four.md create mode 100644 exampleSite/content/post/info.md create mode 100644 exampleSite/content/post/nine.md create mode 100644 exampleSite/content/post/one.md create mode 100644 exampleSite/content/post/redirect.md create mode 100644 exampleSite/content/post/seven.md create mode 100644 exampleSite/content/post/six.md create mode 100644 exampleSite/content/post/ten.md create mode 100644 exampleSite/content/post/three.md create mode 100644 exampleSite/content/post/twelve.md create mode 100644 exampleSite/content/post/two.md create mode 100644 exampleSite/content/project/anothercar.md create mode 100644 exampleSite/content/project/anothercup.md create mode 100644 exampleSite/content/project/anotherdrone.md create mode 100644 exampleSite/content/project/anotherfood.md create mode 100644 exampleSite/content/project/anotherjars.md create mode 100644 exampleSite/content/project/anotherphone.md create mode 100644 exampleSite/content/project/car.md create mode 100644 exampleSite/content/project/cup.md create mode 100644 exampleSite/content/project/drone.md create mode 100644 exampleSite/content/project/food.md create mode 100644 exampleSite/content/project/jars.md create mode 100644 exampleSite/content/project/phone.md create mode 100644 exampleSite/layouts/customgallery/single.html create mode 100644 exampleSite/layouts/custompost/single.html create mode 100644 exampleSite/layouts/customproject/single.html create mode 100644 exampleSite/layouts/section/customgallery.html create mode 100644 exampleSite/layouts/section/custompost.html create mode 100644 exampleSite/layouts/section/customproject.html create mode 100644 exampleSite/static/img/banner.jpg create mode 100644 exampleSite/static/img/car.jpg create mode 100644 exampleSite/static/img/cup.jpg create mode 100644 exampleSite/static/img/drone.jpg create mode 100644 exampleSite/static/img/food.jpg create mode 100644 exampleSite/static/img/jars.jpg create mode 100644 exampleSite/static/img/phone.jpg diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..b9d17b0 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,197 @@ +# Site settings +baseurl = "http://replace-this-with-your-hugo-site.com/" +languageCode = "en-us" +title = "Grid Side" +theme = "grid-side" +copyright = "Copyright © by Your Name" + +# The theme uses pagination for post, gallery, and project listings. +#paginate = 12 + +# The theme supports disqus, which will appear only on deployed sites, +# not locally when run with `hugo server`; as with standard Hugo disqus, +# you can specify disqus_identifier, disqus_title, and disqus_url in the +# front matter of specific content. +#disqusShortname = "yourDisqusShortname" + +# The theme supports menus with up to one submenu per menu item +# The menu name must be "Main" +SectionPagesMenu = "Main" + +[Params] + # When set to true, will use infinite scrolling to load paginated content + # for posts, galleries, and projects + infinite_scroll = true + + # + # The post, project, and gallery sections can have infinite scroll turned + # on/off individually. These values override the infinte_scroll option + # above. + # + #[Params.Post] + # + # infinite_scroll = false + # + #[Params.Project] + # + # infinite_scroll = false + # + #[Params.Gallery] + # + # infinite_scroll = false + + # + # Optionally specify the style for highlight.js to enable it, otherwise + # you can use Pygments on the server side. + # + [Params.Highlight] + + style = "railscasts" + + # + # Contains the main grid cell of your site (such as a picture of yourself) + # along with your name, description, and email. Any empty field will + # not be included. Not providing an image will use a color. Not specifying + # the Header results in this cell not appearing in the site. + # + [Params.Header] + + # This is optional + name = "Your Name" + + # This is optional + description = "Your Description" + + # This is optional + email = "your@email.com" + + # Not providing this results in a color being used + image = "/img/banner.jpg" + + # This uses the CSS background-position, given the image above is set, + # useful when you want to adjust where the background-image lands + #image_position = "top" + + # This must be provided if the image above is not + #color = "#FFF" + + # + # Contains the footer of your main page and will also append items to + # the end of your sidebar in non-homepage pages. + # + [Params.Footer] + + # + # Represents the list of icons and associated links to use in your + # footer and sidebar. Your copyright information will always be + # shown in the footer. + # + # The icon class is a font awesome classname. + # + # e.g. twitter == "fa fa-twitter" + # + [[Params.Footer.List]] + + icon_class = "twitter" + icon_link = "#!" + + [[Params.Footer.List]] + + icon_class = "linkedin" + icon_link = "#!" + + [[Params.Footer.List]] + + icon_class = "google-plus" + icon_link = "#!" + + [[Params.Footer.List]] + + icon_class = "github" + icon_link = "#!" + + # + # Contains the Cells representing the sections of your website. Each cell + # contains the name of the cell, an image depicting what the content + # represents, and a link to use when the cell is clicked. + # + # Not providing an image will use the color specified by 'color' as the + # background color (default to #FFF). + # + # You can embed an icon using 'icon' to specify the classes to use + # for the icon (such as 'fa fa-flag' when using font awesome). + # + # By default, each cell has a grid size of 1/3 (4 out of 12) for large + # screens, 1/2 (6 out of 12) for medium screens, and 1 (12 out of 12) for + # small screens. To change the cell's size per screen, use the properties + # 'cell_large', 'cell_medium', and 'cell_small' respectively with a number + # ranging from 1 to 12. Make sure that Cells have nubmers equalling 12 + # per row. + # + [Params.Cells] + + [[Params.Cells.List]] + + # The name to use with the cell, shows up on hover + name = "Posts" + + # The link to associate with the cell, used when clicked + link = "/post/" + + # The image to use as a background-image for the cell + image = "/img/car.jpg" + + # This uses the CSS background-position, given the image above is + # set, useful when you want to adjust where the background-image + # lands + #image_position = "top" + + # The color to use as a fallback if an image is not provided + #color = "blue" + + # Grays out the image (if provided), the image will be restored + # to normal color on hover + #grayscale = true + + # Disables the normal cell highlight on hover + #no_highlight = true + + # Normally, a cell only shows text (its name) on hover, setting + # this to true results in the cell always showing its text + # and also using a dark overlay to make the white text be more + # visible + #always_show_text = true + + # Grays out the cell and disables click functionality on it + #disable = true + + [[Params.Cells.List]] + + name = "Gallery" + link = "/gallery/" + image = "/img/cup.jpg" + + [[Params.Cells.List]] + + name = "Projects" + link = "/project/" + image = "/img/drone.jpg" + + [[Params.Cells.List]] + + name = "Custom Post Section Name" + link = "/custompost/" + image = "/img/food.jpg" + + [[Params.Cells.List]] + + name = "Custom Gallery Section Name" + link = "/customgallery/" + image = "/img/jars.jpg" + + [[Params.Cells.List]] + + name = "Custom Project Section Name" + link = "/customproject/" + image = "/img/phone.jpg" + diff --git a/exampleSite/content/customgallery/anothercar.md b/exampleSite/content/customgallery/anothercar.md new file mode 100644 index 0000000..9dcb4d1 --- /dev/null +++ b/exampleSite/content/customgallery/anothercar.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/car.jpg" ++++ + diff --git a/exampleSite/content/customgallery/anothercup.md b/exampleSite/content/customgallery/anothercup.md new file mode 100644 index 0000000..b08d826 --- /dev/null +++ b/exampleSite/content/customgallery/anothercup.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/cup.jpg" ++++ + diff --git a/exampleSite/content/customgallery/anotherdrone.md b/exampleSite/content/customgallery/anotherdrone.md new file mode 100644 index 0000000..fe78b31 --- /dev/null +++ b/exampleSite/content/customgallery/anotherdrone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/drone.jpg" ++++ + diff --git a/exampleSite/content/customgallery/anotherfood.md b/exampleSite/content/customgallery/anotherfood.md new file mode 100644 index 0000000..506ae25 --- /dev/null +++ b/exampleSite/content/customgallery/anotherfood.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/food.jpg" ++++ + diff --git a/exampleSite/content/customgallery/anotherjars.md b/exampleSite/content/customgallery/anotherjars.md new file mode 100644 index 0000000..b2e4deb --- /dev/null +++ b/exampleSite/content/customgallery/anotherjars.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/jars.jpg" ++++ + diff --git a/exampleSite/content/customgallery/anotherphone.md b/exampleSite/content/customgallery/anotherphone.md new file mode 100644 index 0000000..b416bb6 --- /dev/null +++ b/exampleSite/content/customgallery/anotherphone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/phone.jpg" ++++ + diff --git a/exampleSite/content/customgallery/car.md b/exampleSite/content/customgallery/car.md new file mode 100644 index 0000000..9dcb4d1 --- /dev/null +++ b/exampleSite/content/customgallery/car.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/car.jpg" ++++ + diff --git a/exampleSite/content/customgallery/cup.md b/exampleSite/content/customgallery/cup.md new file mode 100644 index 0000000..b08d826 --- /dev/null +++ b/exampleSite/content/customgallery/cup.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/cup.jpg" ++++ + diff --git a/exampleSite/content/customgallery/drone.md b/exampleSite/content/customgallery/drone.md new file mode 100644 index 0000000..fe78b31 --- /dev/null +++ b/exampleSite/content/customgallery/drone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/drone.jpg" ++++ + diff --git a/exampleSite/content/customgallery/food.md b/exampleSite/content/customgallery/food.md new file mode 100644 index 0000000..506ae25 --- /dev/null +++ b/exampleSite/content/customgallery/food.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/food.jpg" ++++ + diff --git a/exampleSite/content/customgallery/jars.md b/exampleSite/content/customgallery/jars.md new file mode 100644 index 0000000..b2e4deb --- /dev/null +++ b/exampleSite/content/customgallery/jars.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/jars.jpg" ++++ + diff --git a/exampleSite/content/customgallery/phone.md b/exampleSite/content/customgallery/phone.md new file mode 100644 index 0000000..b416bb6 --- /dev/null +++ b/exampleSite/content/customgallery/phone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/phone.jpg" ++++ + diff --git a/exampleSite/content/custompost/eight.md b/exampleSite/content/custompost/eight.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/eight.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/eleven.md b/exampleSite/content/custompost/eleven.md new file mode 100644 index 0000000..0d06ffd --- /dev/null +++ b/exampleSite/content/custompost/eleven.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag5" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/five.md b/exampleSite/content/custompost/five.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/five.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/four.md b/exampleSite/content/custompost/four.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/custompost/four.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/info.md b/exampleSite/content/custompost/info.md new file mode 100644 index 0000000..98d9e83 --- /dev/null +++ b/exampleSite/content/custompost/info.md @@ -0,0 +1,11 @@ ++++ +title = "Info" +date = "2015-07-29" +image = "/img/car.jpg" +tags = [ "tag1", "tag2" ] +categories = [ "category1" ] ++++ + +You can optionally set an image in the front matter of a post using +`image = "..."`. + diff --git a/exampleSite/content/custompost/nine.md b/exampleSite/content/custompost/nine.md new file mode 100644 index 0000000..0d06ffd --- /dev/null +++ b/exampleSite/content/custompost/nine.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag5" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/one.md b/exampleSite/content/custompost/one.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/one.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/redirect.md b/exampleSite/content/custompost/redirect.md new file mode 100644 index 0000000..a73ce31 --- /dev/null +++ b/exampleSite/content/custompost/redirect.md @@ -0,0 +1,11 @@ ++++ +title = "Redirect" +date = "2015-07-29" +redirect = "/" +tags = [ "tag1", "tag2" ] +categories = [ "category1" ] ++++ + +You can optionally set the front matter `redirect = "url"` to automatically +redirect the content to another page. + diff --git a/exampleSite/content/custompost/seven.md b/exampleSite/content/custompost/seven.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/custompost/seven.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/six.md b/exampleSite/content/custompost/six.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/custompost/six.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/ten.md b/exampleSite/content/custompost/ten.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/ten.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/three.md b/exampleSite/content/custompost/three.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/three.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/twelve.md b/exampleSite/content/custompost/twelve.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/custompost/twelve.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/custompost/two.md b/exampleSite/content/custompost/two.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/custompost/two.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/customproject/anothercar.md b/exampleSite/content/customproject/anothercar.md new file mode 100644 index 0000000..7b19bca --- /dev/null +++ b/exampleSite/content/customproject/anothercar.md @@ -0,0 +1,10 @@ ++++ +title = "Another Car" +categories = [ "car" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/car.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/anothercup.md b/exampleSite/content/customproject/anothercup.md new file mode 100644 index 0000000..00dfa37 --- /dev/null +++ b/exampleSite/content/customproject/anothercup.md @@ -0,0 +1,10 @@ ++++ +title = "Another Cup" +categories = [ "cup" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/cup.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/anotherdrone.md b/exampleSite/content/customproject/anotherdrone.md new file mode 100644 index 0000000..222de86 --- /dev/null +++ b/exampleSite/content/customproject/anotherdrone.md @@ -0,0 +1,10 @@ ++++ +title = "Drone" +categories = [ "drone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/drone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/anotherfood.md b/exampleSite/content/customproject/anotherfood.md new file mode 100644 index 0000000..a202eef --- /dev/null +++ b/exampleSite/content/customproject/anotherfood.md @@ -0,0 +1,10 @@ ++++ +title = "Food" +categories = [ "food" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/food.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/anotherjars.md b/exampleSite/content/customproject/anotherjars.md new file mode 100644 index 0000000..0fa779e --- /dev/null +++ b/exampleSite/content/customproject/anotherjars.md @@ -0,0 +1,10 @@ ++++ +title = "Jars" +categories = [ "jars" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/jars.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/anotherphone.md b/exampleSite/content/customproject/anotherphone.md new file mode 100644 index 0000000..f73d430 --- /dev/null +++ b/exampleSite/content/customproject/anotherphone.md @@ -0,0 +1,10 @@ ++++ +title = "Phone" +categories = [ "phone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/phone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/car.md b/exampleSite/content/customproject/car.md new file mode 100644 index 0000000..a920980 --- /dev/null +++ b/exampleSite/content/customproject/car.md @@ -0,0 +1,10 @@ ++++ +title = "Car" +categories = [ "car" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/car.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/cup.md b/exampleSite/content/customproject/cup.md new file mode 100644 index 0000000..ffeb55e --- /dev/null +++ b/exampleSite/content/customproject/cup.md @@ -0,0 +1,10 @@ ++++ +title = "Cup" +categories = [ "cup" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/cup.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/drone.md b/exampleSite/content/customproject/drone.md new file mode 100644 index 0000000..222de86 --- /dev/null +++ b/exampleSite/content/customproject/drone.md @@ -0,0 +1,10 @@ ++++ +title = "Drone" +categories = [ "drone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/drone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/food.md b/exampleSite/content/customproject/food.md new file mode 100644 index 0000000..a202eef --- /dev/null +++ b/exampleSite/content/customproject/food.md @@ -0,0 +1,10 @@ ++++ +title = "Food" +categories = [ "food" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/food.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/jars.md b/exampleSite/content/customproject/jars.md new file mode 100644 index 0000000..0fa779e --- /dev/null +++ b/exampleSite/content/customproject/jars.md @@ -0,0 +1,10 @@ ++++ +title = "Jars" +categories = [ "jars" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/jars.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/customproject/phone.md b/exampleSite/content/customproject/phone.md new file mode 100644 index 0000000..f73d430 --- /dev/null +++ b/exampleSite/content/customproject/phone.md @@ -0,0 +1,10 @@ ++++ +title = "Phone" +categories = [ "phone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/phone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/gallery/anothercar.md b/exampleSite/content/gallery/anothercar.md new file mode 100644 index 0000000..9dcb4d1 --- /dev/null +++ b/exampleSite/content/gallery/anothercar.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/car.jpg" ++++ + diff --git a/exampleSite/content/gallery/anothercup.md b/exampleSite/content/gallery/anothercup.md new file mode 100644 index 0000000..b08d826 --- /dev/null +++ b/exampleSite/content/gallery/anothercup.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/cup.jpg" ++++ + diff --git a/exampleSite/content/gallery/anotherdrone.md b/exampleSite/content/gallery/anotherdrone.md new file mode 100644 index 0000000..fe78b31 --- /dev/null +++ b/exampleSite/content/gallery/anotherdrone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/drone.jpg" ++++ + diff --git a/exampleSite/content/gallery/anotherfood.md b/exampleSite/content/gallery/anotherfood.md new file mode 100644 index 0000000..506ae25 --- /dev/null +++ b/exampleSite/content/gallery/anotherfood.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/food.jpg" ++++ + diff --git a/exampleSite/content/gallery/anotherjars.md b/exampleSite/content/gallery/anotherjars.md new file mode 100644 index 0000000..b2e4deb --- /dev/null +++ b/exampleSite/content/gallery/anotherjars.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/jars.jpg" ++++ + diff --git a/exampleSite/content/gallery/anotherphone.md b/exampleSite/content/gallery/anotherphone.md new file mode 100644 index 0000000..b416bb6 --- /dev/null +++ b/exampleSite/content/gallery/anotherphone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/phone.jpg" ++++ + diff --git a/exampleSite/content/gallery/car.md b/exampleSite/content/gallery/car.md new file mode 100644 index 0000000..9dcb4d1 --- /dev/null +++ b/exampleSite/content/gallery/car.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/car.jpg" ++++ + diff --git a/exampleSite/content/gallery/cup.md b/exampleSite/content/gallery/cup.md new file mode 100644 index 0000000..b08d826 --- /dev/null +++ b/exampleSite/content/gallery/cup.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/cup.jpg" ++++ + diff --git a/exampleSite/content/gallery/drone.md b/exampleSite/content/gallery/drone.md new file mode 100644 index 0000000..fe78b31 --- /dev/null +++ b/exampleSite/content/gallery/drone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/drone.jpg" ++++ + diff --git a/exampleSite/content/gallery/food.md b/exampleSite/content/gallery/food.md new file mode 100644 index 0000000..506ae25 --- /dev/null +++ b/exampleSite/content/gallery/food.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/food.jpg" ++++ + diff --git a/exampleSite/content/gallery/jars.md b/exampleSite/content/gallery/jars.md new file mode 100644 index 0000000..b2e4deb --- /dev/null +++ b/exampleSite/content/gallery/jars.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/jars.jpg" ++++ + diff --git a/exampleSite/content/gallery/phone.md b/exampleSite/content/gallery/phone.md new file mode 100644 index 0000000..b416bb6 --- /dev/null +++ b/exampleSite/content/gallery/phone.md @@ -0,0 +1,6 @@ ++++ +title = "This is the title" +date = "2015-07-29" +image = "/img/phone.jpg" ++++ + diff --git a/exampleSite/content/post/eight.md b/exampleSite/content/post/eight.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/eight.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/eleven.md b/exampleSite/content/post/eleven.md new file mode 100644 index 0000000..0d06ffd --- /dev/null +++ b/exampleSite/content/post/eleven.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag5" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/five.md b/exampleSite/content/post/five.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/five.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/four.md b/exampleSite/content/post/four.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/post/four.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/info.md b/exampleSite/content/post/info.md new file mode 100644 index 0000000..98d9e83 --- /dev/null +++ b/exampleSite/content/post/info.md @@ -0,0 +1,11 @@ ++++ +title = "Info" +date = "2015-07-29" +image = "/img/car.jpg" +tags = [ "tag1", "tag2" ] +categories = [ "category1" ] ++++ + +You can optionally set an image in the front matter of a post using +`image = "..."`. + diff --git a/exampleSite/content/post/nine.md b/exampleSite/content/post/nine.md new file mode 100644 index 0000000..0d06ffd --- /dev/null +++ b/exampleSite/content/post/nine.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag5" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/one.md b/exampleSite/content/post/one.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/one.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/redirect.md b/exampleSite/content/post/redirect.md new file mode 100644 index 0000000..a73ce31 --- /dev/null +++ b/exampleSite/content/post/redirect.md @@ -0,0 +1,11 @@ ++++ +title = "Redirect" +date = "2015-07-29" +redirect = "/" +tags = [ "tag1", "tag2" ] +categories = [ "category1" ] ++++ + +You can optionally set the front matter `redirect = "url"` to automatically +redirect the content to another page. + diff --git a/exampleSite/content/post/seven.md b/exampleSite/content/post/seven.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/post/seven.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/six.md b/exampleSite/content/post/six.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/post/six.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/ten.md b/exampleSite/content/post/ten.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/ten.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/three.md b/exampleSite/content/post/three.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/three.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/twelve.md b/exampleSite/content/post/twelve.md new file mode 100644 index 0000000..cef1b15 --- /dev/null +++ b/exampleSite/content/post/twelve.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag2", "tag3" ] +categories = [ "category2" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/post/two.md b/exampleSite/content/post/two.md new file mode 100644 index 0000000..f522d9c --- /dev/null +++ b/exampleSite/content/post/two.md @@ -0,0 +1,15 @@ ++++ +title = "One" +date = "2015-07-25" +tags = [ "tag4", "tag3" ] +categories = [ "category3" ] ++++ + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse vulputate +vehicula mi id fringilla. Interdum et malesuada fames ac ante ipsum primis in +faucibus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices +posuere cubilia Curae; Proin rutrum vestibulum quam vitae ultrices. Suspendisse +dui tortor, suscipit id augue et, placerat placerat ipsum. Nam vulputate ex +eget varius convallis. Nullam mollis egestas ex eget faucibus. Maecenas ut est +a diam ullamcorper aliquet at vel ante. Fusce ac lacinia tortor. + diff --git a/exampleSite/content/project/anothercar.md b/exampleSite/content/project/anothercar.md new file mode 100644 index 0000000..7b19bca --- /dev/null +++ b/exampleSite/content/project/anothercar.md @@ -0,0 +1,10 @@ ++++ +title = "Another Car" +categories = [ "car" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/car.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/anothercup.md b/exampleSite/content/project/anothercup.md new file mode 100644 index 0000000..00dfa37 --- /dev/null +++ b/exampleSite/content/project/anothercup.md @@ -0,0 +1,10 @@ ++++ +title = "Another Cup" +categories = [ "cup" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/cup.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/anotherdrone.md b/exampleSite/content/project/anotherdrone.md new file mode 100644 index 0000000..222de86 --- /dev/null +++ b/exampleSite/content/project/anotherdrone.md @@ -0,0 +1,10 @@ ++++ +title = "Drone" +categories = [ "drone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/drone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/anotherfood.md b/exampleSite/content/project/anotherfood.md new file mode 100644 index 0000000..a202eef --- /dev/null +++ b/exampleSite/content/project/anotherfood.md @@ -0,0 +1,10 @@ ++++ +title = "Food" +categories = [ "food" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/food.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/anotherjars.md b/exampleSite/content/project/anotherjars.md new file mode 100644 index 0000000..0fa779e --- /dev/null +++ b/exampleSite/content/project/anotherjars.md @@ -0,0 +1,10 @@ ++++ +title = "Jars" +categories = [ "jars" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/jars.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/anotherphone.md b/exampleSite/content/project/anotherphone.md new file mode 100644 index 0000000..f73d430 --- /dev/null +++ b/exampleSite/content/project/anotherphone.md @@ -0,0 +1,10 @@ ++++ +title = "Phone" +categories = [ "phone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/phone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/car.md b/exampleSite/content/project/car.md new file mode 100644 index 0000000..a920980 --- /dev/null +++ b/exampleSite/content/project/car.md @@ -0,0 +1,10 @@ ++++ +title = "Car" +categories = [ "car" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/car.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/cup.md b/exampleSite/content/project/cup.md new file mode 100644 index 0000000..ffeb55e --- /dev/null +++ b/exampleSite/content/project/cup.md @@ -0,0 +1,10 @@ ++++ +title = "Cup" +categories = [ "cup" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/cup.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/drone.md b/exampleSite/content/project/drone.md new file mode 100644 index 0000000..222de86 --- /dev/null +++ b/exampleSite/content/project/drone.md @@ -0,0 +1,10 @@ ++++ +title = "Drone" +categories = [ "drone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/drone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/food.md b/exampleSite/content/project/food.md new file mode 100644 index 0000000..a202eef --- /dev/null +++ b/exampleSite/content/project/food.md @@ -0,0 +1,10 @@ ++++ +title = "Food" +categories = [ "food" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/food.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/jars.md b/exampleSite/content/project/jars.md new file mode 100644 index 0000000..0fa779e --- /dev/null +++ b/exampleSite/content/project/jars.md @@ -0,0 +1,10 @@ ++++ +title = "Jars" +categories = [ "jars" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/jars.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/content/project/phone.md b/exampleSite/content/project/phone.md new file mode 100644 index 0000000..f73d430 --- /dev/null +++ b/exampleSite/content/project/phone.md @@ -0,0 +1,10 @@ ++++ +title = "Phone" +categories = [ "phone" ] +tags = [ "a tag with spaces", "another tag" ] +image = "/img/phone.jpg" ++++ + +Project content would go here. You can also redirect using the front matter +`redirect = "url"`. + diff --git a/exampleSite/layouts/customgallery/single.html b/exampleSite/layouts/customgallery/single.html new file mode 100644 index 0000000..3a080fe --- /dev/null +++ b/exampleSite/layouts/customgallery/single.html @@ -0,0 +1,2 @@ +{{ partial "gallery/single.html" . }} + diff --git a/exampleSite/layouts/custompost/single.html b/exampleSite/layouts/custompost/single.html new file mode 100644 index 0000000..1b65ccd --- /dev/null +++ b/exampleSite/layouts/custompost/single.html @@ -0,0 +1,2 @@ +{{ partial "post/single.html" . }} + diff --git a/exampleSite/layouts/customproject/single.html b/exampleSite/layouts/customproject/single.html new file mode 100644 index 0000000..c83858d --- /dev/null +++ b/exampleSite/layouts/customproject/single.html @@ -0,0 +1,2 @@ +{{ partial "project/single.html" . }} + diff --git a/exampleSite/layouts/section/customgallery.html b/exampleSite/layouts/section/customgallery.html new file mode 100644 index 0000000..03f86a3 --- /dev/null +++ b/exampleSite/layouts/section/customgallery.html @@ -0,0 +1,2 @@ +{{ partial "gallery/list.html" . }} + diff --git a/exampleSite/layouts/section/custompost.html b/exampleSite/layouts/section/custompost.html new file mode 100644 index 0000000..7823493 --- /dev/null +++ b/exampleSite/layouts/section/custompost.html @@ -0,0 +1,2 @@ +{{ partial "post/list.html" . }} + diff --git a/exampleSite/layouts/section/customproject.html b/exampleSite/layouts/section/customproject.html new file mode 100644 index 0000000..bc82727 --- /dev/null +++ b/exampleSite/layouts/section/customproject.html @@ -0,0 +1,2 @@ +{{ partial "project/list.html" . }} + diff --git a/exampleSite/static/img/banner.jpg b/exampleSite/static/img/banner.jpg new file mode 100644 index 0000000..506a277 Binary files /dev/null and b/exampleSite/static/img/banner.jpg differ diff --git a/exampleSite/static/img/car.jpg b/exampleSite/static/img/car.jpg new file mode 100644 index 0000000..29ea00f Binary files /dev/null and b/exampleSite/static/img/car.jpg differ diff --git a/exampleSite/static/img/cup.jpg b/exampleSite/static/img/cup.jpg new file mode 100644 index 0000000..1576337 Binary files /dev/null and b/exampleSite/static/img/cup.jpg differ diff --git a/exampleSite/static/img/drone.jpg b/exampleSite/static/img/drone.jpg new file mode 100644 index 0000000..b5de488 Binary files /dev/null and b/exampleSite/static/img/drone.jpg differ diff --git a/exampleSite/static/img/food.jpg b/exampleSite/static/img/food.jpg new file mode 100644 index 0000000..f27bc7d Binary files /dev/null and b/exampleSite/static/img/food.jpg differ diff --git a/exampleSite/static/img/jars.jpg b/exampleSite/static/img/jars.jpg new file mode 100644 index 0000000..8c8d757 Binary files /dev/null and b/exampleSite/static/img/jars.jpg differ diff --git a/exampleSite/static/img/phone.jpg b/exampleSite/static/img/phone.jpg new file mode 100644 index 0000000..9b54535 Binary files /dev/null and b/exampleSite/static/img/phone.jpg differ -- cgit v1.2.3