diff --git a/_tests/align-generator/index.js b/_tests/align-generator/index.js
index 0622bcc1..987e784f 100644
--- a/_tests/align-generator/index.js
+++ b/_tests/align-generator/index.js
@@ -1,5 +1,6 @@
const fs = require("fs");
const path = require("path");
+const prefix = "dev";
const { indexTemplate, index, content, list } = require('./templates');
const root = path.resolve(`${__dirname}/../..`);
@@ -105,7 +106,7 @@ Object.keys(fragments).forEach(fragment => {
alignments.forEach(alignment => {
fs.createReadStream(fragments[fragment].nested[dir][filename]).pipe(
fs.createWriteStream(
- `${paths.devAligns}/${fragment}/${dir}-${alignment}/${filename}`
+ `${paths.devAligns}/${prefix}-${fragment}/${dir}-${alignment}/${filename}`
)
);
});
@@ -122,13 +123,13 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
return false;
}
- if (!fs.existsSync(`${paths.devAligns}/${fragment}`)) {
- fs.mkdirSync(`${paths.devAligns}/${fragment}`);
+ if (!fs.existsSync(`${paths.devAligns}/${prefix}-${fragment}`)) {
+ fs.mkdirSync(`${paths.devAligns}/${prefix}-${fragment}`);
}
- if (dir && !fs.existsSync(`${paths.devAligns}/${fragment}/${dir}`)) {
+ if (dir && !fs.existsSync(`${paths.devAligns}/${prefix}-${fragment}/${dir}`)) {
alignments.forEach(alignment => {
- const path = `${paths.devAligns}/${fragment}/${dir}-${alignment}`;
+ const path = `${paths.devAligns}/${prefix}-${fragment}/${dir}-${alignment}`;
if (!fs.existsSync(path)) {
fs.mkdirSync(path);
}
@@ -136,7 +137,7 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
}
fs.writeFile(
- `${paths.devAligns}/${fragment}/index.md`,
+ `${paths.devAligns}/${prefix}-${fragment}/index.md`,
indexTemplate.replace(/%fragment%/g, fragment),
"utf8",
() => {}
@@ -155,7 +156,7 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
// Write the edited config into the fragment, whether it's in a nested directory or not
fs.writeFile(
- `${paths.devAligns}/${fragment +
+ `${paths.devAligns}/${prefix}${fragment +
(dir ? `/${dir}-${alignment}` : "")}/${filename +
(dir ? "" : `-${alignment}`)}.md`,
tmp,
diff --git a/_tests/align-generator/templates.js b/_tests/align-generator/templates.js
index b288106e..4b79fb0e 100644
--- a/_tests/align-generator/templates.js
+++ b/_tests/align-generator/templates.js
@@ -23,7 +23,7 @@ headless = true
const list = `+++
fragment = "list"
weight = 110
-section = "dev/alignments"
+section = "dev/dev-alignments"
count = 1000
summary = false
tiled = true
diff --git a/_tests/colors-generator/index.js b/_tests/colors-generator/index.js
index fff5b313..82cfe335 100644
--- a/_tests/colors-generator/index.js
+++ b/_tests/colors-generator/index.js
@@ -1,5 +1,6 @@
const fs = require("fs");
const path = require("path");
+const prefix = "dev";
const { indexTemplate, index, content, list } = require('./templates');
const root = path.resolve(`${__dirname}/../..`);
@@ -104,7 +105,7 @@ Object.keys(fragments).forEach(fragment => {
backgrounds.forEach(background => {
fs.createReadStream(fragments[fragment].nested[dir][filename]).pipe(
fs.createWriteStream(
- `${paths.devColors}/${fragment}/${dir}-${background}/${filename}`
+ `${paths.devColors}/${prefix}-${fragment}/${dir}-${background}/${filename}`
)
);
});
@@ -121,13 +122,13 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
return;
}
- if (!fs.existsSync(`${paths.devColors}/${fragment}`)) {
- fs.mkdirSync(`${paths.devColors}/${fragment}`);
+ if (!fs.existsSync(`${paths.devColors}/${prefix}-${fragment}`)) {
+ fs.mkdirSync(`${paths.devColors}/${prefix}-${fragment}`);
}
- if (dir && !fs.existsSync(`${paths.devColors}/${fragment}/${dir}`)) {
+ if (dir && !fs.existsSync(`${paths.devColors}/${prefix}-${fragment}/${dir}`)) {
backgrounds.forEach(background => {
- const path = `${paths.devColors}/${fragment}/${dir}-${background}`;
+ const path = `${paths.devColors}/${prefix}-${fragment}/${dir}-${background}`;
if (!fs.existsSync(path)) {
fs.mkdirSync(path);
}
@@ -135,7 +136,7 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
}
fs.writeFile(
- `${paths.devColors}/${fragment}/index.md`,
+ `${paths.devColors}/${prefix}-${fragment}/index.md`,
indexTemplate.replace(/%fragment%/g, fragment),
"utf8",
() => {}
@@ -146,7 +147,7 @@ function parseBlackFriday(fragment, weight, content, filename, dir) {
.replace(/background\s?=\s".*"/im, `background = "${background}"`)
.replace(/weight\s?=\s?"?\d+"?/im, `weight = ${weight + i}`);
fs.writeFile(
- `${paths.devColors}/${fragment +
+ `${paths.devColors}/${prefix}-${fragment +
(dir ? `/${dir}-${background}` : "")}/${filename +
(dir ? "" : `-${background}`)}.md`,
tmp,
diff --git a/_tests/colors-generator/templates.js b/_tests/colors-generator/templates.js
index 84b86e4c..12da4ad1 100644
--- a/_tests/colors-generator/templates.js
+++ b/_tests/colors-generator/templates.js
@@ -23,7 +23,7 @@ headless = true
const list = `+++
fragment = "list"
weight = 110
-section = "dev/colors"
+section = "dev/dev-colors"
count = 1000
summary = false
tiled = true
diff --git a/exampleSite/content/dev/alignments/_index/list.md b/exampleSite/content/dev/alignments/_index/list.md
index bf512b7b..ad898c61 100644
--- a/exampleSite/content/dev/alignments/_index/list.md
+++ b/exampleSite/content/dev/alignments/_index/list.md
@@ -1,7 +1,7 @@
+++
fragment = "list"
weight = 110
-section = "dev/alignments"
+section = "dev/dev-alignments"
count = 1000
summary = false
tiled = true
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-center.md b/exampleSite/content/dev/alignments/buttons/buttons-center.md
deleted file mode 100644
index e9b3ce61..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-center.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 141
-background = "secondary"
-
-title = "Buttons Fragment"
-subtitle = "Call to action buttons"
-title_align = "center" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "link"
-+++
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-left.md b/exampleSite/content/dev/alignments/buttons/buttons-left.md
deleted file mode 100644
index 70fc18b6..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-left.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 140
-background = "secondary"
-
-title = "Buttons Fragment"
-subtitle = "Call to action buttons"
-title_align = "left" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "link"
-+++
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-outline-center.md b/exampleSite/content/dev/alignments/buttons/buttons-outline-center.md
deleted file mode 100644
index c19165b9..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-outline-center.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 121
-background = "secondary"
-
-title = "Buttons Fragment Outlined"
-subtitle = "Buttons with outlines"
-title_align = "center" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-link"
-+++
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-outline-left.md b/exampleSite/content/dev/alignments/buttons/buttons-outline-left.md
deleted file mode 100644
index 5d3a5fa4..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-outline-left.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 120
-background = "secondary"
-
-title = "Buttons Fragment Outlined"
-subtitle = "Buttons with outlines"
-title_align = "left" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-link"
-+++
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-outline-right.md b/exampleSite/content/dev/alignments/buttons/buttons-outline-right.md
deleted file mode 100644
index bb4df02b..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-outline-right.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 122
-background = "secondary"
-
-title = "Buttons Fragment Outlined"
-subtitle = "Buttons with outlines"
-title_align = "right" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "outline-dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "outline-link"
-+++
diff --git a/exampleSite/content/dev/alignments/buttons/buttons-right.md b/exampleSite/content/dev/alignments/buttons/buttons-right.md
deleted file mode 100644
index 674a2a84..00000000
--- a/exampleSite/content/dev/alignments/buttons/buttons-right.md
+++ /dev/null
@@ -1,51 +0,0 @@
-+++
-fragment = "buttons"
-#disabled = false
-date = "2016-09-07"
-weight = 142
-background = "secondary"
-
-title = "Buttons Fragment"
-subtitle = "Call to action buttons"
-title_align = "right" # Default is center, can be left, right or center
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "success"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "danger"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "warning"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "info"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "light"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "dark"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "link"
-+++
diff --git a/exampleSite/content/dev/alignments/contact/contact-center.md b/exampleSite/content/dev/alignments/contact/contact-center.md
deleted file mode 100644
index f2f150fb..00000000
--- a/exampleSite/content/dev/alignments/contact/contact-center.md
+++ /dev/null
@@ -1,53 +0,0 @@
-+++
-fragment = "contact"
-#disabled = true
-date = "2017-09-10"
-weight = 121
-background = "secondary"
-form_name = "defaultContact"
-
-title = "Contact fragment"
-subtitle = "*not working on demo page*"
-title_align = "center" # Default is center, can be left, right or center
-
-# PostURL can be used with backends such as mailout from caddy
-post_url = "https://example.com/mailout" #default: formspree.io
-email = "mail@example.com"
-button_text = "Send Button" # defaults to theme default
-#netlify = false
-
-# Optional google captcha
-# Won't be used if netlify is enabled
-#[recaptcha]
-# sitekey = ""
-
-[message]
- success = "Thank you for awesomely contacting us." # defaults to theme default
- error = "Message could not be send. Please contact us at mail@example.com instead." # defaults to theme default
-
-# Only defined fields are shown in contact form
-[fields.name]
- text = "Your Name *"
- error = "Please enter your name" # defaults to theme default
-
-[fields.email]
- text = "Your Email *"
- error = "Please enter your email address" # defaults to theme default
-
-[fields.phone]
- text = "Your Phone *"
- error = "Please enter your phone number" # defaults to theme default
-
-[fields.message]
- text = "Your Message *"
- error = "Please enter a message" # defaults to theme default
-
-# Optional hidden form fields
-# Fields "page" and "site" will be autofilled
-[[fields.hidden]]
- name = "page"
-
-[[fields.hidden]]
- name = "someID"
- value = "example.com"
-+++
diff --git a/exampleSite/content/dev/alignments/contact/contact-left.md b/exampleSite/content/dev/alignments/contact/contact-left.md
deleted file mode 100644
index f7a06bb2..00000000
--- a/exampleSite/content/dev/alignments/contact/contact-left.md
+++ /dev/null
@@ -1,53 +0,0 @@
-+++
-fragment = "contact"
-#disabled = true
-date = "2017-09-10"
-weight = 120
-background = "secondary"
-form_name = "defaultContact"
-
-title = "Contact fragment"
-subtitle = "*not working on demo page*"
-title_align = "left" # Default is center, can be left, right or center
-
-# PostURL can be used with backends such as mailout from caddy
-post_url = "https://example.com/mailout" #default: formspree.io
-email = "mail@example.com"
-button_text = "Send Button" # defaults to theme default
-#netlify = false
-
-# Optional google captcha
-# Won't be used if netlify is enabled
-#[recaptcha]
-# sitekey = ""
-
-[message]
- success = "Thank you for awesomely contacting us." # defaults to theme default
- error = "Message could not be send. Please contact us at mail@example.com instead." # defaults to theme default
-
-# Only defined fields are shown in contact form
-[fields.name]
- text = "Your Name *"
- error = "Please enter your name" # defaults to theme default
-
-[fields.email]
- text = "Your Email *"
- error = "Please enter your email address" # defaults to theme default
-
-[fields.phone]
- text = "Your Phone *"
- error = "Please enter your phone number" # defaults to theme default
-
-[fields.message]
- text = "Your Message *"
- error = "Please enter a message" # defaults to theme default
-
-# Optional hidden form fields
-# Fields "page" and "site" will be autofilled
-[[fields.hidden]]
- name = "page"
-
-[[fields.hidden]]
- name = "someID"
- value = "example.com"
-+++
diff --git a/exampleSite/content/dev/alignments/contact/contact-right.md b/exampleSite/content/dev/alignments/contact/contact-right.md
deleted file mode 100644
index 2ad295af..00000000
--- a/exampleSite/content/dev/alignments/contact/contact-right.md
+++ /dev/null
@@ -1,53 +0,0 @@
-+++
-fragment = "contact"
-#disabled = true
-date = "2017-09-10"
-weight = 122
-background = "secondary"
-form_name = "defaultContact"
-
-title = "Contact fragment"
-subtitle = "*not working on demo page*"
-title_align = "right" # Default is center, can be left, right or center
-
-# PostURL can be used with backends such as mailout from caddy
-post_url = "https://example.com/mailout" #default: formspree.io
-email = "mail@example.com"
-button_text = "Send Button" # defaults to theme default
-#netlify = false
-
-# Optional google captcha
-# Won't be used if netlify is enabled
-#[recaptcha]
-# sitekey = ""
-
-[message]
- success = "Thank you for awesomely contacting us." # defaults to theme default
- error = "Message could not be send. Please contact us at mail@example.com instead." # defaults to theme default
-
-# Only defined fields are shown in contact form
-[fields.name]
- text = "Your Name *"
- error = "Please enter your name" # defaults to theme default
-
-[fields.email]
- text = "Your Email *"
- error = "Please enter your email address" # defaults to theme default
-
-[fields.phone]
- text = "Your Phone *"
- error = "Please enter your phone number" # defaults to theme default
-
-[fields.message]
- text = "Your Message *"
- error = "Please enter a message" # defaults to theme default
-
-# Optional hidden form fields
-# Fields "page" and "site" will be autofilled
-[[fields.hidden]]
- name = "page"
-
-[[fields.hidden]]
- name = "someID"
- value = "example.com"
-+++
diff --git a/exampleSite/content/dev/alignments/content/content-center.md b/exampleSite/content/dev/alignments/content/content-center.md
deleted file mode 100644
index 3dee34f6..00000000
--- a/exampleSite/content/dev/alignments/content/content-center.md
+++ /dev/null
@@ -1,13 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2017-10-05"
-weight = 161
-background = "secondary"
-
-title = "Content without sidebar"
-subtitle = "Full width content fragment"
-title_align = "center" # Default is center, can be left, right or center
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-left.md b/exampleSite/content/dev/alignments/content/content-left.md
deleted file mode 100644
index 17d21514..00000000
--- a/exampleSite/content/dev/alignments/content/content-left.md
+++ /dev/null
@@ -1,13 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2017-10-05"
-weight = 160
-background = "secondary"
-
-title = "Content without sidebar"
-subtitle = "Full width content fragment"
-title_align = "left" # Default is center, can be left, right or center
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-right.md b/exampleSite/content/dev/alignments/content/content-right.md
deleted file mode 100644
index ffc07f43..00000000
--- a/exampleSite/content/dev/alignments/content/content-right.md
+++ /dev/null
@@ -1,13 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2017-10-05"
-weight = 162
-background = "secondary"
-
-title = "Content without sidebar"
-subtitle = "Full width content fragment"
-title_align = "right" # Default is center, can be left, right or center
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-center.md b/exampleSite/content/dev/alignments/content/content-sidebar-center.md
deleted file mode 100644
index b672510e..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-center.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 141
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "center" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "left"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-left.md b/exampleSite/content/dev/alignments/content/content-sidebar-left.md
deleted file mode 100644
index 95a95e12..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-left.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 140
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "left" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "left"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-right-center.md b/exampleSite/content/dev/alignments/content/content-sidebar-right-center.md
deleted file mode 100644
index dffde080..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-right-center.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 121
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "center" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "right"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-right-left.md b/exampleSite/content/dev/alignments/content/content-sidebar-right-left.md
deleted file mode 100644
index 787a1315..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-right-left.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 120
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "left" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "right"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-right-right.md b/exampleSite/content/dev/alignments/content/content-sidebar-right-right.md
deleted file mode 100644
index ac13877a..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-right-right.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 122
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "right" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "right"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/content/content-sidebar-right.md b/exampleSite/content/dev/alignments/content/content-sidebar-right.md
deleted file mode 100644
index 628ed99c..00000000
--- a/exampleSite/content/dev/alignments/content/content-sidebar-right.md
+++ /dev/null
@@ -1,25 +0,0 @@
-+++
-fragment = "content"
-#disabled = true
-date = "2016-09-07"
-weight = 142
-background = "secondary"
-
-title = "Content with sidebar"
-subtitle = "Split in two!"
-title_align = "right" # Default is center, can be left, right or center
-
-[sidebar]
- title = "Sidebar"
- align = "left"
- #sticky = true # Default is false
- content = """
-So much information
-Phone numbers
-Details
-Or even more
-Event with [a link](#)
-"""
-+++
-
-Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur a lorem urna. Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est. Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis. Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum. Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam. Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus. Nulla tincidunt quis lacus in posuere. Integer urna lorem, ultricies ut est vel, rhoncus euismod metus. Vestibulum luctus maximus massa, ut egestas est iaculis in. Nunc nisi dolor, sodales et imperdiet ut, lacinia ac justo. Phasellus ultrices risus cursus maximus lobortis. Vestibulum sagittis elementum dignissim. Suspendisse iaculis venenatis nisl, sed bibendum urna. Aliquam quis pellentesque tortor. Sed sed cursus nisl. Aenean eu lorem condimentum, feugiat mauris vitae, hendrerit tellus.
diff --git a/exampleSite/content/dev/alignments/buttons/index.md b/exampleSite/content/dev/alignments/dev-buttons/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/buttons/index.md
rename to exampleSite/content/dev/alignments/dev-buttons/index.md
diff --git a/exampleSite/content/dev/alignments/contact/index.md b/exampleSite/content/dev/alignments/dev-contact/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/contact/index.md
rename to exampleSite/content/dev/alignments/dev-contact/index.md
diff --git a/exampleSite/content/dev/alignments/content/index.md b/exampleSite/content/dev/alignments/dev-content/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/content/index.md
rename to exampleSite/content/dev/alignments/dev-content/index.md
diff --git a/exampleSite/content/dev/alignments/embed/index.md b/exampleSite/content/dev/alignments/dev-embed/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/embed/index.md
rename to exampleSite/content/dev/alignments/dev-embed/index.md
diff --git a/exampleSite/content/dev/alignments/footer/index.md b/exampleSite/content/dev/alignments/dev-footer/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/footer/index.md
rename to exampleSite/content/dev/alignments/dev-footer/index.md
diff --git a/exampleSite/content/dev/alignments/graph/graph-center/config.json b/exampleSite/content/dev/alignments/dev-graph/graph-center/config.json
similarity index 100%
rename from exampleSite/content/dev/alignments/graph/graph-center/config.json
rename to exampleSite/content/dev/alignments/dev-graph/graph-center/config.json
diff --git a/exampleSite/content/dev/alignments/graph/graph-left/config.json b/exampleSite/content/dev/alignments/dev-graph/graph-left/config.json
similarity index 100%
rename from exampleSite/content/dev/alignments/graph/graph-left/config.json
rename to exampleSite/content/dev/alignments/dev-graph/graph-left/config.json
diff --git a/exampleSite/content/dev/alignments/graph/graph-right/config.json b/exampleSite/content/dev/alignments/dev-graph/graph-right/config.json
similarity index 100%
rename from exampleSite/content/dev/alignments/graph/graph-right/config.json
rename to exampleSite/content/dev/alignments/dev-graph/graph-right/config.json
diff --git a/exampleSite/content/dev/alignments/graph/index.md b/exampleSite/content/dev/alignments/dev-graph/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/graph/index.md
rename to exampleSite/content/dev/alignments/dev-graph/index.md
diff --git a/exampleSite/content/dev/alignments/header/index.md b/exampleSite/content/dev/alignments/dev-header/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/header/index.md
rename to exampleSite/content/dev/alignments/dev-header/index.md
diff --git a/exampleSite/content/dev/colors/hero/hero-dark/config.json b/exampleSite/content/dev/alignments/dev-hero/hero-center/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-dark/config.json
rename to exampleSite/content/dev/alignments/dev-hero/hero-center/config.json
diff --git a/exampleSite/content/dev/alignments/hero/hero-center/logo.svg b/exampleSite/content/dev/alignments/dev-hero/hero-center/logo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/hero/hero-center/logo.svg
rename to exampleSite/content/dev/alignments/dev-hero/hero-center/logo.svg
diff --git a/exampleSite/content/dev/colors/hero/hero-light/config.json b/exampleSite/content/dev/alignments/dev-hero/hero-left/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-light/config.json
rename to exampleSite/content/dev/alignments/dev-hero/hero-left/config.json
diff --git a/exampleSite/content/dev/alignments/hero/hero-left/logo.svg b/exampleSite/content/dev/alignments/dev-hero/hero-left/logo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/hero/hero-left/logo.svg
rename to exampleSite/content/dev/alignments/dev-hero/hero-left/logo.svg
diff --git a/exampleSite/content/dev/colors/hero/hero-primary/config.json b/exampleSite/content/dev/alignments/dev-hero/hero-right/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-primary/config.json
rename to exampleSite/content/dev/alignments/dev-hero/hero-right/config.json
diff --git a/exampleSite/content/dev/alignments/hero/hero-right/logo.svg b/exampleSite/content/dev/alignments/dev-hero/hero-right/logo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/hero/hero-right/logo.svg
rename to exampleSite/content/dev/alignments/dev-hero/hero-right/logo.svg
diff --git a/exampleSite/content/dev/alignments/hero/index.md b/exampleSite/content/dev/alignments/dev-hero/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/hero/index.md
rename to exampleSite/content/dev/alignments/dev-hero/index.md
diff --git a/exampleSite/content/dev/alignments/item/index.md b/exampleSite/content/dev/alignments/dev-item/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/item/index.md
rename to exampleSite/content/dev/alignments/dev-item/index.md
diff --git a/exampleSite/content/dev/alignments/items/index.md b/exampleSite/content/dev/alignments/dev-items/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/index.md
rename to exampleSite/content/dev/alignments/dev-items/index.md
diff --git a/exampleSite/content/dev/alignments/items/items-center/column1.md b/exampleSite/content/dev/alignments/dev-items/items-center/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-center/column1.md
rename to exampleSite/content/dev/alignments/dev-items/items-center/column1.md
diff --git a/exampleSite/content/dev/alignments/items/items-center/column2.md b/exampleSite/content/dev/alignments/dev-items/items-center/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-center/column2.md
rename to exampleSite/content/dev/alignments/dev-items/items-center/column2.md
diff --git a/exampleSite/content/dev/alignments/items/items-center/column3.md b/exampleSite/content/dev/alignments/dev-items/items-center/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-center/column3.md
rename to exampleSite/content/dev/alignments/dev-items/items-center/column3.md
diff --git a/exampleSite/content/dev/alignments/items/items-left/column1.md b/exampleSite/content/dev/alignments/dev-items/items-left/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-left/column1.md
rename to exampleSite/content/dev/alignments/dev-items/items-left/column1.md
diff --git a/exampleSite/content/dev/alignments/items/items-left/column2.md b/exampleSite/content/dev/alignments/dev-items/items-left/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-left/column2.md
rename to exampleSite/content/dev/alignments/dev-items/items-left/column2.md
diff --git a/exampleSite/content/dev/alignments/items/items-left/column3.md b/exampleSite/content/dev/alignments/dev-items/items-left/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-left/column3.md
rename to exampleSite/content/dev/alignments/dev-items/items-left/column3.md
diff --git a/exampleSite/content/dev/alignments/items/items-right/column1.md b/exampleSite/content/dev/alignments/dev-items/items-right/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-right/column1.md
rename to exampleSite/content/dev/alignments/dev-items/items-right/column1.md
diff --git a/exampleSite/content/dev/alignments/items/items-right/column2.md b/exampleSite/content/dev/alignments/dev-items/items-right/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-right/column2.md
rename to exampleSite/content/dev/alignments/dev-items/items-right/column2.md
diff --git a/exampleSite/content/dev/alignments/items/items-right/column3.md b/exampleSite/content/dev/alignments/dev-items/items-right/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/items-right/column3.md
rename to exampleSite/content/dev/alignments/dev-items/items-right/column3.md
diff --git a/exampleSite/content/dev/alignments/items/logos-center/caddy.svg b/exampleSite/content/dev/alignments/dev-items/logos-center/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/caddy.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-center/caddy.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-center/column1.md b/exampleSite/content/dev/alignments/dev-items/logos-center/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/column1.md
rename to exampleSite/content/dev/alignments/dev-items/logos-center/column1.md
diff --git a/exampleSite/content/dev/alignments/items/logos-center/column2.md b/exampleSite/content/dev/alignments/dev-items/logos-center/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/column2.md
rename to exampleSite/content/dev/alignments/dev-items/logos-center/column2.md
diff --git a/exampleSite/content/dev/alignments/items/logos-center/column3.md b/exampleSite/content/dev/alignments/dev-items/logos-center/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/column3.md
rename to exampleSite/content/dev/alignments/dev-items/logos-center/column3.md
diff --git a/exampleSite/content/dev/alignments/items/logos-center/go.svg b/exampleSite/content/dev/alignments/dev-items/logos-center/go.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/go.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-center/go.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-center/hugo.svg b/exampleSite/content/dev/alignments/dev-items/logos-center/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-center/hugo.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-center/hugo.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-left/caddy.svg b/exampleSite/content/dev/alignments/dev-items/logos-left/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/caddy.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-left/caddy.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-left/column1.md b/exampleSite/content/dev/alignments/dev-items/logos-left/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/column1.md
rename to exampleSite/content/dev/alignments/dev-items/logos-left/column1.md
diff --git a/exampleSite/content/dev/alignments/items/logos-left/column2.md b/exampleSite/content/dev/alignments/dev-items/logos-left/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/column2.md
rename to exampleSite/content/dev/alignments/dev-items/logos-left/column2.md
diff --git a/exampleSite/content/dev/alignments/items/logos-left/column3.md b/exampleSite/content/dev/alignments/dev-items/logos-left/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/column3.md
rename to exampleSite/content/dev/alignments/dev-items/logos-left/column3.md
diff --git a/exampleSite/content/dev/alignments/items/logos-left/go.svg b/exampleSite/content/dev/alignments/dev-items/logos-left/go.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/go.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-left/go.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-left/hugo.svg b/exampleSite/content/dev/alignments/dev-items/logos-left/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-left/hugo.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-left/hugo.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-right/caddy.svg b/exampleSite/content/dev/alignments/dev-items/logos-right/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/caddy.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-right/caddy.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-right/column1.md b/exampleSite/content/dev/alignments/dev-items/logos-right/column1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/column1.md
rename to exampleSite/content/dev/alignments/dev-items/logos-right/column1.md
diff --git a/exampleSite/content/dev/alignments/items/logos-right/column2.md b/exampleSite/content/dev/alignments/dev-items/logos-right/column2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/column2.md
rename to exampleSite/content/dev/alignments/dev-items/logos-right/column2.md
diff --git a/exampleSite/content/dev/alignments/items/logos-right/column3.md b/exampleSite/content/dev/alignments/dev-items/logos-right/column3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/column3.md
rename to exampleSite/content/dev/alignments/dev-items/logos-right/column3.md
diff --git a/exampleSite/content/dev/alignments/items/logos-right/go.svg b/exampleSite/content/dev/alignments/dev-items/logos-right/go.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/go.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-right/go.svg
diff --git a/exampleSite/content/dev/alignments/items/logos-right/hugo.svg b/exampleSite/content/dev/alignments/dev-items/logos-right/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/alignments/items/logos-right/hugo.svg
rename to exampleSite/content/dev/alignments/dev-items/logos-right/hugo.svg
diff --git a/exampleSite/content/dev/alignments/list/index.md b/exampleSite/content/dev/alignments/dev-list/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/list/index.md
rename to exampleSite/content/dev/alignments/dev-list/index.md
diff --git a/exampleSite/content/dev/alignments/member/index.md b/exampleSite/content/dev/alignments/dev-member/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/member/index.md
rename to exampleSite/content/dev/alignments/dev-member/index.md
diff --git a/exampleSite/content/dev/alignments/member/members-center/donald.md b/exampleSite/content/dev/alignments/dev-member/members-center/donald.md
similarity index 100%
rename from exampleSite/content/dev/alignments/member/members-center/donald.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/donald.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/ella.md b/exampleSite/content/dev/alignments/dev-member/members-center/ella.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/ella.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/ella.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/gopher.md b/exampleSite/content/dev/alignments/dev-member/members-center/gopher.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/gopher.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/gopher.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/hector.md b/exampleSite/content/dev/alignments/dev-member/members-center/hector.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/hector.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/hector.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/nancy.md b/exampleSite/content/dev/alignments/dev-member/members-center/nancy.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/nancy.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/nancy.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/yoda.md b/exampleSite/content/dev/alignments/dev-member/members-center/yoda.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/yoda.md
rename to exampleSite/content/dev/alignments/dev-member/members-center/yoda.md
diff --git a/exampleSite/content/dev/alignments/member/members-left/donald.md b/exampleSite/content/dev/alignments/dev-member/members-left/donald.md
similarity index 100%
rename from exampleSite/content/dev/alignments/member/members-left/donald.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/donald.md
diff --git a/exampleSite/content/dev/colors/member/members-light/ella.md b/exampleSite/content/dev/alignments/dev-member/members-left/ella.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/ella.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/ella.md
diff --git a/exampleSite/content/dev/colors/member/members-light/gopher.md b/exampleSite/content/dev/alignments/dev-member/members-left/gopher.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/gopher.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/gopher.md
diff --git a/exampleSite/content/dev/colors/member/members-light/hector.md b/exampleSite/content/dev/alignments/dev-member/members-left/hector.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/hector.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/hector.md
diff --git a/exampleSite/content/dev/colors/member/members-light/nancy.md b/exampleSite/content/dev/alignments/dev-member/members-left/nancy.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/nancy.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/nancy.md
diff --git a/exampleSite/content/dev/colors/member/members-light/yoda.md b/exampleSite/content/dev/alignments/dev-member/members-left/yoda.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/yoda.md
rename to exampleSite/content/dev/alignments/dev-member/members-left/yoda.md
diff --git a/exampleSite/content/dev/alignments/member/members-right/donald.md b/exampleSite/content/dev/alignments/dev-member/members-right/donald.md
similarity index 100%
rename from exampleSite/content/dev/alignments/member/members-right/donald.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/donald.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/ella.md b/exampleSite/content/dev/alignments/dev-member/members-right/ella.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/ella.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/ella.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/gopher.md b/exampleSite/content/dev/alignments/dev-member/members-right/gopher.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/gopher.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/gopher.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/hector.md b/exampleSite/content/dev/alignments/dev-member/members-right/hector.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/hector.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/hector.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/nancy.md b/exampleSite/content/dev/alignments/dev-member/members-right/nancy.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/nancy.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/nancy.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/yoda.md b/exampleSite/content/dev/alignments/dev-member/members-right/yoda.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/yoda.md
rename to exampleSite/content/dev/alignments/dev-member/members-right/yoda.md
diff --git a/exampleSite/content/dev/colors/member/single-member-dark/bio.md b/exampleSite/content/dev/alignments/dev-member/single-member-center/bio.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-dark/bio.md
rename to exampleSite/content/dev/alignments/dev-member/single-member-center/bio.md
diff --git a/exampleSite/content/dev/colors/member/single-member-light/bio.md b/exampleSite/content/dev/alignments/dev-member/single-member-left/bio.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-light/bio.md
rename to exampleSite/content/dev/alignments/dev-member/single-member-left/bio.md
diff --git a/exampleSite/content/dev/colors/member/single-member-primary/bio.md b/exampleSite/content/dev/alignments/dev-member/single-member-right/bio.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-primary/bio.md
rename to exampleSite/content/dev/alignments/dev-member/single-member-right/bio.md
diff --git a/exampleSite/content/dev/alignments/portfolio/index.md b/exampleSite/content/dev/alignments/dev-portfolio/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/index.md
rename to exampleSite/content/dev/alignments/dev-portfolio/index.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/bird-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/bird-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/bird-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/cat-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/cat-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/cat-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/cat-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/cat-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/cat-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-3.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/dog-3.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/dog-3.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item1.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item1.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item1.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item2.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item2.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item2.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item3.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item3.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item3.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item4.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item4.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item4.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item4.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item5.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item5.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item5.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item5.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/item6.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item6.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-center/item6.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-center/item6.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/bird-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/bird-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/bird-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/cat-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/cat-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/cat-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/cat-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/cat-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/cat-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-3.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/dog-3.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/dog-3.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item1.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item1.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item1.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item2.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item2.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item2.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item3.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item3.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item3.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item4.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item4.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item4.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item4.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item5.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item5.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item5.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item5.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/item6.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item6.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-left/item6.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-left/item6.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/bird-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/bird-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/bird-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/cat-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/cat-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/cat-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/cat-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/cat-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/cat-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-1.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-1.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-1.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-2.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-2.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-2.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-3.jpeg b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/dog-3.jpeg
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/dog-3.jpeg
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item1.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item1.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item1.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item2.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item2.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item2.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item2.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item3.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item3.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item3.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item4.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item4.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item4.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item4.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item5.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item5.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item5.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item5.md
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/item6.md b/exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item6.md
similarity index 100%
rename from exampleSite/content/dev/alignments/portfolio/portfolio-right/item6.md
rename to exampleSite/content/dev/alignments/dev-portfolio/portfolio-right/item6.md
diff --git a/exampleSite/content/dev/alignments/pricing/index.md b/exampleSite/content/dev/alignments/dev-pricing/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/index.md
rename to exampleSite/content/dev/alignments/dev-pricing/index.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-center/plan-1.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-center/plan-1.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-1.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-dark/plan-2.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-2.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-dark/plan-2.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-2.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-center/plan-3.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-center/plan-3.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-center/plan-3.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-left/plan-1.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-left/plan-1.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-1.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-light/plan-2.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-2.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-light/plan-2.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-2.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-left/plan-3.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-left/plan-3.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-left/plan-3.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-right/plan-1.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-right/plan-1.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-1.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-primary/plan-2.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-2.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-primary/plan-2.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-2.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-right/plan-3.md b/exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/alignments/pricing/pricing-right/plan-3.md
rename to exampleSite/content/dev/alignments/dev-pricing/pricing-right/plan-3.md
diff --git a/exampleSite/content/dev/alignments/search/index.md b/exampleSite/content/dev/alignments/dev-search/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/search/index.md
rename to exampleSite/content/dev/alignments/dev-search/index.md
diff --git a/exampleSite/content/dev/alignments/stripe/index.md b/exampleSite/content/dev/alignments/dev-stripe/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/stripe/index.md
rename to exampleSite/content/dev/alignments/dev-stripe/index.md
diff --git a/exampleSite/content/dev/alignments/table/index.md b/exampleSite/content/dev/alignments/dev-table/index.md
similarity index 100%
rename from exampleSite/content/dev/alignments/table/index.md
rename to exampleSite/content/dev/alignments/dev-table/index.md
diff --git a/exampleSite/content/dev/alignments/embed/embed_subscribe-center.md b/exampleSite/content/dev/alignments/embed/embed_subscribe-center.md
deleted file mode 100644
index 41e233ab..00000000
--- a/exampleSite/content/dev/alignments/embed/embed_subscribe-center.md
+++ /dev/null
@@ -1,19 +0,0 @@
-+++
-fragment = "embed"
-#disabled = true
-date = "2017-10-07"
-weight = 121
-background = "secondary"
-
-#title = ""
-#subtitle = ""
-title_align = "center" # Default is center, can be left, right or center
-
-# Embed a form via an iframe
-# Mailerlite is one example of a working provider.
-# There are others such as convertkit.
-# Only necessity is for them to use iframes.
-media = ''
-responsive = false # prevent responsive behaviour
-#size = "100" # 25, 50, 75, 100 (percentage) - default: 75
-+++
diff --git a/exampleSite/content/dev/alignments/embed/embed_subscribe-left.md b/exampleSite/content/dev/alignments/embed/embed_subscribe-left.md
deleted file mode 100644
index 993fc0c8..00000000
--- a/exampleSite/content/dev/alignments/embed/embed_subscribe-left.md
+++ /dev/null
@@ -1,19 +0,0 @@
-+++
-fragment = "embed"
-#disabled = true
-date = "2017-10-07"
-weight = 120
-background = "secondary"
-
-#title = ""
-#subtitle = ""
-title_align = "left" # Default is center, can be left, right or center
-
-# Embed a form via an iframe
-# Mailerlite is one example of a working provider.
-# There are others such as convertkit.
-# Only necessity is for them to use iframes.
-media = ''
-responsive = false # prevent responsive behaviour
-#size = "100" # 25, 50, 75, 100 (percentage) - default: 75
-+++
diff --git a/exampleSite/content/dev/alignments/embed/embed_subscribe-right.md b/exampleSite/content/dev/alignments/embed/embed_subscribe-right.md
deleted file mode 100644
index 7e88cb2d..00000000
--- a/exampleSite/content/dev/alignments/embed/embed_subscribe-right.md
+++ /dev/null
@@ -1,19 +0,0 @@
-+++
-fragment = "embed"
-#disabled = true
-date = "2017-10-07"
-weight = 122
-background = "secondary"
-
-#title = ""
-#subtitle = ""
-title_align = "right" # Default is center, can be left, right or center
-
-# Embed a form via an iframe
-# Mailerlite is one example of a working provider.
-# There are others such as convertkit.
-# Only necessity is for them to use iframes.
-media = ''
-responsive = false # prevent responsive behaviour
-#size = "100" # 25, 50, 75, 100 (percentage) - default: 75
-+++
diff --git a/exampleSite/content/dev/alignments/footer/footer-example-center.md b/exampleSite/content/dev/alignments/footer/footer-example-center.md
deleted file mode 100644
index c16c1498..00000000
--- a/exampleSite/content/dev/alignments/footer/footer-example-center.md
+++ /dev/null
@@ -1,23 +0,0 @@
-+++
-title_align="center"
-
-fragment = "footer"
-#disabled = true
-date = "2016-09-07"
-weight = 121
-background = "secondary"
-title = "Logo Title"
-
-menu_title = "Link Title"
-
-[asset]
- image = "logo.svg"
- text = "Logo Subtext"
- url = "#"
-+++
-
-#### Description Title
-
-Project description such as:
-Open source theme for your next project
-Provided by Okkur Labs
diff --git a/exampleSite/content/dev/alignments/footer/footer-example-left.md b/exampleSite/content/dev/alignments/footer/footer-example-left.md
deleted file mode 100644
index 13aa4797..00000000
--- a/exampleSite/content/dev/alignments/footer/footer-example-left.md
+++ /dev/null
@@ -1,23 +0,0 @@
-+++
-title_align="left"
-
-fragment = "footer"
-#disabled = true
-date = "2016-09-07"
-weight = 120
-background = "secondary"
-title = "Logo Title"
-
-menu_title = "Link Title"
-
-[asset]
- image = "logo.svg"
- text = "Logo Subtext"
- url = "#"
-+++
-
-#### Description Title
-
-Project description such as:
-Open source theme for your next project
-Provided by Okkur Labs
diff --git a/exampleSite/content/dev/alignments/footer/footer-example-right.md b/exampleSite/content/dev/alignments/footer/footer-example-right.md
deleted file mode 100644
index 30701e08..00000000
--- a/exampleSite/content/dev/alignments/footer/footer-example-right.md
+++ /dev/null
@@ -1,23 +0,0 @@
-+++
-title_align="right"
-
-fragment = "footer"
-#disabled = true
-date = "2016-09-07"
-weight = 122
-background = "secondary"
-title = "Logo Title"
-
-menu_title = "Link Title"
-
-[asset]
- image = "logo.svg"
- text = "Logo Subtext"
- url = "#"
-+++
-
-#### Description Title
-
-Project description such as:
-Open source theme for your next project
-Provided by Okkur Labs
diff --git a/exampleSite/content/dev/alignments/graph/graph-center/index.md b/exampleSite/content/dev/alignments/graph/graph-center/index.md
deleted file mode 100644
index 94d0f9ab..00000000
--- a/exampleSite/content/dev/alignments/graph/graph-center/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-title_align="center"
-
-fragment = "graph"
-weight = 121
-background = "secondary"
-
-title = "Graph Fragment"
-subtitle = "Beautifully showcase your data with graphs based on chart.js"
-#height = "400px"
-#width = "100%"
-+++
diff --git a/exampleSite/content/dev/alignments/graph/graph-left/index.md b/exampleSite/content/dev/alignments/graph/graph-left/index.md
deleted file mode 100644
index a0b79689..00000000
--- a/exampleSite/content/dev/alignments/graph/graph-left/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-title_align="left"
-
-fragment = "graph"
-weight = 120
-background = "secondary"
-
-title = "Graph Fragment"
-subtitle = "Beautifully showcase your data with graphs based on chart.js"
-#height = "400px"
-#width = "100%"
-+++
diff --git a/exampleSite/content/dev/alignments/graph/graph-right/index.md b/exampleSite/content/dev/alignments/graph/graph-right/index.md
deleted file mode 100644
index 72edcbd9..00000000
--- a/exampleSite/content/dev/alignments/graph/graph-right/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-title_align="right"
-
-fragment = "graph"
-weight = 122
-background = "secondary"
-
-title = "Graph Fragment"
-subtitle = "Beautifully showcase your data with graphs based on chart.js"
-#height = "400px"
-#width = "100%"
-+++
diff --git a/exampleSite/content/dev/alignments/header/header-center.md b/exampleSite/content/dev/alignments/header/header-center.md
deleted file mode 100644
index f3b13f62..00000000
--- a/exampleSite/content/dev/alignments/header/header-center.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-date = "2018-07-13"
-fragment = "header"
-weight = 121
-
-background = "secondary"
-title = "Section Header Fragment"
-subtitle = "Even linking is possible. This fragment can be used for related sections so linking is easier."
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/header/header-left.md b/exampleSite/content/dev/alignments/header/header-left.md
deleted file mode 100644
index 1906e22f..00000000
--- a/exampleSite/content/dev/alignments/header/header-left.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-date = "2018-07-13"
-fragment = "header"
-weight = 120
-
-background = "secondary"
-title = "Section Header Fragment"
-subtitle = "Even linking is possible. This fragment can be used for related sections so linking is easier."
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/header/header-right.md b/exampleSite/content/dev/alignments/header/header-right.md
deleted file mode 100644
index 8363bc35..00000000
--- a/exampleSite/content/dev/alignments/header/header-right.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-date = "2018-07-13"
-fragment = "header"
-weight = 122
-
-background = "secondary"
-title = "Section Header Fragment"
-subtitle = "Even linking is possible. This fragment can be used for related sections so linking is easier."
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/hero/hero-center/index.md b/exampleSite/content/dev/alignments/hero/hero-center/index.md
deleted file mode 100644
index 64896f66..00000000
--- a/exampleSite/content/dev/alignments/hero/hero-center/index.md
+++ /dev/null
@@ -1,37 +0,0 @@
-+++
-title_align="center"
-
-fragment = "hero"
-#disabled = true
-date = "2016-09-07"
-weight = 121
-background = "secondary"
-particles = true
-
-#title_page = true # Default is false
-title = "Syna Theme"
-subtitle = "Showcase your next project"
-
-[header]
- image = "header.jpg"
-
-[asset]
- image = "logo.svg"
- width = "500px" # optional - will default to image width
- #height = "150px" # optional - will default to image height
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "info" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Download"
- url = "https://github.com/okkur/syna/releases"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
diff --git a/exampleSite/content/dev/alignments/hero/hero-left/index.md b/exampleSite/content/dev/alignments/hero/hero-left/index.md
deleted file mode 100644
index b5d7f2b3..00000000
--- a/exampleSite/content/dev/alignments/hero/hero-left/index.md
+++ /dev/null
@@ -1,37 +0,0 @@
-+++
-title_align="left"
-
-fragment = "hero"
-#disabled = true
-date = "2016-09-07"
-weight = 120
-background = "secondary"
-particles = true
-
-#title_page = true # Default is false
-title = "Syna Theme"
-subtitle = "Showcase your next project"
-
-[header]
- image = "header.jpg"
-
-[asset]
- image = "logo.svg"
- width = "500px" # optional - will default to image width
- #height = "150px" # optional - will default to image height
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "info" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Download"
- url = "https://github.com/okkur/syna/releases"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
diff --git a/exampleSite/content/dev/alignments/hero/hero-right/index.md b/exampleSite/content/dev/alignments/hero/hero-right/index.md
deleted file mode 100644
index 409ff7fa..00000000
--- a/exampleSite/content/dev/alignments/hero/hero-right/index.md
+++ /dev/null
@@ -1,37 +0,0 @@
-+++
-title_align="right"
-
-fragment = "hero"
-#disabled = true
-date = "2016-09-07"
-weight = 122
-background = "secondary"
-particles = true
-
-#title_page = true # Default is false
-title = "Syna Theme"
-subtitle = "Showcase your next project"
-
-[header]
- image = "header.jpg"
-
-[asset]
- image = "logo.svg"
- width = "500px" # optional - will default to image width
- #height = "150px" # optional - will default to image height
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "info" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary
-
-[[buttons]]
- text = "Download"
- url = "https://github.com/okkur/syna/releases"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_button-center-center.md b/exampleSite/content/dev/alignments/item/item_button-center-center.md
deleted file mode 100644
index c2ddb795..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-center-center.md
+++ /dev/null
@@ -1,40 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 121
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Button Center"
-subtitle= "Easily center align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-center-left.md b/exampleSite/content/dev/alignments/item/item_button-center-left.md
deleted file mode 100644
index 014bcf35..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-center-left.md
+++ /dev/null
@@ -1,40 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 120
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Button Center"
-subtitle= "Easily center align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-center-right.md b/exampleSite/content/dev/alignments/item/item_button-center-right.md
deleted file mode 100644
index fa15c9ea..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-center-right.md
+++ /dev/null
@@ -1,40 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 122
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Button Center"
-subtitle= "Easily center align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-left-center.md b/exampleSite/content/dev/alignments/item/item_button-left-center.md
deleted file mode 100644
index 5bd47521..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-left-center.md
+++ /dev/null
@@ -1,34 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 141
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
-
-Easily left align the item fragment even with some buttons.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-left-left.md b/exampleSite/content/dev/alignments/item/item_button-left-left.md
deleted file mode 100644
index 73a1dc7f..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-left-left.md
+++ /dev/null
@@ -1,34 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 140
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
-
-Easily left align the item fragment even with some buttons.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-left-right.md b/exampleSite/content/dev/alignments/item/item_button-left-right.md
deleted file mode 100644
index 5ef68814..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-left-right.md
+++ /dev/null
@@ -1,34 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 142
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "success"
-+++
-
-Easily left align the item fragment even with some buttons.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-right-center.md b/exampleSite/content/dev/alignments/item/item_button-right-center.md
deleted file mode 100644
index 9e12e9a1..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-right-center.md
+++ /dev/null
@@ -1,39 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 161
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Button Right"
-subtitle= "Easily right align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-pre = "Awesome Button"
-post = "With a simple subtitle"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-right-left.md b/exampleSite/content/dev/alignments/item/item_button-right-left.md
deleted file mode 100644
index 507b1e82..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-right-left.md
+++ /dev/null
@@ -1,39 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 160
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Button Right"
-subtitle= "Easily right align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-pre = "Awesome Button"
-post = "With a simple subtitle"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_button-right-right.md b/exampleSite/content/dev/alignments/item/item_button-right-right.md
deleted file mode 100644
index da37dc69..00000000
--- a/exampleSite/content/dev/alignments/item/item_button-right-right.md
+++ /dev/null
@@ -1,39 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 162
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Button Right"
-subtitle= "Easily right align the item fragment even with some buttons"
-
-# Subtitle pre and post item
-pre = "Awesome Button"
-post = "With a simple subtitle"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Also a long description is possible.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-center-center.md b/exampleSite/content/dev/alignments/item/item_icon-center-center.md
deleted file mode 100644
index ccc4e398..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-center-center.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 181
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Icon Center"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily center item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-center-left.md b/exampleSite/content/dev/alignments/item/item_icon-center-left.md
deleted file mode 100644
index c49cedb9..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-center-left.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 180
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Icon Center"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily center item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-center-right.md b/exampleSite/content/dev/alignments/item/item_icon-center-right.md
deleted file mode 100644
index dc382608..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-center-right.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 182
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Icon Center"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily center item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-left-center.md b/exampleSite/content/dev/alignments/item/item_icon-left-center.md
deleted file mode 100644
index a4cf69b5..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-left-center.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 201
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Icon Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily left align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-left-left.md b/exampleSite/content/dev/alignments/item/item_icon-left-left.md
deleted file mode 100644
index ca6c5821..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-left-left.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 200
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Icon Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily left align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-left-right.md b/exampleSite/content/dev/alignments/item/item_icon-left-right.md
deleted file mode 100644
index 9cf196b9..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-left-right.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 202
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Icon Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily left align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-right-center.md b/exampleSite/content/dev/alignments/item/item_icon-right-center.md
deleted file mode 100644
index 2181b310..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-right-center.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 221
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Icon Right"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily right align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-right-left.md b/exampleSite/content/dev/alignments/item/item_icon-right-left.md
deleted file mode 100644
index 419558af..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-right-left.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 220
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Icon Right"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily right align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_icon-right-right.md b/exampleSite/content/dev/alignments/item/item_icon-right-right.md
deleted file mode 100644
index 3916847f..00000000
--- a/exampleSite/content/dev/alignments/item/item_icon-right-right.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 222
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Icon Right"
-#subtitle = ""
-
-# Subtitle pre and post item
-pre = "Awesome icon"
-post = "Using Fontawesome icons"
-
-[asset]
- icon = "fas fa-random"
-+++
-
-Easily right align item fragments even with an icon.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-button-left-center.md b/exampleSite/content/dev/alignments/item/item_image-button-left-center.md
deleted file mode 100644
index ad4948fe..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-button-left-center.md
+++ /dev/null
@@ -1,42 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 241
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Choose from a wide variety of highly modular partials to built the site you need.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-button-left-left.md b/exampleSite/content/dev/alignments/item/item_image-button-left-left.md
deleted file mode 100644
index bde56638..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-button-left-left.md
+++ /dev/null
@@ -1,42 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 240
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Choose from a wide variety of highly modular partials to built the site you need.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-button-left-right.md b/exampleSite/content/dev/alignments/item/item_image-button-left-right.md
deleted file mode 100644
index 7bd52271..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-button-left-right.md
+++ /dev/null
@@ -1,42 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 242
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Button Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[[buttons]]
- text = "Button"
- url = "#"
- color = "primary"
-
-[[buttons]]
- text = "Long Button"
- url = "#"
- color = "secondary"
-+++
-
-Choose from a wide variety of highly modular partials to built the site you need.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-center-center.md b/exampleSite/content/dev/alignments/item/item_image-center-center.md
deleted file mode 100644
index 34182aed..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-center-center.md
+++ /dev/null
@@ -1,33 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 261
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Center"
-#subtitle= ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
-
-
-Easily center item fragments even with an image.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-center-left.md b/exampleSite/content/dev/alignments/item/item_image-center-left.md
deleted file mode 100644
index a6c5d903..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-center-left.md
+++ /dev/null
@@ -1,33 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 260
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Center"
-#subtitle= ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
-
-
-Easily center item fragments even with an image.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-center-right.md b/exampleSite/content/dev/alignments/item/item_image-center-right.md
deleted file mode 100644
index 9b2d973e..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-center-right.md
+++ /dev/null
@@ -1,33 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 262
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Center"
-#subtitle= ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
-
-
-Easily center item fragments even with an image.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-only-center.md b/exampleSite/content/dev/alignments/item/item_image-only-center.md
deleted file mode 100644
index d5dbb0ef..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-only-center.md
+++ /dev/null
@@ -1,20 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 281
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Only"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_image-only-left.md b/exampleSite/content/dev/alignments/item/item_image-only-left.md
deleted file mode 100644
index e4ccb3b4..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-only-left.md
+++ /dev/null
@@ -1,20 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 280
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Only"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_image-only-right.md b/exampleSite/content/dev/alignments/item/item_image-only-right.md
deleted file mode 100644
index 38f8610a..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-only-right.md
+++ /dev/null
@@ -1,20 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 282
-background = "secondary"
-align = "center"
-
-title = "Item Fragment Image Only"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_image-right-center.md b/exampleSite/content/dev/alignments/item/item_image-right-center.md
deleted file mode 100644
index a1ed1cfa..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-right-center.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 301
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Image Right"
-subtitle= "Easily right align the item fragment even with an image"
-
-# Subtitle pre and post item
-pre = "Awesome screenshot"
-post = "Showcasing Syna"
-
-[asset]
- image = "screenshot.png"
-+++
-
-Easily left align the item fragment even with an image and buttons at the same time.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-right-left.md b/exampleSite/content/dev/alignments/item/item_image-right-left.md
deleted file mode 100644
index 2691a21b..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-right-left.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 300
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Image Right"
-subtitle= "Easily right align the item fragment even with an image"
-
-# Subtitle pre and post item
-pre = "Awesome screenshot"
-post = "Showcasing Syna"
-
-[asset]
- image = "screenshot.png"
-+++
-
-Easily left align the item fragment even with an image and buttons at the same time.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-right-right.md b/exampleSite/content/dev/alignments/item/item_image-right-right.md
deleted file mode 100644
index 12d06d87..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-right-right.md
+++ /dev/null
@@ -1,32 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 302
-background = "secondary"
-align = "right"
-
-title = "Item Fragment Image Right"
-subtitle= "Easily right align the item fragment even with an image"
-
-# Subtitle pre and post item
-pre = "Awesome screenshot"
-post = "Showcasing Syna"
-
-[asset]
- image = "screenshot.png"
-+++
-
-Easily left align the item fragment even with an image and buttons at the same time.
-
-Some more text to showcase the description capabilities:
-Lorem ipsum dolor sit amet, consectetur adipiscing elit.
-Curabitur a lorem urna.
-Quisque in neque malesuada, sollicitudin nunc porttitor, ornare est.
-Praesent ante enim, bibendum sed hendrerit et, iaculis laoreet felis.
-Morbi efficitur dui sit amet orci porttitor, nec tincidunt turpis elementum.
-Suspendisse rutrum, mi ac sollicitudin blandit, eros sem tincidunt enim, vitae feugiat turpis eros ut diam.
-Nunc hendrerit, nibh vitae dignissim pretium, magna nulla lacinia massa, et interdum lacus purus ultricies lacus.
-Nulla tincidunt quis lacus in posuere.
diff --git a/exampleSite/content/dev/alignments/item/item_image-table-left-center.md b/exampleSite/content/dev/alignments/item/item_image-table-left-center.md
deleted file mode 100644
index 2e6ca9b8..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-table-left-center.md
+++ /dev/null
@@ -1,85 +0,0 @@
-+++
-title_align="center"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 321
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Table Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[header]
- [[header.values]]
- text = "Header 1"
-
- [[header.values]]
- text = "Header 2"
- center = true
-
- [[header.values]]
- text = "Header 3"
-
- [[header.values]]
- text = "Header 4"
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "success"
- center = true
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "danger"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- center = true
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_image-table-left-left.md b/exampleSite/content/dev/alignments/item/item_image-table-left-left.md
deleted file mode 100644
index 778966c7..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-table-left-left.md
+++ /dev/null
@@ -1,85 +0,0 @@
-+++
-title_align="left"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 320
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Table Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[header]
- [[header.values]]
- text = "Header 1"
-
- [[header.values]]
- text = "Header 2"
- center = true
-
- [[header.values]]
- text = "Header 3"
-
- [[header.values]]
- text = "Header 4"
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "success"
- center = true
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "danger"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- center = true
-+++
diff --git a/exampleSite/content/dev/alignments/item/item_image-table-left-right.md b/exampleSite/content/dev/alignments/item/item_image-table-left-right.md
deleted file mode 100644
index d229ecae..00000000
--- a/exampleSite/content/dev/alignments/item/item_image-table-left-right.md
+++ /dev/null
@@ -1,85 +0,0 @@
-+++
-title_align="right"
-
-fragment = "item"
-#disabled = false
-date = "2017-10-04"
-weight = 322
-background = "secondary"
-align = "left"
-
-title = "Item Fragment Image Table Left"
-#subtitle = ""
-
-# Subtitle pre and post item
-#pre = ""
-#post = ""
-
-[asset]
- image = "screenshot.png"
-
-[header]
- [[header.values]]
- text = "Header 1"
-
- [[header.values]]
- text = "Header 2"
- center = true
-
- [[header.values]]
- text = "Header 3"
-
- [[header.values]]
- text = "Header 4"
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "success"
- center = true
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "danger"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- center = true
-+++
diff --git a/exampleSite/content/dev/alignments/items/items-center/index.md b/exampleSite/content/dev/alignments/items/items-center/index.md
deleted file mode 100644
index a951c062..00000000
--- a/exampleSite/content/dev/alignments/items/items-center/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 121
-background = "secondary"
-
-title = "Items Fragment"
-subtitle= "Column based items with icons"
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/items/items-left/index.md b/exampleSite/content/dev/alignments/items/items-left/index.md
deleted file mode 100644
index b9da00bc..00000000
--- a/exampleSite/content/dev/alignments/items/items-left/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 120
-background = "secondary"
-
-title = "Items Fragment"
-subtitle= "Column based items with icons"
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/items/items-right/index.md b/exampleSite/content/dev/alignments/items/items-right/index.md
deleted file mode 100644
index 4644ce3a..00000000
--- a/exampleSite/content/dev/alignments/items/items-right/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 122
-background = "secondary"
-
-title = "Items Fragment"
-subtitle= "Column based items with icons"
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/items/logos-center/index.md b/exampleSite/content/dev/alignments/items/logos-center/index.md
deleted file mode 100644
index 655e8f2a..00000000
--- a/exampleSite/content/dev/alignments/items/logos-center/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 181
-background = "secondary"
-
-title = "Items Fragment with images"
-subtitle= "Column based items with images"
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/items/logos-left/index.md b/exampleSite/content/dev/alignments/items/logos-left/index.md
deleted file mode 100644
index dbfedf8a..00000000
--- a/exampleSite/content/dev/alignments/items/logos-left/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 180
-background = "secondary"
-
-title = "Items Fragment with images"
-subtitle= "Column based items with images"
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/items/logos-right/index.md b/exampleSite/content/dev/alignments/items/logos-right/index.md
deleted file mode 100644
index 200e9d09..00000000
--- a/exampleSite/content/dev/alignments/items/logos-right/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "items"
-#disabled = false
-date = "2017-10-04"
-weight = 182
-background = "secondary"
-
-title = "Items Fragment with images"
-subtitle= "Column based items with images"
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-center.md b/exampleSite/content/dev/alignments/list/list-center.md
deleted file mode 100644
index 2fc6889f..00000000
--- a/exampleSite/content/dev/alignments/list/list-center.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 141
-
-title = "List fragment with list layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "center" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-#tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-left.md b/exampleSite/content/dev/alignments/list/list-left.md
deleted file mode 100644
index 2d212053..00000000
--- a/exampleSite/content/dev/alignments/list/list-left.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 140
-
-title = "List fragment with list layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "left" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-#tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-right.md b/exampleSite/content/dev/alignments/list/list-right.md
deleted file mode 100644
index ad8ce36e..00000000
--- a/exampleSite/content/dev/alignments/list/list-right.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 142
-
-title = "List fragment with list layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "right" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-#tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-tiled-center.md b/exampleSite/content/dev/alignments/list/list-tiled-center.md
deleted file mode 100644
index 4e98019c..00000000
--- a/exampleSite/content/dev/alignments/list/list-tiled-center.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 121
-
-title = "List fragment with tiled layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "center" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-tiled-left.md b/exampleSite/content/dev/alignments/list/list-tiled-left.md
deleted file mode 100644
index e81b9965..00000000
--- a/exampleSite/content/dev/alignments/list/list-tiled-left.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 120
-
-title = "List fragment with tiled layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "left" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/list/list-tiled-right.md b/exampleSite/content/dev/alignments/list/list-tiled-right.md
deleted file mode 100644
index e22af8b0..00000000
--- a/exampleSite/content/dev/alignments/list/list-tiled-right.md
+++ /dev/null
@@ -1,21 +0,0 @@
-+++
-fragment = "list"
-weight = 122
-
-title = "List fragment with tiled layout"
-subtitle = "Displays pages from dev/blog section"
-title_align = "right" # Default is center, can be left, right or center
-
-background = "secondary"
-count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
-#summary = false # Default value is true
-#images = false # Default value is true
-#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
-tiled = true # Default value is false
-display_date = true # Default is false
-#collapsible = true # Default value is false
-
-#subsections = true # Default to true. Shows subsection branch pages
-#subsection_leaves = true # Default to false. Shows subsection leaf pages
-+++
diff --git a/exampleSite/content/dev/alignments/member/members-center/index.md b/exampleSite/content/dev/alignments/member/members-center/index.md
deleted file mode 100644
index 2a19306a..00000000
--- a/exampleSite/content/dev/alignments/member/members-center/index.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 121
-background = "secondary"
-
-title = "Members fragment - Multiple members"
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/member/members-left/index.md b/exampleSite/content/dev/alignments/member/members-left/index.md
deleted file mode 100644
index 3280b34e..00000000
--- a/exampleSite/content/dev/alignments/member/members-left/index.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 120
-background = "secondary"
-
-title = "Members fragment - Multiple members"
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/member/members-right/index.md b/exampleSite/content/dev/alignments/member/members-right/index.md
deleted file mode 100644
index 31578527..00000000
--- a/exampleSite/content/dev/alignments/member/members-right/index.md
+++ /dev/null
@@ -1,10 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 122
-background = "secondary"
-
-title = "Members fragment - Multiple members"
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/member/single-member-center/index.md b/exampleSite/content/dev/alignments/member/single-member-center/index.md
deleted file mode 100644
index 3b7d936f..00000000
--- a/exampleSite/content/dev/alignments/member/single-member-center/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 141
-background = "secondary"
-
-title = "Single Member Fragment"
-#subtitle = "Highly motivated Gophers"
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/member/single-member-left/index.md b/exampleSite/content/dev/alignments/member/single-member-left/index.md
deleted file mode 100644
index f7de7ba6..00000000
--- a/exampleSite/content/dev/alignments/member/single-member-left/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 140
-background = "secondary"
-
-title = "Single Member Fragment"
-#subtitle = "Highly motivated Gophers"
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/member/single-member-right/index.md b/exampleSite/content/dev/alignments/member/single-member-right/index.md
deleted file mode 100644
index edf917ac..00000000
--- a/exampleSite/content/dev/alignments/member/single-member-right/index.md
+++ /dev/null
@@ -1,11 +0,0 @@
-+++
-fragment = "member"
-#disabled = false
-date = "2017-10-17"
-weight = 142
-background = "secondary"
-
-title = "Single Member Fragment"
-#subtitle = "Highly motivated Gophers"
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-center/index.md b/exampleSite/content/dev/alignments/portfolio/portfolio-center/index.md
deleted file mode 100644
index b2b7ac79..00000000
--- a/exampleSite/content/dev/alignments/portfolio/portfolio-center/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-date = "2018-07-09"
-fragment = "portfolio"
-weight = 121
-background = "secondary"
-
-title = "Portfolio Fragment"
-subtitle = "Displaying animals with links and modals"
-title_align = "center" # Default is center, can be left, right or center
-
-#height = "110px" # Default is auto
-+++
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-left/index.md b/exampleSite/content/dev/alignments/portfolio/portfolio-left/index.md
deleted file mode 100644
index ca9a9292..00000000
--- a/exampleSite/content/dev/alignments/portfolio/portfolio-left/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-date = "2018-07-09"
-fragment = "portfolio"
-weight = 120
-background = "secondary"
-
-title = "Portfolio Fragment"
-subtitle = "Displaying animals with links and modals"
-title_align = "left" # Default is center, can be left, right or center
-
-#height = "110px" # Default is auto
-+++
diff --git a/exampleSite/content/dev/alignments/portfolio/portfolio-right/index.md b/exampleSite/content/dev/alignments/portfolio/portfolio-right/index.md
deleted file mode 100644
index fa88105a..00000000
--- a/exampleSite/content/dev/alignments/portfolio/portfolio-right/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-date = "2018-07-09"
-fragment = "portfolio"
-weight = 122
-background = "secondary"
-
-title = "Portfolio Fragment"
-subtitle = "Displaying animals with links and modals"
-title_align = "right" # Default is center, can be left, right or center
-
-#height = "110px" # Default is auto
-+++
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-center/index.md b/exampleSite/content/dev/alignments/pricing/pricing-center/index.md
deleted file mode 100644
index d45430ba..00000000
--- a/exampleSite/content/dev/alignments/pricing/pricing-center/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-fragment = "pricing"
-weight = 121
-background = "secondary"
-
-title = "Pricing fragment"
-subtitle = "Can be linked to 3rd party payment services"
-title_align = "center" # Default is center, can be left, right or center
-+++
-
-Pricing fragment supports **markdown** as it's subtitle.
-Supports feature listing of different plans and links to a payment service.
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-left/index.md b/exampleSite/content/dev/alignments/pricing/pricing-left/index.md
deleted file mode 100644
index 7b3cb9d3..00000000
--- a/exampleSite/content/dev/alignments/pricing/pricing-left/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-fragment = "pricing"
-weight = 120
-background = "secondary"
-
-title = "Pricing fragment"
-subtitle = "Can be linked to 3rd party payment services"
-title_align = "left" # Default is center, can be left, right or center
-+++
-
-Pricing fragment supports **markdown** as it's subtitle.
-Supports feature listing of different plans and links to a payment service.
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-right/index.md b/exampleSite/content/dev/alignments/pricing/pricing-right/index.md
deleted file mode 100644
index 7484719b..00000000
--- a/exampleSite/content/dev/alignments/pricing/pricing-right/index.md
+++ /dev/null
@@ -1,12 +0,0 @@
-+++
-fragment = "pricing"
-weight = 122
-background = "secondary"
-
-title = "Pricing fragment"
-subtitle = "Can be linked to 3rd party payment services"
-title_align = "right" # Default is center, can be left, right or center
-+++
-
-Pricing fragment supports **markdown** as it's subtitle.
-Supports feature listing of different plans and links to a payment service.
diff --git a/exampleSite/content/dev/alignments/search/search-center.md b/exampleSite/content/dev/alignments/search/search-center.md
deleted file mode 100644
index 10dd0562..00000000
--- a/exampleSite/content/dev/alignments/search/search-center.md
+++ /dev/null
@@ -1,9 +0,0 @@
-+++
-fragment = "search"
-weight = 121
-background = "secondary"
-
-title = "Search Fragment"
-subtitle = "Searches through all content fragments"
-title_align = "center" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/search/search-left.md b/exampleSite/content/dev/alignments/search/search-left.md
deleted file mode 100644
index 467ad576..00000000
--- a/exampleSite/content/dev/alignments/search/search-left.md
+++ /dev/null
@@ -1,9 +0,0 @@
-+++
-fragment = "search"
-weight = 120
-background = "secondary"
-
-title = "Search Fragment"
-subtitle = "Searches through all content fragments"
-title_align = "left" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/search/search-right.md b/exampleSite/content/dev/alignments/search/search-right.md
deleted file mode 100644
index 1ab36360..00000000
--- a/exampleSite/content/dev/alignments/search/search-right.md
+++ /dev/null
@@ -1,9 +0,0 @@
-+++
-fragment = "search"
-weight = 122
-background = "secondary"
-
-title = "Search Fragment"
-subtitle = "Searches through all content fragments"
-title_align = "right" # Default is center, can be left, right or center
-+++
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-center.md b/exampleSite/content/dev/alignments/stripe/stripe-center.md
deleted file mode 100644
index a3c15d2f..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-center.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="center"
-
-fragment = "stripe"
-weight = 161
-background = "secondary"
-
-title = "Payment Fragment"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-left.md b/exampleSite/content/dev/alignments/stripe/stripe-left.md
deleted file mode 100644
index 626f779e..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-left.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="left"
-
-fragment = "stripe"
-weight = 160
-background = "secondary"
-
-title = "Payment Fragment"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-center.md b/exampleSite/content/dev/alignments/stripe/stripe-multi-price-center.md
deleted file mode 100644
index ab7c4d2b..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-center.md
+++ /dev/null
@@ -1,36 +0,0 @@
-+++
-title_align="center"
-
-fragment = "stripe"
-weight = 121
-background = "secondary"
-
-title = "Payment Fragment with Multiple Choices"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[[prices]]
- text = "30.00$"
- currency = "usd"
-
-[[prices]]
- text = "50.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-left.md b/exampleSite/content/dev/alignments/stripe/stripe-multi-price-left.md
deleted file mode 100644
index 999362be..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-left.md
+++ /dev/null
@@ -1,36 +0,0 @@
-+++
-title_align="left"
-
-fragment = "stripe"
-weight = 120
-background = "secondary"
-
-title = "Payment Fragment with Multiple Choices"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[[prices]]
- text = "30.00$"
- currency = "usd"
-
-[[prices]]
- text = "50.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-right.md b/exampleSite/content/dev/alignments/stripe/stripe-multi-price-right.md
deleted file mode 100644
index 973a9182..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-multi-price-right.md
+++ /dev/null
@@ -1,36 +0,0 @@
-+++
-title_align="right"
-
-fragment = "stripe"
-weight = 122
-background = "secondary"
-
-title = "Payment Fragment with Multiple Choices"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[[prices]]
- text = "30.00$"
- currency = "usd"
-
-[[prices]]
- text = "50.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-center.md b/exampleSite/content/dev/alignments/stripe/stripe-only-editable-center.md
deleted file mode 100644
index ab589f96..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-center.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="center"
-
-fragment = "stripe"
-weight = 141
-background = "secondary"
-
-title = "Payment Fragment with Custom Value"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-left.md b/exampleSite/content/dev/alignments/stripe/stripe-only-editable-left.md
deleted file mode 100644
index aec006ef..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-left.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="left"
-
-fragment = "stripe"
-weight = 140
-background = "secondary"
-
-title = "Payment Fragment with Custom Value"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-right.md b/exampleSite/content/dev/alignments/stripe/stripe-only-editable-right.md
deleted file mode 100644
index 20df1e7b..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-only-editable-right.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="right"
-
-fragment = "stripe"
-weight = 142
-background = "secondary"
-
-title = "Payment Fragment with Custom Value"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[user_input]
- default = "20.00"
- currencies = ['usd', 'eur', 'cad'] # First currency will be used as default
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/stripe/stripe-right.md b/exampleSite/content/dev/alignments/stripe/stripe-right.md
deleted file mode 100644
index 8e6f30b2..00000000
--- a/exampleSite/content/dev/alignments/stripe/stripe-right.md
+++ /dev/null
@@ -1,24 +0,0 @@
-+++
-title_align="right"
-
-fragment = "stripe"
-weight = 162
-background = "secondary"
-
-title = "Payment Fragment"
-subtitle = "Doesn't work in demo"
-
-post_url = "https://us-central1-syna-222118.cloudfunctions.net/function-1/charge"
-stripe_token = "pk_test_36PckiAlsGm9KmHj9b034GAW"
-
-product = "Example Product"
-
-[[prices]]
- text = "20.00$"
- currency = "usd"
-
-[fields.email]
- text = "Your email address"
-+++
-
-You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/alignments/table/table-center.md b/exampleSite/content/dev/alignments/table/table-center.md
deleted file mode 100644
index b61b93ef..00000000
--- a/exampleSite/content/dev/alignments/table/table-center.md
+++ /dev/null
@@ -1,78 +0,0 @@
-+++
-fragment = "table"
-#disabled = false
-date = "2017-10-10"
-weight = 121
-background = "secondary"
-
-title = "Table Fragment"
-subtitle= "Tables are responsive by default"
-title_align = "center" # Default is center, can be left, right or center
-
-[header]
- [[header.values]]
- text = "Header 1"
- # hide_on_mobile = true
-
- [[header.values]]
- text = "Header 2"
-
- [[header.values]]
- text = "Header 3"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 4"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "success"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "danger"
- align = "center"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- align = "center"
-+++
diff --git a/exampleSite/content/dev/alignments/table/table-left.md b/exampleSite/content/dev/alignments/table/table-left.md
deleted file mode 100644
index 3ea62568..00000000
--- a/exampleSite/content/dev/alignments/table/table-left.md
+++ /dev/null
@@ -1,78 +0,0 @@
-+++
-fragment = "table"
-#disabled = false
-date = "2017-10-10"
-weight = 120
-background = "secondary"
-
-title = "Table Fragment"
-subtitle= "Tables are responsive by default"
-title_align = "left" # Default is center, can be left, right or center
-
-[header]
- [[header.values]]
- text = "Header 1"
- # hide_on_mobile = true
-
- [[header.values]]
- text = "Header 2"
-
- [[header.values]]
- text = "Header 3"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 4"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "success"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "danger"
- align = "center"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- align = "center"
-+++
diff --git a/exampleSite/content/dev/alignments/table/table-right.md b/exampleSite/content/dev/alignments/table/table-right.md
deleted file mode 100644
index c85691b7..00000000
--- a/exampleSite/content/dev/alignments/table/table-right.md
+++ /dev/null
@@ -1,78 +0,0 @@
-+++
-fragment = "table"
-#disabled = false
-date = "2017-10-10"
-weight = 122
-background = "secondary"
-
-title = "Table Fragment"
-subtitle= "Tables are responsive by default"
-title_align = "right" # Default is center, can be left, right or center
-
-[header]
- [[header.values]]
- text = "Header 1"
- # hide_on_mobile = true
-
- [[header.values]]
- text = "Header 2"
-
- [[header.values]]
- text = "Header 3"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 4"
- hide_on_mobile = true
-
- [[header.values]]
- text = "Header 5"
-
- [[header.values]]
- text = "Header 6"
-
-[[rows]]
- [[rows.values]]
- header = "Row 1"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- button = "Long Button"
- url = "#"
- color = "success"
-
- [[rows.values]]
- button = "Button"
- url = "#"
- color = "danger"
- align = "center"
-
-[[rows]]
- [[rows.values]]
- header = "Row 2"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Value"
-
- [[rows.values]]
- text = "Long Value"
-
- [[rows.values]]
- text = ""
-
- [[rows.values]]
- icon = "fas fa-download"
- url = "#"
- align = "center"
-+++
diff --git a/exampleSite/content/dev/colors/_index/list.md b/exampleSite/content/dev/colors/_index/list.md
index bf9e182e..808b433d 100644
--- a/exampleSite/content/dev/colors/_index/list.md
+++ b/exampleSite/content/dev/colors/_index/list.md
@@ -1,7 +1,7 @@
+++
fragment = "list"
weight = 110
-section = "dev/colors"
+section = "dev/dev-colors"
count = 1000
summary = false
tiled = true
diff --git a/exampleSite/content/dev/colors/buttons/buttons-dark.md b/exampleSite/content/dev/colors/dev-buttons/buttons-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-dark.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-dark.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-light.md b/exampleSite/content/dev/colors/dev-buttons/buttons-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-light.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-light.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-outline-dark.md b/exampleSite/content/dev/colors/dev-buttons/buttons-outline-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-outline-dark.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-outline-dark.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-outline-light.md b/exampleSite/content/dev/colors/dev-buttons/buttons-outline-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-outline-light.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-outline-light.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-outline-primary.md b/exampleSite/content/dev/colors/dev-buttons/buttons-outline-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-outline-primary.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-outline-primary.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-outline-secondary.md b/exampleSite/content/dev/colors/dev-buttons/buttons-outline-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-outline-secondary.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-outline-secondary.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-outline-white.md b/exampleSite/content/dev/colors/dev-buttons/buttons-outline-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-outline-white.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-outline-white.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-primary.md b/exampleSite/content/dev/colors/dev-buttons/buttons-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-primary.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-primary.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-secondary.md b/exampleSite/content/dev/colors/dev-buttons/buttons-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-secondary.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-secondary.md
diff --git a/exampleSite/content/dev/colors/buttons/buttons-white.md b/exampleSite/content/dev/colors/dev-buttons/buttons-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/buttons-white.md
rename to exampleSite/content/dev/colors/dev-buttons/buttons-white.md
diff --git a/exampleSite/content/dev/colors/buttons/index.md b/exampleSite/content/dev/colors/dev-buttons/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/buttons/index.md
rename to exampleSite/content/dev/colors/dev-buttons/index.md
diff --git a/exampleSite/content/dev/colors/contact/contact-dark.md b/exampleSite/content/dev/colors/dev-contact/contact-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/contact-dark.md
rename to exampleSite/content/dev/colors/dev-contact/contact-dark.md
diff --git a/exampleSite/content/dev/colors/contact/contact-light.md b/exampleSite/content/dev/colors/dev-contact/contact-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/contact-light.md
rename to exampleSite/content/dev/colors/dev-contact/contact-light.md
diff --git a/exampleSite/content/dev/colors/contact/contact-primary.md b/exampleSite/content/dev/colors/dev-contact/contact-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/contact-primary.md
rename to exampleSite/content/dev/colors/dev-contact/contact-primary.md
diff --git a/exampleSite/content/dev/colors/contact/contact-secondary.md b/exampleSite/content/dev/colors/dev-contact/contact-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/contact-secondary.md
rename to exampleSite/content/dev/colors/dev-contact/contact-secondary.md
diff --git a/exampleSite/content/dev/colors/contact/contact-white.md b/exampleSite/content/dev/colors/dev-contact/contact-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/contact-white.md
rename to exampleSite/content/dev/colors/dev-contact/contact-white.md
diff --git a/exampleSite/content/dev/colors/contact/index.md b/exampleSite/content/dev/colors/dev-contact/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/contact/index.md
rename to exampleSite/content/dev/colors/dev-contact/index.md
diff --git a/exampleSite/content/dev/colors/content/content-dark.md b/exampleSite/content/dev/colors/dev-content/content-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-dark.md
rename to exampleSite/content/dev/colors/dev-content/content-dark.md
diff --git a/exampleSite/content/dev/colors/content/content-light.md b/exampleSite/content/dev/colors/dev-content/content-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-light.md
rename to exampleSite/content/dev/colors/dev-content/content-light.md
diff --git a/exampleSite/content/dev/colors/content/content-primary.md b/exampleSite/content/dev/colors/dev-content/content-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-primary.md
rename to exampleSite/content/dev/colors/dev-content/content-primary.md
diff --git a/exampleSite/content/dev/colors/content/content-secondary.md b/exampleSite/content/dev/colors/dev-content/content-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-secondary.md
rename to exampleSite/content/dev/colors/dev-content/content-secondary.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-dark.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-dark.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-dark.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-light.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-light.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-light.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-primary.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-primary.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-primary.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-right-dark.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-right-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-right-dark.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-right-dark.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-right-light.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-right-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-right-light.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-right-light.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-right-primary.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-right-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-right-primary.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-right-primary.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-right-secondary.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-right-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-right-secondary.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-right-secondary.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-right-white.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-right-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-right-white.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-right-white.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-secondary.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-secondary.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-secondary.md
diff --git a/exampleSite/content/dev/colors/content/content-sidebar-white.md b/exampleSite/content/dev/colors/dev-content/content-sidebar-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-sidebar-white.md
rename to exampleSite/content/dev/colors/dev-content/content-sidebar-white.md
diff --git a/exampleSite/content/dev/colors/content/content-white.md b/exampleSite/content/dev/colors/dev-content/content-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/content-white.md
rename to exampleSite/content/dev/colors/dev-content/content-white.md
diff --git a/exampleSite/content/dev/colors/content/index.md b/exampleSite/content/dev/colors/dev-content/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/content/index.md
rename to exampleSite/content/dev/colors/dev-content/index.md
diff --git a/exampleSite/content/dev/colors/copyright/copyright-example-dark.md b/exampleSite/content/dev/colors/dev-copyright/copyright-example-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/copyright-example-dark.md
rename to exampleSite/content/dev/colors/dev-copyright/copyright-example-dark.md
diff --git a/exampleSite/content/dev/colors/copyright/copyright-example-light.md b/exampleSite/content/dev/colors/dev-copyright/copyright-example-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/copyright-example-light.md
rename to exampleSite/content/dev/colors/dev-copyright/copyright-example-light.md
diff --git a/exampleSite/content/dev/colors/copyright/copyright-example-primary.md b/exampleSite/content/dev/colors/dev-copyright/copyright-example-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/copyright-example-primary.md
rename to exampleSite/content/dev/colors/dev-copyright/copyright-example-primary.md
diff --git a/exampleSite/content/dev/colors/copyright/copyright-example-secondary.md b/exampleSite/content/dev/colors/dev-copyright/copyright-example-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/copyright-example-secondary.md
rename to exampleSite/content/dev/colors/dev-copyright/copyright-example-secondary.md
diff --git a/exampleSite/content/dev/colors/copyright/copyright-example-white.md b/exampleSite/content/dev/colors/dev-copyright/copyright-example-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/copyright-example-white.md
rename to exampleSite/content/dev/colors/dev-copyright/copyright-example-white.md
diff --git a/exampleSite/content/dev/colors/copyright/index.md b/exampleSite/content/dev/colors/dev-copyright/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/copyright/index.md
rename to exampleSite/content/dev/colors/dev-copyright/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-dark/index.md b/exampleSite/content/dev/colors/dev-editor/editor-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-dark/index.md
rename to exampleSite/content/dev/colors/dev-editor/editor-dark/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-dark/schema.json b/exampleSite/content/dev/colors/dev-editor/editor-dark/schema.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-dark/schema.json
rename to exampleSite/content/dev/colors/dev-editor/editor-dark/schema.json
diff --git a/exampleSite/content/dev/colors/editor/editor-dark/ui.json b/exampleSite/content/dev/colors/dev-editor/editor-dark/ui.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-dark/ui.json
rename to exampleSite/content/dev/colors/dev-editor/editor-dark/ui.json
diff --git a/exampleSite/content/dev/colors/editor/editor-light/index.md b/exampleSite/content/dev/colors/dev-editor/editor-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-light/index.md
rename to exampleSite/content/dev/colors/dev-editor/editor-light/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-light/schema.json b/exampleSite/content/dev/colors/dev-editor/editor-light/schema.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-light/schema.json
rename to exampleSite/content/dev/colors/dev-editor/editor-light/schema.json
diff --git a/exampleSite/content/dev/colors/editor/editor-light/ui.json b/exampleSite/content/dev/colors/dev-editor/editor-light/ui.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-light/ui.json
rename to exampleSite/content/dev/colors/dev-editor/editor-light/ui.json
diff --git a/exampleSite/content/dev/colors/editor/editor-primary/index.md b/exampleSite/content/dev/colors/dev-editor/editor-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-primary/index.md
rename to exampleSite/content/dev/colors/dev-editor/editor-primary/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-primary/schema.json b/exampleSite/content/dev/colors/dev-editor/editor-primary/schema.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-primary/schema.json
rename to exampleSite/content/dev/colors/dev-editor/editor-primary/schema.json
diff --git a/exampleSite/content/dev/colors/editor/editor-primary/ui.json b/exampleSite/content/dev/colors/dev-editor/editor-primary/ui.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-primary/ui.json
rename to exampleSite/content/dev/colors/dev-editor/editor-primary/ui.json
diff --git a/exampleSite/content/dev/colors/editor/editor-secondary/index.md b/exampleSite/content/dev/colors/dev-editor/editor-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-secondary/index.md
rename to exampleSite/content/dev/colors/dev-editor/editor-secondary/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-secondary/schema.json b/exampleSite/content/dev/colors/dev-editor/editor-secondary/schema.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-secondary/schema.json
rename to exampleSite/content/dev/colors/dev-editor/editor-secondary/schema.json
diff --git a/exampleSite/content/dev/colors/editor/editor-secondary/ui.json b/exampleSite/content/dev/colors/dev-editor/editor-secondary/ui.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-secondary/ui.json
rename to exampleSite/content/dev/colors/dev-editor/editor-secondary/ui.json
diff --git a/exampleSite/content/dev/colors/editor/editor-white/index.md b/exampleSite/content/dev/colors/dev-editor/editor-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-white/index.md
rename to exampleSite/content/dev/colors/dev-editor/editor-white/index.md
diff --git a/exampleSite/content/dev/colors/editor/editor-white/schema.json b/exampleSite/content/dev/colors/dev-editor/editor-white/schema.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-white/schema.json
rename to exampleSite/content/dev/colors/dev-editor/editor-white/schema.json
diff --git a/exampleSite/content/dev/colors/editor/editor-white/ui.json b/exampleSite/content/dev/colors/dev-editor/editor-white/ui.json
similarity index 100%
rename from exampleSite/content/dev/colors/editor/editor-white/ui.json
rename to exampleSite/content/dev/colors/dev-editor/editor-white/ui.json
diff --git a/exampleSite/content/dev/colors/editor/index.md b/exampleSite/content/dev/colors/dev-editor/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/editor/index.md
rename to exampleSite/content/dev/colors/dev-editor/index.md
diff --git a/exampleSite/content/dev/colors/embed/embed_subscribe-dark.md b/exampleSite/content/dev/colors/dev-embed/embed_subscribe-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/embed_subscribe-dark.md
rename to exampleSite/content/dev/colors/dev-embed/embed_subscribe-dark.md
diff --git a/exampleSite/content/dev/colors/embed/embed_subscribe-light.md b/exampleSite/content/dev/colors/dev-embed/embed_subscribe-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/embed_subscribe-light.md
rename to exampleSite/content/dev/colors/dev-embed/embed_subscribe-light.md
diff --git a/exampleSite/content/dev/colors/embed/embed_subscribe-primary.md b/exampleSite/content/dev/colors/dev-embed/embed_subscribe-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/embed_subscribe-primary.md
rename to exampleSite/content/dev/colors/dev-embed/embed_subscribe-primary.md
diff --git a/exampleSite/content/dev/colors/embed/embed_subscribe-secondary.md b/exampleSite/content/dev/colors/dev-embed/embed_subscribe-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/embed_subscribe-secondary.md
rename to exampleSite/content/dev/colors/dev-embed/embed_subscribe-secondary.md
diff --git a/exampleSite/content/dev/colors/embed/embed_subscribe-white.md b/exampleSite/content/dev/colors/dev-embed/embed_subscribe-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/embed_subscribe-white.md
rename to exampleSite/content/dev/colors/dev-embed/embed_subscribe-white.md
diff --git a/exampleSite/content/dev/colors/embed/index.md b/exampleSite/content/dev/colors/dev-embed/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/embed/index.md
rename to exampleSite/content/dev/colors/dev-embed/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-dark/index.md b/exampleSite/content/dev/colors/dev-faq/faq-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-dark/index.md
rename to exampleSite/content/dev/colors/dev-faq/faq-dark/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-dark/question1.md b/exampleSite/content/dev/colors/dev-faq/faq-dark/question1.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-dark/question1.md
rename to exampleSite/content/dev/colors/dev-faq/faq-dark/question1.md
diff --git a/exampleSite/content/dev/colors/faq/faq-dark/question2.md b/exampleSite/content/dev/colors/dev-faq/faq-dark/question2.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-dark/question2.md
rename to exampleSite/content/dev/colors/dev-faq/faq-dark/question2.md
diff --git a/exampleSite/content/dev/colors/faq/faq-dark/question3.md b/exampleSite/content/dev/colors/dev-faq/faq-dark/question3.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-dark/question3.md
rename to exampleSite/content/dev/colors/dev-faq/faq-dark/question3.md
diff --git a/exampleSite/content/dev/colors/faq/faq-light/index.md b/exampleSite/content/dev/colors/dev-faq/faq-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-light/index.md
rename to exampleSite/content/dev/colors/dev-faq/faq-light/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-light/question1.md b/exampleSite/content/dev/colors/dev-faq/faq-light/question1.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-light/question1.md
rename to exampleSite/content/dev/colors/dev-faq/faq-light/question1.md
diff --git a/exampleSite/content/dev/colors/faq/faq-light/question2.md b/exampleSite/content/dev/colors/dev-faq/faq-light/question2.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-light/question2.md
rename to exampleSite/content/dev/colors/dev-faq/faq-light/question2.md
diff --git a/exampleSite/content/dev/colors/faq/faq-light/question3.md b/exampleSite/content/dev/colors/dev-faq/faq-light/question3.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-light/question3.md
rename to exampleSite/content/dev/colors/dev-faq/faq-light/question3.md
diff --git a/exampleSite/content/dev/colors/faq/faq-primary/index.md b/exampleSite/content/dev/colors/dev-faq/faq-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-primary/index.md
rename to exampleSite/content/dev/colors/dev-faq/faq-primary/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-primary/question1.md b/exampleSite/content/dev/colors/dev-faq/faq-primary/question1.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-primary/question1.md
rename to exampleSite/content/dev/colors/dev-faq/faq-primary/question1.md
diff --git a/exampleSite/content/dev/colors/faq/faq-primary/question2.md b/exampleSite/content/dev/colors/dev-faq/faq-primary/question2.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-primary/question2.md
rename to exampleSite/content/dev/colors/dev-faq/faq-primary/question2.md
diff --git a/exampleSite/content/dev/colors/faq/faq-primary/question3.md b/exampleSite/content/dev/colors/dev-faq/faq-primary/question3.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-primary/question3.md
rename to exampleSite/content/dev/colors/dev-faq/faq-primary/question3.md
diff --git a/exampleSite/content/dev/colors/faq/faq-secondary/index.md b/exampleSite/content/dev/colors/dev-faq/faq-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-secondary/index.md
rename to exampleSite/content/dev/colors/dev-faq/faq-secondary/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-secondary/question1.md b/exampleSite/content/dev/colors/dev-faq/faq-secondary/question1.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-secondary/question1.md
rename to exampleSite/content/dev/colors/dev-faq/faq-secondary/question1.md
diff --git a/exampleSite/content/dev/colors/faq/faq-secondary/question2.md b/exampleSite/content/dev/colors/dev-faq/faq-secondary/question2.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-secondary/question2.md
rename to exampleSite/content/dev/colors/dev-faq/faq-secondary/question2.md
diff --git a/exampleSite/content/dev/colors/faq/faq-secondary/question3.md b/exampleSite/content/dev/colors/dev-faq/faq-secondary/question3.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-secondary/question3.md
rename to exampleSite/content/dev/colors/dev-faq/faq-secondary/question3.md
diff --git a/exampleSite/content/dev/colors/faq/faq-white/index.md b/exampleSite/content/dev/colors/dev-faq/faq-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-white/index.md
rename to exampleSite/content/dev/colors/dev-faq/faq-white/index.md
diff --git a/exampleSite/content/dev/colors/faq/faq-white/question1.md b/exampleSite/content/dev/colors/dev-faq/faq-white/question1.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-white/question1.md
rename to exampleSite/content/dev/colors/dev-faq/faq-white/question1.md
diff --git a/exampleSite/content/dev/colors/faq/faq-white/question2.md b/exampleSite/content/dev/colors/dev-faq/faq-white/question2.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-white/question2.md
rename to exampleSite/content/dev/colors/dev-faq/faq-white/question2.md
diff --git a/exampleSite/content/dev/colors/faq/faq-white/question3.md b/exampleSite/content/dev/colors/dev-faq/faq-white/question3.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/faq-white/question3.md
rename to exampleSite/content/dev/colors/dev-faq/faq-white/question3.md
diff --git a/exampleSite/content/dev/colors/faq/index.md b/exampleSite/content/dev/colors/dev-faq/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/faq/index.md
rename to exampleSite/content/dev/colors/dev-faq/index.md
diff --git a/exampleSite/content/dev/colors/footer/footer-example-dark.md b/exampleSite/content/dev/colors/dev-footer/footer-example-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/footer-example-dark.md
rename to exampleSite/content/dev/colors/dev-footer/footer-example-dark.md
diff --git a/exampleSite/content/dev/colors/footer/footer-example-light.md b/exampleSite/content/dev/colors/dev-footer/footer-example-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/footer-example-light.md
rename to exampleSite/content/dev/colors/dev-footer/footer-example-light.md
diff --git a/exampleSite/content/dev/colors/footer/footer-example-primary.md b/exampleSite/content/dev/colors/dev-footer/footer-example-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/footer-example-primary.md
rename to exampleSite/content/dev/colors/dev-footer/footer-example-primary.md
diff --git a/exampleSite/content/dev/colors/footer/footer-example-secondary.md b/exampleSite/content/dev/colors/dev-footer/footer-example-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/footer-example-secondary.md
rename to exampleSite/content/dev/colors/dev-footer/footer-example-secondary.md
diff --git a/exampleSite/content/dev/colors/footer/footer-example-white.md b/exampleSite/content/dev/colors/dev-footer/footer-example-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/footer-example-white.md
rename to exampleSite/content/dev/colors/dev-footer/footer-example-white.md
diff --git a/exampleSite/content/dev/colors/footer/index.md b/exampleSite/content/dev/colors/dev-footer/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/footer/index.md
rename to exampleSite/content/dev/colors/dev-footer/index.md
diff --git a/exampleSite/content/dev/colors/graph/graph-dark/config.json b/exampleSite/content/dev/colors/dev-graph/graph-dark/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-dark/config.json
rename to exampleSite/content/dev/colors/dev-graph/graph-dark/config.json
diff --git a/exampleSite/content/dev/colors/graph/graph-dark/index.md b/exampleSite/content/dev/colors/dev-graph/graph-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-dark/index.md
rename to exampleSite/content/dev/colors/dev-graph/graph-dark/index.md
diff --git a/exampleSite/content/dev/colors/graph/graph-light/config.json b/exampleSite/content/dev/colors/dev-graph/graph-light/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-light/config.json
rename to exampleSite/content/dev/colors/dev-graph/graph-light/config.json
diff --git a/exampleSite/content/dev/colors/graph/graph-light/index.md b/exampleSite/content/dev/colors/dev-graph/graph-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-light/index.md
rename to exampleSite/content/dev/colors/dev-graph/graph-light/index.md
diff --git a/exampleSite/content/dev/colors/graph/graph-primary/config.json b/exampleSite/content/dev/colors/dev-graph/graph-primary/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-primary/config.json
rename to exampleSite/content/dev/colors/dev-graph/graph-primary/config.json
diff --git a/exampleSite/content/dev/colors/graph/graph-primary/index.md b/exampleSite/content/dev/colors/dev-graph/graph-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-primary/index.md
rename to exampleSite/content/dev/colors/dev-graph/graph-primary/index.md
diff --git a/exampleSite/content/dev/colors/graph/graph-secondary/config.json b/exampleSite/content/dev/colors/dev-graph/graph-secondary/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-secondary/config.json
rename to exampleSite/content/dev/colors/dev-graph/graph-secondary/config.json
diff --git a/exampleSite/content/dev/colors/graph/graph-secondary/index.md b/exampleSite/content/dev/colors/dev-graph/graph-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-secondary/index.md
rename to exampleSite/content/dev/colors/dev-graph/graph-secondary/index.md
diff --git a/exampleSite/content/dev/colors/graph/graph-white/config.json b/exampleSite/content/dev/colors/dev-graph/graph-white/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-white/config.json
rename to exampleSite/content/dev/colors/dev-graph/graph-white/config.json
diff --git a/exampleSite/content/dev/colors/graph/graph-white/index.md b/exampleSite/content/dev/colors/dev-graph/graph-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/graph-white/index.md
rename to exampleSite/content/dev/colors/dev-graph/graph-white/index.md
diff --git a/exampleSite/content/dev/colors/graph/index.md b/exampleSite/content/dev/colors/dev-graph/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/graph/index.md
rename to exampleSite/content/dev/colors/dev-graph/index.md
diff --git a/exampleSite/content/dev/colors/header/header-dark.md b/exampleSite/content/dev/colors/dev-header/header-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/header-dark.md
rename to exampleSite/content/dev/colors/dev-header/header-dark.md
diff --git a/exampleSite/content/dev/colors/header/header-light.md b/exampleSite/content/dev/colors/dev-header/header-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/header-light.md
rename to exampleSite/content/dev/colors/dev-header/header-light.md
diff --git a/exampleSite/content/dev/colors/header/header-primary.md b/exampleSite/content/dev/colors/dev-header/header-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/header-primary.md
rename to exampleSite/content/dev/colors/dev-header/header-primary.md
diff --git a/exampleSite/content/dev/colors/header/header-secondary.md b/exampleSite/content/dev/colors/dev-header/header-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/header-secondary.md
rename to exampleSite/content/dev/colors/dev-header/header-secondary.md
diff --git a/exampleSite/content/dev/colors/header/header-white.md b/exampleSite/content/dev/colors/dev-header/header-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/header-white.md
rename to exampleSite/content/dev/colors/dev-header/header-white.md
diff --git a/exampleSite/content/dev/colors/header/index.md b/exampleSite/content/dev/colors/dev-header/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/header/index.md
rename to exampleSite/content/dev/colors/dev-header/index.md
diff --git a/exampleSite/content/dev/colors/hero/hero-secondary/config.json b/exampleSite/content/dev/colors/dev-hero/hero-dark/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-secondary/config.json
rename to exampleSite/content/dev/colors/dev-hero/hero-dark/config.json
diff --git a/exampleSite/content/dev/colors/hero/hero-dark/index.md b/exampleSite/content/dev/colors/dev-hero/hero-dark/index.md
similarity index 89%
rename from exampleSite/content/dev/colors/hero/hero-dark/index.md
rename to exampleSite/content/dev/colors/dev-hero/hero-dark/index.md
index 96a49212..244f139a 100644
--- a/exampleSite/content/dev/colors/hero/hero-dark/index.md
+++ b/exampleSite/content/dev/colors/dev-hero/hero-dark/index.md
@@ -5,6 +5,7 @@ date = "2016-09-07"
weight = 143
background = "dark"
particles = true
+#minHeight = "calc(100vh - 56px)" # optional - changes hero fragment's minimum height
#title_page = true # Default is false
title = "Syna Theme"
diff --git a/exampleSite/content/dev/colors/hero/hero-dark/logo.svg b/exampleSite/content/dev/colors/dev-hero/hero-dark/logo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-dark/logo.svg
rename to exampleSite/content/dev/colors/dev-hero/hero-dark/logo.svg
diff --git a/exampleSite/content/dev/colors/hero/hero-white/config.json b/exampleSite/content/dev/colors/dev-hero/hero-light/config.json
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-white/config.json
rename to exampleSite/content/dev/colors/dev-hero/hero-light/config.json
diff --git a/exampleSite/content/dev/colors/hero/hero-light/index.md b/exampleSite/content/dev/colors/dev-hero/hero-light/index.md
similarity index 89%
rename from exampleSite/content/dev/colors/hero/hero-light/index.md
rename to exampleSite/content/dev/colors/dev-hero/hero-light/index.md
index 39851279..ae4a7d3b 100644
--- a/exampleSite/content/dev/colors/hero/hero-light/index.md
+++ b/exampleSite/content/dev/colors/dev-hero/hero-light/index.md
@@ -5,6 +5,7 @@ date = "2016-09-07"
weight = 141
background = "light"
particles = true
+#minHeight = "calc(100vh - 56px)" # optional - changes hero fragment's minimum height
#title_page = true # Default is false
title = "Syna Theme"
diff --git a/exampleSite/content/dev/colors/hero/hero-light/logo.svg b/exampleSite/content/dev/colors/dev-hero/hero-light/logo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-light/logo.svg
rename to exampleSite/content/dev/colors/dev-hero/hero-light/logo.svg
diff --git a/exampleSite/content/dev/alignments/hero/hero-center/config.json b/exampleSite/content/dev/colors/dev-hero/hero-primary/config.json
similarity index 96%
rename from exampleSite/content/dev/alignments/hero/hero-center/config.json
rename to exampleSite/content/dev/colors/dev-hero/hero-primary/config.json
index db5f0637..f4cc6ff1 100644
--- a/exampleSite/content/dev/alignments/hero/hero-center/config.json
+++ b/exampleSite/content/dev/colors/dev-hero/hero-primary/config.json
@@ -13,11 +13,11 @@
"shape": {
"type": "circle",
"stroke": {
- "width": 4,
+ "width": 0,
"color": "#000000"
},
"polygon": {
- "nb_sides": 3
+ "nb_sides": 5
},
"image": {
"src": "img/github.svg",
@@ -36,7 +36,7 @@
}
},
"size": {
- "value": 15.782952832645451,
+ "value": 3,
"random": true,
"anim": {
"enable": false,
diff --git a/exampleSite/content/dev/colors/hero/hero-primary/index.md b/exampleSite/content/dev/colors/dev-hero/hero-primary/index.md
similarity index 89%
rename from exampleSite/content/dev/colors/hero/hero-primary/index.md
rename to exampleSite/content/dev/colors/dev-hero/hero-primary/index.md
index 45dc69ea..2bdd2aad 100644
--- a/exampleSite/content/dev/colors/hero/hero-primary/index.md
+++ b/exampleSite/content/dev/colors/dev-hero/hero-primary/index.md
@@ -5,6 +5,7 @@ date = "2016-09-07"
weight = 144
background = "primary"
particles = true
+#minHeight = "calc(100vh - 56px)" # optional - changes hero fragment's minimum height
#title_page = true # Default is false
title = "Syna Theme"
diff --git a/exampleSite/content/dev/colors/hero/hero-primary/logo.svg b/exampleSite/content/dev/colors/dev-hero/hero-primary/logo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-primary/logo.svg
rename to exampleSite/content/dev/colors/dev-hero/hero-primary/logo.svg
diff --git a/exampleSite/content/dev/alignments/hero/hero-left/config.json b/exampleSite/content/dev/colors/dev-hero/hero-secondary/config.json
similarity index 96%
rename from exampleSite/content/dev/alignments/hero/hero-left/config.json
rename to exampleSite/content/dev/colors/dev-hero/hero-secondary/config.json
index db5f0637..f4cc6ff1 100644
--- a/exampleSite/content/dev/alignments/hero/hero-left/config.json
+++ b/exampleSite/content/dev/colors/dev-hero/hero-secondary/config.json
@@ -13,11 +13,11 @@
"shape": {
"type": "circle",
"stroke": {
- "width": 4,
+ "width": 0,
"color": "#000000"
},
"polygon": {
- "nb_sides": 3
+ "nb_sides": 5
},
"image": {
"src": "img/github.svg",
@@ -36,7 +36,7 @@
}
},
"size": {
- "value": 15.782952832645451,
+ "value": 3,
"random": true,
"anim": {
"enable": false,
diff --git a/exampleSite/content/dev/colors/hero/hero-secondary/index.md b/exampleSite/content/dev/colors/dev-hero/hero-secondary/index.md
similarity index 89%
rename from exampleSite/content/dev/colors/hero/hero-secondary/index.md
rename to exampleSite/content/dev/colors/dev-hero/hero-secondary/index.md
index d704ae72..09d507d8 100644
--- a/exampleSite/content/dev/colors/hero/hero-secondary/index.md
+++ b/exampleSite/content/dev/colors/dev-hero/hero-secondary/index.md
@@ -5,6 +5,7 @@ date = "2016-09-07"
weight = 142
background = "secondary"
particles = true
+#minHeight = "calc(100vh - 56px)" # optional - changes hero fragment's minimum height
#title_page = true # Default is false
title = "Syna Theme"
diff --git a/exampleSite/content/dev/colors/hero/hero-secondary/logo.svg b/exampleSite/content/dev/colors/dev-hero/hero-secondary/logo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-secondary/logo.svg
rename to exampleSite/content/dev/colors/dev-hero/hero-secondary/logo.svg
diff --git a/exampleSite/content/dev/alignments/hero/hero-right/config.json b/exampleSite/content/dev/colors/dev-hero/hero-white/config.json
similarity index 96%
rename from exampleSite/content/dev/alignments/hero/hero-right/config.json
rename to exampleSite/content/dev/colors/dev-hero/hero-white/config.json
index db5f0637..f4cc6ff1 100644
--- a/exampleSite/content/dev/alignments/hero/hero-right/config.json
+++ b/exampleSite/content/dev/colors/dev-hero/hero-white/config.json
@@ -13,11 +13,11 @@
"shape": {
"type": "circle",
"stroke": {
- "width": 4,
+ "width": 0,
"color": "#000000"
},
"polygon": {
- "nb_sides": 3
+ "nb_sides": 5
},
"image": {
"src": "img/github.svg",
@@ -36,7 +36,7 @@
}
},
"size": {
- "value": 15.782952832645451,
+ "value": 3,
"random": true,
"anim": {
"enable": false,
diff --git a/exampleSite/content/dev/colors/hero/hero-white/index.md b/exampleSite/content/dev/colors/dev-hero/hero-white/index.md
similarity index 89%
rename from exampleSite/content/dev/colors/hero/hero-white/index.md
rename to exampleSite/content/dev/colors/dev-hero/hero-white/index.md
index fde54dfd..742d89fe 100644
--- a/exampleSite/content/dev/colors/hero/hero-white/index.md
+++ b/exampleSite/content/dev/colors/dev-hero/hero-white/index.md
@@ -5,6 +5,7 @@ date = "2016-09-07"
weight = 140
background = "white"
particles = true
+#minHeight = "calc(100vh - 56px)" # optional - changes hero fragment's minimum height
#title_page = true # Default is false
title = "Syna Theme"
diff --git a/exampleSite/content/dev/colors/hero/hero-white/logo.svg b/exampleSite/content/dev/colors/dev-hero/hero-white/logo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/hero/hero-white/logo.svg
rename to exampleSite/content/dev/colors/dev-hero/hero-white/logo.svg
diff --git a/exampleSite/content/dev/colors/hero/index.md b/exampleSite/content/dev/colors/dev-hero/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/hero/index.md
rename to exampleSite/content/dev/colors/dev-hero/index.md
diff --git a/exampleSite/content/dev/colors/item/index.md b/exampleSite/content/dev/colors/dev-item/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/index.md
rename to exampleSite/content/dev/colors/dev-item/index.md
diff --git a/exampleSite/content/dev/colors/item/item_button-center-dark.md b/exampleSite/content/dev/colors/dev-item/item_button-center-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-center-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_button-center-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_button-center-light.md b/exampleSite/content/dev/colors/dev-item/item_button-center-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-center-light.md
rename to exampleSite/content/dev/colors/dev-item/item_button-center-light.md
diff --git a/exampleSite/content/dev/colors/item/item_button-center-primary.md b/exampleSite/content/dev/colors/dev-item/item_button-center-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-center-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-center-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-center-secondary.md b/exampleSite/content/dev/colors/dev-item/item_button-center-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-center-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-center-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-center-white.md b/exampleSite/content/dev/colors/dev-item/item_button-center-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-center-white.md
rename to exampleSite/content/dev/colors/dev-item/item_button-center-white.md
diff --git a/exampleSite/content/dev/colors/item/item_button-left-dark.md b/exampleSite/content/dev/colors/dev-item/item_button-left-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-left-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_button-left-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_button-left-light.md b/exampleSite/content/dev/colors/dev-item/item_button-left-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-left-light.md
rename to exampleSite/content/dev/colors/dev-item/item_button-left-light.md
diff --git a/exampleSite/content/dev/colors/item/item_button-left-primary.md b/exampleSite/content/dev/colors/dev-item/item_button-left-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-left-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-left-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-left-secondary.md b/exampleSite/content/dev/colors/dev-item/item_button-left-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-left-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-left-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-left-white.md b/exampleSite/content/dev/colors/dev-item/item_button-left-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-left-white.md
rename to exampleSite/content/dev/colors/dev-item/item_button-left-white.md
diff --git a/exampleSite/content/dev/colors/item/item_button-right-dark.md b/exampleSite/content/dev/colors/dev-item/item_button-right-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-right-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_button-right-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_button-right-light.md b/exampleSite/content/dev/colors/dev-item/item_button-right-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-right-light.md
rename to exampleSite/content/dev/colors/dev-item/item_button-right-light.md
diff --git a/exampleSite/content/dev/colors/item/item_button-right-primary.md b/exampleSite/content/dev/colors/dev-item/item_button-right-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-right-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-right-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-right-secondary.md b/exampleSite/content/dev/colors/dev-item/item_button-right-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-right-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_button-right-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_button-right-white.md b/exampleSite/content/dev/colors/dev-item/item_button-right-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_button-right-white.md
rename to exampleSite/content/dev/colors/dev-item/item_button-right-white.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-center-dark.md b/exampleSite/content/dev/colors/dev-item/item_icon-center-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-center-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-center-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-center-light.md b/exampleSite/content/dev/colors/dev-item/item_icon-center-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-center-light.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-center-light.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-center-primary.md b/exampleSite/content/dev/colors/dev-item/item_icon-center-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-center-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-center-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-center-secondary.md b/exampleSite/content/dev/colors/dev-item/item_icon-center-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-center-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-center-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-center-white.md b/exampleSite/content/dev/colors/dev-item/item_icon-center-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-center-white.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-center-white.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-left-dark.md b/exampleSite/content/dev/colors/dev-item/item_icon-left-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-left-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-left-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-left-light.md b/exampleSite/content/dev/colors/dev-item/item_icon-left-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-left-light.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-left-light.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-left-primary.md b/exampleSite/content/dev/colors/dev-item/item_icon-left-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-left-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-left-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-left-secondary.md b/exampleSite/content/dev/colors/dev-item/item_icon-left-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-left-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-left-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-left-white.md b/exampleSite/content/dev/colors/dev-item/item_icon-left-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-left-white.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-left-white.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-right-dark.md b/exampleSite/content/dev/colors/dev-item/item_icon-right-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-right-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-right-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-right-light.md b/exampleSite/content/dev/colors/dev-item/item_icon-right-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-right-light.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-right-light.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-right-primary.md b/exampleSite/content/dev/colors/dev-item/item_icon-right-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-right-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-right-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-right-secondary.md b/exampleSite/content/dev/colors/dev-item/item_icon-right-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-right-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-right-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_icon-right-white.md b/exampleSite/content/dev/colors/dev-item/item_icon-right-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_icon-right-white.md
rename to exampleSite/content/dev/colors/dev-item/item_icon-right-white.md
diff --git a/exampleSite/content/dev/colors/item/item_image-button-left-dark.md b/exampleSite/content/dev/colors/dev-item/item_image-button-left-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-button-left-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_image-button-left-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_image-button-left-light.md b/exampleSite/content/dev/colors/dev-item/item_image-button-left-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-button-left-light.md
rename to exampleSite/content/dev/colors/dev-item/item_image-button-left-light.md
diff --git a/exampleSite/content/dev/colors/item/item_image-button-left-primary.md b/exampleSite/content/dev/colors/dev-item/item_image-button-left-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-button-left-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-button-left-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-button-left-secondary.md b/exampleSite/content/dev/colors/dev-item/item_image-button-left-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-button-left-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-button-left-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-button-left-white.md b/exampleSite/content/dev/colors/dev-item/item_image-button-left-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-button-left-white.md
rename to exampleSite/content/dev/colors/dev-item/item_image-button-left-white.md
diff --git a/exampleSite/content/dev/colors/item/item_image-center-dark.md b/exampleSite/content/dev/colors/dev-item/item_image-center-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-center-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_image-center-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_image-center-light.md b/exampleSite/content/dev/colors/dev-item/item_image-center-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-center-light.md
rename to exampleSite/content/dev/colors/dev-item/item_image-center-light.md
diff --git a/exampleSite/content/dev/colors/item/item_image-center-primary.md b/exampleSite/content/dev/colors/dev-item/item_image-center-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-center-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-center-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-center-secondary.md b/exampleSite/content/dev/colors/dev-item/item_image-center-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-center-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-center-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-center-white.md b/exampleSite/content/dev/colors/dev-item/item_image-center-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-center-white.md
rename to exampleSite/content/dev/colors/dev-item/item_image-center-white.md
diff --git a/exampleSite/content/dev/colors/item/item_image-only-dark.md b/exampleSite/content/dev/colors/dev-item/item_image-only-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-only-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_image-only-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_image-only-light.md b/exampleSite/content/dev/colors/dev-item/item_image-only-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-only-light.md
rename to exampleSite/content/dev/colors/dev-item/item_image-only-light.md
diff --git a/exampleSite/content/dev/colors/item/item_image-only-primary.md b/exampleSite/content/dev/colors/dev-item/item_image-only-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-only-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-only-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-only-secondary.md b/exampleSite/content/dev/colors/dev-item/item_image-only-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-only-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-only-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-only-white.md b/exampleSite/content/dev/colors/dev-item/item_image-only-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-only-white.md
rename to exampleSite/content/dev/colors/dev-item/item_image-only-white.md
diff --git a/exampleSite/content/dev/colors/item/item_image-right-dark.md b/exampleSite/content/dev/colors/dev-item/item_image-right-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-right-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_image-right-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_image-right-light.md b/exampleSite/content/dev/colors/dev-item/item_image-right-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-right-light.md
rename to exampleSite/content/dev/colors/dev-item/item_image-right-light.md
diff --git a/exampleSite/content/dev/colors/item/item_image-right-primary.md b/exampleSite/content/dev/colors/dev-item/item_image-right-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-right-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-right-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-right-secondary.md b/exampleSite/content/dev/colors/dev-item/item_image-right-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-right-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-right-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-right-white.md b/exampleSite/content/dev/colors/dev-item/item_image-right-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-right-white.md
rename to exampleSite/content/dev/colors/dev-item/item_image-right-white.md
diff --git a/exampleSite/content/dev/colors/item/item_image-table-left-dark.md b/exampleSite/content/dev/colors/dev-item/item_image-table-left-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-table-left-dark.md
rename to exampleSite/content/dev/colors/dev-item/item_image-table-left-dark.md
diff --git a/exampleSite/content/dev/colors/item/item_image-table-left-light.md b/exampleSite/content/dev/colors/dev-item/item_image-table-left-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-table-left-light.md
rename to exampleSite/content/dev/colors/dev-item/item_image-table-left-light.md
diff --git a/exampleSite/content/dev/colors/item/item_image-table-left-primary.md b/exampleSite/content/dev/colors/dev-item/item_image-table-left-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-table-left-primary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-table-left-primary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-table-left-secondary.md b/exampleSite/content/dev/colors/dev-item/item_image-table-left-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-table-left-secondary.md
rename to exampleSite/content/dev/colors/dev-item/item_image-table-left-secondary.md
diff --git a/exampleSite/content/dev/colors/item/item_image-table-left-white.md b/exampleSite/content/dev/colors/dev-item/item_image-table-left-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/item/item_image-table-left-white.md
rename to exampleSite/content/dev/colors/dev-item/item_image-table-left-white.md
diff --git a/exampleSite/content/dev/colors/items/index.md b/exampleSite/content/dev/colors/dev-items/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/index.md
rename to exampleSite/content/dev/colors/dev-items/index.md
diff --git a/exampleSite/content/dev/colors/items/items-dark/column1.md b/exampleSite/content/dev/colors/dev-items/items-dark/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-dark/column1.md
rename to exampleSite/content/dev/colors/dev-items/items-dark/column1.md
diff --git a/exampleSite/content/dev/colors/items/items-dark/column2.md b/exampleSite/content/dev/colors/dev-items/items-dark/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-dark/column2.md
rename to exampleSite/content/dev/colors/dev-items/items-dark/column2.md
diff --git a/exampleSite/content/dev/colors/items/items-dark/column3.md b/exampleSite/content/dev/colors/dev-items/items-dark/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-dark/column3.md
rename to exampleSite/content/dev/colors/dev-items/items-dark/column3.md
diff --git a/exampleSite/content/dev/colors/items/items-dark/index.md b/exampleSite/content/dev/colors/dev-items/items-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-dark/index.md
rename to exampleSite/content/dev/colors/dev-items/items-dark/index.md
diff --git a/exampleSite/content/dev/colors/items/items-light/column1.md b/exampleSite/content/dev/colors/dev-items/items-light/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-light/column1.md
rename to exampleSite/content/dev/colors/dev-items/items-light/column1.md
diff --git a/exampleSite/content/dev/colors/items/items-light/column2.md b/exampleSite/content/dev/colors/dev-items/items-light/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-light/column2.md
rename to exampleSite/content/dev/colors/dev-items/items-light/column2.md
diff --git a/exampleSite/content/dev/colors/items/items-light/column3.md b/exampleSite/content/dev/colors/dev-items/items-light/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-light/column3.md
rename to exampleSite/content/dev/colors/dev-items/items-light/column3.md
diff --git a/exampleSite/content/dev/colors/items/items-light/index.md b/exampleSite/content/dev/colors/dev-items/items-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-light/index.md
rename to exampleSite/content/dev/colors/dev-items/items-light/index.md
diff --git a/exampleSite/content/dev/colors/items/items-primary/column1.md b/exampleSite/content/dev/colors/dev-items/items-primary/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-primary/column1.md
rename to exampleSite/content/dev/colors/dev-items/items-primary/column1.md
diff --git a/exampleSite/content/dev/colors/items/items-primary/column2.md b/exampleSite/content/dev/colors/dev-items/items-primary/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-primary/column2.md
rename to exampleSite/content/dev/colors/dev-items/items-primary/column2.md
diff --git a/exampleSite/content/dev/colors/items/items-primary/column3.md b/exampleSite/content/dev/colors/dev-items/items-primary/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-primary/column3.md
rename to exampleSite/content/dev/colors/dev-items/items-primary/column3.md
diff --git a/exampleSite/content/dev/colors/items/items-primary/index.md b/exampleSite/content/dev/colors/dev-items/items-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-primary/index.md
rename to exampleSite/content/dev/colors/dev-items/items-primary/index.md
diff --git a/exampleSite/content/dev/colors/items/items-secondary/column1.md b/exampleSite/content/dev/colors/dev-items/items-secondary/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-secondary/column1.md
rename to exampleSite/content/dev/colors/dev-items/items-secondary/column1.md
diff --git a/exampleSite/content/dev/colors/items/items-secondary/column2.md b/exampleSite/content/dev/colors/dev-items/items-secondary/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-secondary/column2.md
rename to exampleSite/content/dev/colors/dev-items/items-secondary/column2.md
diff --git a/exampleSite/content/dev/colors/items/items-secondary/column3.md b/exampleSite/content/dev/colors/dev-items/items-secondary/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-secondary/column3.md
rename to exampleSite/content/dev/colors/dev-items/items-secondary/column3.md
diff --git a/exampleSite/content/dev/colors/items/items-secondary/index.md b/exampleSite/content/dev/colors/dev-items/items-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-secondary/index.md
rename to exampleSite/content/dev/colors/dev-items/items-secondary/index.md
diff --git a/exampleSite/content/dev/colors/items/items-white/column1.md b/exampleSite/content/dev/colors/dev-items/items-white/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-white/column1.md
rename to exampleSite/content/dev/colors/dev-items/items-white/column1.md
diff --git a/exampleSite/content/dev/colors/items/items-white/column2.md b/exampleSite/content/dev/colors/dev-items/items-white/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-white/column2.md
rename to exampleSite/content/dev/colors/dev-items/items-white/column2.md
diff --git a/exampleSite/content/dev/colors/items/items-white/column3.md b/exampleSite/content/dev/colors/dev-items/items-white/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-white/column3.md
rename to exampleSite/content/dev/colors/dev-items/items-white/column3.md
diff --git a/exampleSite/content/dev/colors/items/items-white/index.md b/exampleSite/content/dev/colors/dev-items/items-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/items-white/index.md
rename to exampleSite/content/dev/colors/dev-items/items-white/index.md
diff --git a/exampleSite/content/dev/colors/items/logos-dark/caddy.svg b/exampleSite/content/dev/colors/dev-items/logos-dark/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/caddy.svg
rename to exampleSite/content/dev/colors/dev-items/logos-dark/caddy.svg
diff --git a/exampleSite/content/dev/colors/items/logos-dark/column1.md b/exampleSite/content/dev/colors/dev-items/logos-dark/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/column1.md
rename to exampleSite/content/dev/colors/dev-items/logos-dark/column1.md
diff --git a/exampleSite/content/dev/colors/items/logos-dark/column2.md b/exampleSite/content/dev/colors/dev-items/logos-dark/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/column2.md
rename to exampleSite/content/dev/colors/dev-items/logos-dark/column2.md
diff --git a/exampleSite/content/dev/colors/items/logos-dark/column3.md b/exampleSite/content/dev/colors/dev-items/logos-dark/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/column3.md
rename to exampleSite/content/dev/colors/dev-items/logos-dark/column3.md
diff --git a/exampleSite/content/dev/colors/items/logos-dark/go.svg b/exampleSite/content/dev/colors/dev-items/logos-dark/go.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/go.svg
rename to exampleSite/content/dev/colors/dev-items/logos-dark/go.svg
diff --git a/exampleSite/content/dev/colors/items/logos-dark/hugo.svg b/exampleSite/content/dev/colors/dev-items/logos-dark/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/hugo.svg
rename to exampleSite/content/dev/colors/dev-items/logos-dark/hugo.svg
diff --git a/exampleSite/content/dev/colors/items/logos-dark/index.md b/exampleSite/content/dev/colors/dev-items/logos-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-dark/index.md
rename to exampleSite/content/dev/colors/dev-items/logos-dark/index.md
diff --git a/exampleSite/content/dev/colors/items/logos-light/caddy.svg b/exampleSite/content/dev/colors/dev-items/logos-light/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/caddy.svg
rename to exampleSite/content/dev/colors/dev-items/logos-light/caddy.svg
diff --git a/exampleSite/content/dev/colors/items/logos-light/column1.md b/exampleSite/content/dev/colors/dev-items/logos-light/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/column1.md
rename to exampleSite/content/dev/colors/dev-items/logos-light/column1.md
diff --git a/exampleSite/content/dev/colors/items/logos-light/column2.md b/exampleSite/content/dev/colors/dev-items/logos-light/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/column2.md
rename to exampleSite/content/dev/colors/dev-items/logos-light/column2.md
diff --git a/exampleSite/content/dev/colors/items/logos-light/column3.md b/exampleSite/content/dev/colors/dev-items/logos-light/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/column3.md
rename to exampleSite/content/dev/colors/dev-items/logos-light/column3.md
diff --git a/exampleSite/content/dev/colors/items/logos-light/go.svg b/exampleSite/content/dev/colors/dev-items/logos-light/go.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/go.svg
rename to exampleSite/content/dev/colors/dev-items/logos-light/go.svg
diff --git a/exampleSite/content/dev/colors/items/logos-light/hugo.svg b/exampleSite/content/dev/colors/dev-items/logos-light/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/hugo.svg
rename to exampleSite/content/dev/colors/dev-items/logos-light/hugo.svg
diff --git a/exampleSite/content/dev/colors/items/logos-light/index.md b/exampleSite/content/dev/colors/dev-items/logos-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-light/index.md
rename to exampleSite/content/dev/colors/dev-items/logos-light/index.md
diff --git a/exampleSite/content/dev/colors/items/logos-primary/caddy.svg b/exampleSite/content/dev/colors/dev-items/logos-primary/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/caddy.svg
rename to exampleSite/content/dev/colors/dev-items/logos-primary/caddy.svg
diff --git a/exampleSite/content/dev/colors/items/logos-primary/column1.md b/exampleSite/content/dev/colors/dev-items/logos-primary/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/column1.md
rename to exampleSite/content/dev/colors/dev-items/logos-primary/column1.md
diff --git a/exampleSite/content/dev/colors/items/logos-primary/column2.md b/exampleSite/content/dev/colors/dev-items/logos-primary/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/column2.md
rename to exampleSite/content/dev/colors/dev-items/logos-primary/column2.md
diff --git a/exampleSite/content/dev/colors/items/logos-primary/column3.md b/exampleSite/content/dev/colors/dev-items/logos-primary/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/column3.md
rename to exampleSite/content/dev/colors/dev-items/logos-primary/column3.md
diff --git a/exampleSite/content/dev/colors/items/logos-primary/go.svg b/exampleSite/content/dev/colors/dev-items/logos-primary/go.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/go.svg
rename to exampleSite/content/dev/colors/dev-items/logos-primary/go.svg
diff --git a/exampleSite/content/dev/colors/items/logos-primary/hugo.svg b/exampleSite/content/dev/colors/dev-items/logos-primary/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/hugo.svg
rename to exampleSite/content/dev/colors/dev-items/logos-primary/hugo.svg
diff --git a/exampleSite/content/dev/colors/items/logos-primary/index.md b/exampleSite/content/dev/colors/dev-items/logos-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-primary/index.md
rename to exampleSite/content/dev/colors/dev-items/logos-primary/index.md
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/caddy.svg b/exampleSite/content/dev/colors/dev-items/logos-secondary/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/caddy.svg
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/caddy.svg
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/column1.md b/exampleSite/content/dev/colors/dev-items/logos-secondary/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/column1.md
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/column1.md
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/column2.md b/exampleSite/content/dev/colors/dev-items/logos-secondary/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/column2.md
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/column2.md
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/column3.md b/exampleSite/content/dev/colors/dev-items/logos-secondary/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/column3.md
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/column3.md
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/go.svg b/exampleSite/content/dev/colors/dev-items/logos-secondary/go.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/go.svg
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/go.svg
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/hugo.svg b/exampleSite/content/dev/colors/dev-items/logos-secondary/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/hugo.svg
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/hugo.svg
diff --git a/exampleSite/content/dev/colors/items/logos-secondary/index.md b/exampleSite/content/dev/colors/dev-items/logos-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-secondary/index.md
rename to exampleSite/content/dev/colors/dev-items/logos-secondary/index.md
diff --git a/exampleSite/content/dev/colors/items/logos-white/caddy.svg b/exampleSite/content/dev/colors/dev-items/logos-white/caddy.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/caddy.svg
rename to exampleSite/content/dev/colors/dev-items/logos-white/caddy.svg
diff --git a/exampleSite/content/dev/colors/items/logos-white/column1.md b/exampleSite/content/dev/colors/dev-items/logos-white/column1.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/column1.md
rename to exampleSite/content/dev/colors/dev-items/logos-white/column1.md
diff --git a/exampleSite/content/dev/colors/items/logos-white/column2.md b/exampleSite/content/dev/colors/dev-items/logos-white/column2.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/column2.md
rename to exampleSite/content/dev/colors/dev-items/logos-white/column2.md
diff --git a/exampleSite/content/dev/colors/items/logos-white/column3.md b/exampleSite/content/dev/colors/dev-items/logos-white/column3.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/column3.md
rename to exampleSite/content/dev/colors/dev-items/logos-white/column3.md
diff --git a/exampleSite/content/dev/colors/items/logos-white/go.svg b/exampleSite/content/dev/colors/dev-items/logos-white/go.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/go.svg
rename to exampleSite/content/dev/colors/dev-items/logos-white/go.svg
diff --git a/exampleSite/content/dev/colors/items/logos-white/hugo.svg b/exampleSite/content/dev/colors/dev-items/logos-white/hugo.svg
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/hugo.svg
rename to exampleSite/content/dev/colors/dev-items/logos-white/hugo.svg
diff --git a/exampleSite/content/dev/colors/items/logos-white/index.md b/exampleSite/content/dev/colors/dev-items/logos-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/items/logos-white/index.md
rename to exampleSite/content/dev/colors/dev-items/logos-white/index.md
diff --git a/exampleSite/content/dev/colors/list/index.md b/exampleSite/content/dev/colors/dev-list/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/list/index.md
rename to exampleSite/content/dev/colors/dev-list/index.md
diff --git a/exampleSite/content/dev/colors/list/list-dark.md b/exampleSite/content/dev/colors/dev-list/list-dark.md
similarity index 83%
rename from exampleSite/content/dev/colors/list/list-dark.md
rename to exampleSite/content/dev/colors/dev-list/list-dark.md
index 129a8df1..30a59c76 100644
--- a/exampleSite/content/dev/colors/list/list-dark.md
+++ b/exampleSite/content/dev/colors/dev-list/list-dark.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "dark"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
@@ -16,6 +16,9 @@ section = "dev/blog" # Default value is current section
display_date = true # Default is false
#collapsible = true # Default value is false
+#sort = "Title" # Default is PublishDate
+#sort_order = "asc" # Default is asc
+
#subsections = true # Default to true. Shows subsection branch pages
#subsection_leaves = true # Default to false. Shows subsection leaf pages
+++
diff --git a/exampleSite/content/dev/colors/list/list-light.md b/exampleSite/content/dev/colors/dev-list/list-light.md
similarity index 83%
rename from exampleSite/content/dev/colors/list/list-light.md
rename to exampleSite/content/dev/colors/dev-list/list-light.md
index f11c16ff..c59a8262 100644
--- a/exampleSite/content/dev/colors/list/list-light.md
+++ b/exampleSite/content/dev/colors/dev-list/list-light.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "light"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
@@ -16,6 +16,9 @@ section = "dev/blog" # Default value is current section
display_date = true # Default is false
#collapsible = true # Default value is false
+#sort = "Title" # Default is PublishDate
+#sort_order = "asc" # Default is asc
+
#subsections = true # Default to true. Shows subsection branch pages
#subsection_leaves = true # Default to false. Shows subsection leaf pages
+++
diff --git a/exampleSite/content/dev/colors/list/list-primary.md b/exampleSite/content/dev/colors/dev-list/list-primary.md
similarity index 84%
rename from exampleSite/content/dev/colors/list/list-primary.md
rename to exampleSite/content/dev/colors/dev-list/list-primary.md
index 53f1d339..35170fef 100644
--- a/exampleSite/content/dev/colors/list/list-primary.md
+++ b/exampleSite/content/dev/colors/dev-list/list-primary.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "primary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
@@ -16,6 +16,9 @@ section = "dev/blog" # Default value is current section
display_date = true # Default is false
#collapsible = true # Default value is false
+#sort = "Title" # Default is PublishDate
+#sort_order = "asc" # Default is asc
+
#subsections = true # Default to true. Shows subsection branch pages
#subsection_leaves = true # Default to false. Shows subsection leaf pages
+++
diff --git a/exampleSite/content/dev/colors/list/list-secondary.md b/exampleSite/content/dev/colors/dev-list/list-secondary.md
similarity index 84%
rename from exampleSite/content/dev/colors/list/list-secondary.md
rename to exampleSite/content/dev/colors/dev-list/list-secondary.md
index 641b273d..daeac655 100644
--- a/exampleSite/content/dev/colors/list/list-secondary.md
+++ b/exampleSite/content/dev/colors/dev-list/list-secondary.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
@@ -16,6 +16,9 @@ section = "dev/blog" # Default value is current section
display_date = true # Default is false
#collapsible = true # Default value is false
+#sort = "Title" # Default is PublishDate
+#sort_order = "asc" # Default is asc
+
#subsections = true # Default to true. Shows subsection branch pages
#subsection_leaves = true # Default to false. Shows subsection leaf pages
+++
diff --git a/exampleSite/content/dev/colors/list/list-tiled-dark.md b/exampleSite/content/dev/colors/dev-list/list-tiled-dark.md
similarity index 92%
rename from exampleSite/content/dev/colors/list/list-tiled-dark.md
rename to exampleSite/content/dev/colors/dev-list/list-tiled-dark.md
index ac47b5b7..436f1a96 100644
--- a/exampleSite/content/dev/colors/list/list-tiled-dark.md
+++ b/exampleSite/content/dev/colors/dev-list/list-tiled-dark.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "dark"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/dev/colors/list/list-tiled-light.md b/exampleSite/content/dev/colors/dev-list/list-tiled-light.md
similarity index 92%
rename from exampleSite/content/dev/colors/list/list-tiled-light.md
rename to exampleSite/content/dev/colors/dev-list/list-tiled-light.md
index 40695a1e..db325bb2 100644
--- a/exampleSite/content/dev/colors/list/list-tiled-light.md
+++ b/exampleSite/content/dev/colors/dev-list/list-tiled-light.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "light"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/dev/colors/list/list-tiled-primary.md b/exampleSite/content/dev/colors/dev-list/list-tiled-primary.md
similarity index 92%
rename from exampleSite/content/dev/colors/list/list-tiled-primary.md
rename to exampleSite/content/dev/colors/dev-list/list-tiled-primary.md
index 1a008be4..c7c4f66b 100644
--- a/exampleSite/content/dev/colors/list/list-tiled-primary.md
+++ b/exampleSite/content/dev/colors/dev-list/list-tiled-primary.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "primary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/dev/colors/list/list-tiled-secondary.md b/exampleSite/content/dev/colors/dev-list/list-tiled-secondary.md
similarity index 92%
rename from exampleSite/content/dev/colors/list/list-tiled-secondary.md
rename to exampleSite/content/dev/colors/dev-list/list-tiled-secondary.md
index c2106896..1336b1ea 100644
--- a/exampleSite/content/dev/colors/list/list-tiled-secondary.md
+++ b/exampleSite/content/dev/colors/dev-list/list-tiled-secondary.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/dev/colors/list/list-tiled-white.md b/exampleSite/content/dev/colors/dev-list/list-tiled-white.md
similarity index 92%
rename from exampleSite/content/dev/colors/list/list-tiled-white.md
rename to exampleSite/content/dev/colors/dev-list/list-tiled-white.md
index bdfc0d03..570aa6f3 100644
--- a/exampleSite/content/dev/colors/list/list-tiled-white.md
+++ b/exampleSite/content/dev/colors/dev-list/list-tiled-white.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "white"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/dev/colors/list/list-white.md b/exampleSite/content/dev/colors/dev-list/list-white.md
similarity index 83%
rename from exampleSite/content/dev/colors/list/list-white.md
rename to exampleSite/content/dev/colors/dev-list/list-white.md
index 860d6ba9..0a1e66f1 100644
--- a/exampleSite/content/dev/colors/list/list-white.md
+++ b/exampleSite/content/dev/colors/dev-list/list-white.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "white"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
@@ -16,6 +16,9 @@ section = "dev/blog" # Default value is current section
display_date = true # Default is false
#collapsible = true # Default value is false
+#sort = "Title" # Default is PublishDate
+#sort_order = "asc" # Default is asc
+
#subsections = true # Default to true. Shows subsection branch pages
#subsection_leaves = true # Default to false. Shows subsection leaf pages
+++
diff --git a/exampleSite/content/dev/colors/member/index.md b/exampleSite/content/dev/colors/dev-member/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/index.md
rename to exampleSite/content/dev/colors/dev-member/index.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/donald.md b/exampleSite/content/dev/colors/dev-member/members-dark/donald.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/donald.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/donald.md
diff --git a/exampleSite/content/dev/colors/member/members-secondary/ella.md b/exampleSite/content/dev/colors/dev-member/members-dark/ella.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/ella.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/ella.md
diff --git a/exampleSite/content/dev/colors/member/members-secondary/gopher.md b/exampleSite/content/dev/colors/dev-member/members-dark/gopher.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/gopher.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/gopher.md
diff --git a/exampleSite/content/dev/colors/member/members-secondary/hector.md b/exampleSite/content/dev/colors/dev-member/members-dark/hector.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/hector.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/hector.md
diff --git a/exampleSite/content/dev/colors/member/members-dark/index.md b/exampleSite/content/dev/colors/dev-member/members-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-dark/index.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/index.md
diff --git a/exampleSite/content/dev/colors/member/members-secondary/nancy.md b/exampleSite/content/dev/colors/dev-member/members-dark/nancy.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/nancy.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/nancy.md
diff --git a/exampleSite/content/dev/colors/member/members-secondary/yoda.md b/exampleSite/content/dev/colors/dev-member/members-dark/yoda.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/yoda.md
rename to exampleSite/content/dev/colors/dev-member/members-dark/yoda.md
diff --git a/exampleSite/content/dev/colors/member/members-light/donald.md b/exampleSite/content/dev/colors/dev-member/members-light/donald.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/donald.md
rename to exampleSite/content/dev/colors/dev-member/members-light/donald.md
diff --git a/exampleSite/content/dev/colors/member/members-white/ella.md b/exampleSite/content/dev/colors/dev-member/members-light/ella.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/ella.md
rename to exampleSite/content/dev/colors/dev-member/members-light/ella.md
diff --git a/exampleSite/content/dev/colors/member/members-white/gopher.md b/exampleSite/content/dev/colors/dev-member/members-light/gopher.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/gopher.md
rename to exampleSite/content/dev/colors/dev-member/members-light/gopher.md
diff --git a/exampleSite/content/dev/colors/member/members-white/hector.md b/exampleSite/content/dev/colors/dev-member/members-light/hector.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/hector.md
rename to exampleSite/content/dev/colors/dev-member/members-light/hector.md
diff --git a/exampleSite/content/dev/colors/member/members-light/index.md b/exampleSite/content/dev/colors/dev-member/members-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-light/index.md
rename to exampleSite/content/dev/colors/dev-member/members-light/index.md
diff --git a/exampleSite/content/dev/colors/member/members-white/nancy.md b/exampleSite/content/dev/colors/dev-member/members-light/nancy.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/nancy.md
rename to exampleSite/content/dev/colors/dev-member/members-light/nancy.md
diff --git a/exampleSite/content/dev/colors/member/members-white/yoda.md b/exampleSite/content/dev/colors/dev-member/members-light/yoda.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/yoda.md
rename to exampleSite/content/dev/colors/dev-member/members-light/yoda.md
diff --git a/exampleSite/content/dev/colors/member/members-primary/donald.md b/exampleSite/content/dev/colors/dev-member/members-primary/donald.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/donald.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/donald.md
diff --git a/exampleSite/content/dev/alignments/member/members-right/ella.md b/exampleSite/content/dev/colors/dev-member/members-primary/ella.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/members-right/ella.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/ella.md
index 5ba417a6..f6b1bc52 100644
--- a/exampleSite/content/dev/alignments/member/members-right/ella.md
+++ b/exampleSite/content/dev/colors/dev-member/members-primary/ella.md
@@ -14,6 +14,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-center/gopher.md b/exampleSite/content/dev/colors/dev-member/members-primary/gopher.md
similarity index 95%
rename from exampleSite/content/dev/alignments/member/members-center/gopher.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/gopher.md
index 896f3f4c..08a1f0b6 100644
--- a/exampleSite/content/dev/alignments/member/members-center/gopher.md
+++ b/exampleSite/content/dev/colors/dev-member/members-primary/gopher.md
@@ -14,10 +14,12 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-left/hector.md b/exampleSite/content/dev/colors/dev-member/members-primary/hector.md
similarity index 92%
rename from exampleSite/content/dev/alignments/member/members-left/hector.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/hector.md
index 6d28ff2b..7504fa04 100644
--- a/exampleSite/content/dev/alignments/member/members-left/hector.md
+++ b/exampleSite/content/dev/colors/dev-member/members-primary/hector.md
@@ -7,14 +7,17 @@ lives_in = "[Iceland](https://www.google.com/maps/place/Iceland/)"
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/members-primary/index.md b/exampleSite/content/dev/colors/dev-member/members-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-primary/index.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/index.md
diff --git a/exampleSite/content/dev/alignments/member/members-left/nancy.md b/exampleSite/content/dev/colors/dev-member/members-primary/nancy.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-left/nancy.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/nancy.md
index e5f61eb5..7def0dad 100644
--- a/exampleSite/content/dev/alignments/member/members-left/nancy.md
+++ b/exampleSite/content/dev/colors/dev-member/members-primary/nancy.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-right/yoda.md b/exampleSite/content/dev/colors/dev-member/members-primary/yoda.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-right/yoda.md
rename to exampleSite/content/dev/colors/dev-member/members-primary/yoda.md
index 4e0f999b..be8ed900 100644
--- a/exampleSite/content/dev/alignments/member/members-right/yoda.md
+++ b/exampleSite/content/dev/colors/dev-member/members-primary/yoda.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/members-secondary/donald.md b/exampleSite/content/dev/colors/dev-member/members-secondary/donald.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/donald.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/donald.md
diff --git a/exampleSite/content/dev/alignments/member/members-center/ella.md b/exampleSite/content/dev/colors/dev-member/members-secondary/ella.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/members-center/ella.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/ella.md
index 5ba417a6..f6b1bc52 100644
--- a/exampleSite/content/dev/alignments/member/members-center/ella.md
+++ b/exampleSite/content/dev/colors/dev-member/members-secondary/ella.md
@@ -14,6 +14,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-left/gopher.md b/exampleSite/content/dev/colors/dev-member/members-secondary/gopher.md
similarity index 95%
rename from exampleSite/content/dev/alignments/member/members-left/gopher.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/gopher.md
index 896f3f4c..08a1f0b6 100644
--- a/exampleSite/content/dev/alignments/member/members-left/gopher.md
+++ b/exampleSite/content/dev/colors/dev-member/members-secondary/gopher.md
@@ -14,10 +14,12 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-right/hector.md b/exampleSite/content/dev/colors/dev-member/members-secondary/hector.md
similarity index 92%
rename from exampleSite/content/dev/alignments/member/members-right/hector.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/hector.md
index 6d28ff2b..7504fa04 100644
--- a/exampleSite/content/dev/alignments/member/members-right/hector.md
+++ b/exampleSite/content/dev/colors/dev-member/members-secondary/hector.md
@@ -7,14 +7,17 @@ lives_in = "[Iceland](https://www.google.com/maps/place/Iceland/)"
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/members-secondary/index.md b/exampleSite/content/dev/colors/dev-member/members-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-secondary/index.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/index.md
diff --git a/exampleSite/content/dev/alignments/member/members-right/nancy.md b/exampleSite/content/dev/colors/dev-member/members-secondary/nancy.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-right/nancy.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/nancy.md
index e5f61eb5..7def0dad 100644
--- a/exampleSite/content/dev/alignments/member/members-right/nancy.md
+++ b/exampleSite/content/dev/colors/dev-member/members-secondary/nancy.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-center/yoda.md b/exampleSite/content/dev/colors/dev-member/members-secondary/yoda.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-center/yoda.md
rename to exampleSite/content/dev/colors/dev-member/members-secondary/yoda.md
index 4e0f999b..be8ed900 100644
--- a/exampleSite/content/dev/alignments/member/members-center/yoda.md
+++ b/exampleSite/content/dev/colors/dev-member/members-secondary/yoda.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/members-white/donald.md b/exampleSite/content/dev/colors/dev-member/members-white/donald.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/donald.md
rename to exampleSite/content/dev/colors/dev-member/members-white/donald.md
diff --git a/exampleSite/content/dev/alignments/member/members-left/ella.md b/exampleSite/content/dev/colors/dev-member/members-white/ella.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/members-left/ella.md
rename to exampleSite/content/dev/colors/dev-member/members-white/ella.md
index 5ba417a6..f6b1bc52 100644
--- a/exampleSite/content/dev/alignments/member/members-left/ella.md
+++ b/exampleSite/content/dev/colors/dev-member/members-white/ella.md
@@ -14,6 +14,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-right/gopher.md b/exampleSite/content/dev/colors/dev-member/members-white/gopher.md
similarity index 95%
rename from exampleSite/content/dev/alignments/member/members-right/gopher.md
rename to exampleSite/content/dev/colors/dev-member/members-white/gopher.md
index 896f3f4c..08a1f0b6 100644
--- a/exampleSite/content/dev/alignments/member/members-right/gopher.md
+++ b/exampleSite/content/dev/colors/dev-member/members-white/gopher.md
@@ -14,10 +14,12 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-center/hector.md b/exampleSite/content/dev/colors/dev-member/members-white/hector.md
similarity index 92%
rename from exampleSite/content/dev/alignments/member/members-center/hector.md
rename to exampleSite/content/dev/colors/dev-member/members-white/hector.md
index 6d28ff2b..7504fa04 100644
--- a/exampleSite/content/dev/alignments/member/members-center/hector.md
+++ b/exampleSite/content/dev/colors/dev-member/members-white/hector.md
@@ -7,14 +7,17 @@ lives_in = "[Iceland](https://www.google.com/maps/place/Iceland/)"
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/members-white/index.md b/exampleSite/content/dev/colors/dev-member/members-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/members-white/index.md
rename to exampleSite/content/dev/colors/dev-member/members-white/index.md
diff --git a/exampleSite/content/dev/alignments/member/members-center/nancy.md b/exampleSite/content/dev/colors/dev-member/members-white/nancy.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-center/nancy.md
rename to exampleSite/content/dev/colors/dev-member/members-white/nancy.md
index e5f61eb5..7def0dad 100644
--- a/exampleSite/content/dev/alignments/member/members-center/nancy.md
+++ b/exampleSite/content/dev/colors/dev-member/members-white/nancy.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/alignments/member/members-left/yoda.md b/exampleSite/content/dev/colors/dev-member/members-white/yoda.md
similarity index 93%
rename from exampleSite/content/dev/alignments/member/members-left/yoda.md
rename to exampleSite/content/dev/colors/dev-member/members-white/yoda.md
index 4e0f999b..be8ed900 100644
--- a/exampleSite/content/dev/alignments/member/members-left/yoda.md
+++ b/exampleSite/content/dev/colors/dev-member/members-white/yoda.md
@@ -14,14 +14,17 @@ scope = [
[[icons]]
icon = "fab fa-twitter"
+ text = "Twitter"
url = "#"
[[icons]]
icon = "fab fa-facebook-f"
+ text = "Facebook"
url = "#"
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/single-member-secondary/bio.md b/exampleSite/content/dev/colors/dev-member/single-member-dark/bio.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-secondary/bio.md
rename to exampleSite/content/dev/colors/dev-member/single-member-dark/bio.md
diff --git a/exampleSite/content/dev/colors/member/single-member-dark/index.md b/exampleSite/content/dev/colors/dev-member/single-member-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-dark/index.md
rename to exampleSite/content/dev/colors/dev-member/single-member-dark/index.md
diff --git a/exampleSite/content/dev/colors/member/single-member-white/bio.md b/exampleSite/content/dev/colors/dev-member/single-member-light/bio.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-white/bio.md
rename to exampleSite/content/dev/colors/dev-member/single-member-light/bio.md
diff --git a/exampleSite/content/dev/colors/member/single-member-light/index.md b/exampleSite/content/dev/colors/dev-member/single-member-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-light/index.md
rename to exampleSite/content/dev/colors/dev-member/single-member-light/index.md
diff --git a/exampleSite/content/dev/alignments/member/single-member-left/bio.md b/exampleSite/content/dev/colors/dev-member/single-member-primary/bio.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/single-member-left/bio.md
rename to exampleSite/content/dev/colors/dev-member/single-member-primary/bio.md
index 9ebb4c24..76f1b3a4 100644
--- a/exampleSite/content/dev/alignments/member/single-member-left/bio.md
+++ b/exampleSite/content/dev/colors/dev-member/single-member-primary/bio.md
@@ -16,6 +16,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/single-member-primary/index.md b/exampleSite/content/dev/colors/dev-member/single-member-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-primary/index.md
rename to exampleSite/content/dev/colors/dev-member/single-member-primary/index.md
diff --git a/exampleSite/content/dev/alignments/member/single-member-right/bio.md b/exampleSite/content/dev/colors/dev-member/single-member-secondary/bio.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/single-member-right/bio.md
rename to exampleSite/content/dev/colors/dev-member/single-member-secondary/bio.md
index 9ebb4c24..76f1b3a4 100644
--- a/exampleSite/content/dev/alignments/member/single-member-right/bio.md
+++ b/exampleSite/content/dev/colors/dev-member/single-member-secondary/bio.md
@@ -16,6 +16,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/single-member-secondary/index.md b/exampleSite/content/dev/colors/dev-member/single-member-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-secondary/index.md
rename to exampleSite/content/dev/colors/dev-member/single-member-secondary/index.md
diff --git a/exampleSite/content/dev/alignments/member/single-member-center/bio.md b/exampleSite/content/dev/colors/dev-member/single-member-white/bio.md
similarity index 97%
rename from exampleSite/content/dev/alignments/member/single-member-center/bio.md
rename to exampleSite/content/dev/colors/dev-member/single-member-white/bio.md
index 9ebb4c24..76f1b3a4 100644
--- a/exampleSite/content/dev/alignments/member/single-member-center/bio.md
+++ b/exampleSite/content/dev/colors/dev-member/single-member-white/bio.md
@@ -16,6 +16,7 @@ scope = [
[[icons]]
icon = "fab fa-linkedin-in"
+ text = "Linkedin"
url = "#"
[asset]
diff --git a/exampleSite/content/dev/colors/member/single-member-white/index.md b/exampleSite/content/dev/colors/dev-member/single-member-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/member/single-member-white/index.md
rename to exampleSite/content/dev/colors/dev-member/single-member-white/index.md
diff --git a/exampleSite/content/dev/colors/nav/index.md b/exampleSite/content/dev/colors/dev-nav/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/index.md
rename to exampleSite/content/dev/colors/dev-nav/index.md
diff --git a/exampleSite/content/dev/colors/nav/nav-example-dark.md b/exampleSite/content/dev/colors/dev-nav/nav-example-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/nav-example-dark.md
rename to exampleSite/content/dev/colors/dev-nav/nav-example-dark.md
diff --git a/exampleSite/content/dev/colors/nav/nav-example-light.md b/exampleSite/content/dev/colors/dev-nav/nav-example-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/nav-example-light.md
rename to exampleSite/content/dev/colors/dev-nav/nav-example-light.md
diff --git a/exampleSite/content/dev/colors/nav/nav-example-primary.md b/exampleSite/content/dev/colors/dev-nav/nav-example-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/nav-example-primary.md
rename to exampleSite/content/dev/colors/dev-nav/nav-example-primary.md
diff --git a/exampleSite/content/dev/colors/nav/nav-example-secondary.md b/exampleSite/content/dev/colors/dev-nav/nav-example-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/nav-example-secondary.md
rename to exampleSite/content/dev/colors/dev-nav/nav-example-secondary.md
diff --git a/exampleSite/content/dev/colors/nav/nav-example-white.md b/exampleSite/content/dev/colors/dev-nav/nav-example-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/nav/nav-example-white.md
rename to exampleSite/content/dev/colors/dev-nav/nav-example-white.md
diff --git a/exampleSite/content/dev/colors/portfolio/index.md b/exampleSite/content/dev/colors/dev-portfolio/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/bird-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/bird-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/bird-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/cat-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/cat-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/cat-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/cat-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/cat-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/cat-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-3.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/dog-3.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/dog-3.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/index.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item1.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item1.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item1.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item1.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item2.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item2.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item2.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item2.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item3.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item3.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item3.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item3.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item4.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item4.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item4.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item4.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item5.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item5.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item5.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item5.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-dark/item6.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item6.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-dark/item6.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-dark/item6.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/bird-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/bird-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/bird-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/cat-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/cat-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/cat-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/cat-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/cat-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/cat-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/dog-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/dog-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/dog-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/dog-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/dog-3.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/dog-3.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/dog-3.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/index.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item1.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item1.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item1.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item1.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item2.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item2.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item2.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item2.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item3.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item3.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item3.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item3.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item4.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item4.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item4.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item4.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item5.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item5.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item5.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item5.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-light/item6.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item6.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-light/item6.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-light/item6.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/bird-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/bird-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/bird-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/cat-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/cat-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/cat-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/cat-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/cat-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/cat-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-3.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/dog-3.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/dog-3.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/index.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item1.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item1.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item1.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item1.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item2.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item2.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item2.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item2.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item3.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item3.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item3.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item3.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item4.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item4.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item4.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item4.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item5.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item5.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item5.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item5.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-primary/item6.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item6.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-primary/item6.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-primary/item6.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/bird-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/bird-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/bird-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/cat-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/cat-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/cat-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/cat-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/cat-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/cat-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-3.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/dog-3.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/dog-3.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/index.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item1.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item1.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item1.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item1.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item2.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item2.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item2.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item2.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item3.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item3.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item3.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item3.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item4.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item4.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item4.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item4.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item5.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item5.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item5.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item5.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-secondary/item6.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item6.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-secondary/item6.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-secondary/item6.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/bird-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/bird-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/bird-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/bird-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/cat-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/cat-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/cat-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/cat-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/cat-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/cat-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/cat-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/cat-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/dog-1.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-1.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/dog-1.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-1.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/dog-2.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-2.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/dog-2.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-2.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/dog-3.jpeg b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-3.jpeg
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/dog-3.jpeg
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/dog-3.jpeg
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/index.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/index.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/index.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item1.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item1.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item1.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item1.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item2.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item2.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item2.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item2.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item3.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item3.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item3.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item3.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item4.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item4.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item4.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item4.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item5.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item5.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item5.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item5.md
diff --git a/exampleSite/content/dev/colors/portfolio/portfolio-white/item6.md b/exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item6.md
similarity index 100%
rename from exampleSite/content/dev/colors/portfolio/portfolio-white/item6.md
rename to exampleSite/content/dev/colors/dev-portfolio/portfolio-white/item6.md
diff --git a/exampleSite/content/dev/colors/pricing/index.md b/exampleSite/content/dev/colors/dev-pricing/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/index.md
rename to exampleSite/content/dev/colors/dev-pricing/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-dark/index.md b/exampleSite/content/dev/colors/dev-pricing/pricing-dark/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-dark/index.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-dark/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-dark/plan-1.md b/exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-dark/plan-1.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-1.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-secondary/plan-2.md b/exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-2.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-secondary/plan-2.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-2.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-dark/plan-3.md b/exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-dark/plan-3.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-dark/plan-3.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-light/index.md b/exampleSite/content/dev/colors/dev-pricing/pricing-light/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-light/index.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-light/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-light/plan-1.md b/exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-light/plan-1.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-1.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-white/plan-2.md b/exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-2.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-white/plan-2.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-2.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-light/plan-3.md b/exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-light/plan-3.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-light/plan-3.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-primary/index.md b/exampleSite/content/dev/colors/dev-pricing/pricing-primary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-primary/index.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-primary/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-primary/plan-1.md b/exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-primary/plan-1.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-1.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-left/plan-2.md b/exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-2.md
similarity index 78%
rename from exampleSite/content/dev/alignments/pricing/pricing-left/plan-2.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-2.md
index 55fed467..8bd76480 100644
--- a/exampleSite/content/dev/alignments/pricing/pricing-left/plan-2.md
+++ b/exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-2.md
@@ -9,7 +9,7 @@ currency = "usd"
highlight = true
button_text = "Get started"
-button_url = "/dev/events/payment?topic=pricing:change&plan=Premium plan&price=999&price_text=$9.99/mo¤cy=usd"
+button_url = "/fragments/stripe?event=pricing:change&product=Starting%20plan&price=$9.99/mo¤cy=usd"
[[features]]
text = "**Basic** feature"
diff --git a/exampleSite/content/dev/colors/pricing/pricing-primary/plan-3.md b/exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-primary/plan-3.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-primary/plan-3.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-secondary/index.md b/exampleSite/content/dev/colors/dev-pricing/pricing-secondary/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-secondary/index.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-secondary/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-secondary/plan-1.md b/exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-secondary/plan-1.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-1.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-right/plan-2.md b/exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-2.md
similarity index 78%
rename from exampleSite/content/dev/alignments/pricing/pricing-right/plan-2.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-2.md
index 55fed467..8bd76480 100644
--- a/exampleSite/content/dev/alignments/pricing/pricing-right/plan-2.md
+++ b/exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-2.md
@@ -9,7 +9,7 @@ currency = "usd"
highlight = true
button_text = "Get started"
-button_url = "/dev/events/payment?topic=pricing:change&plan=Premium plan&price=999&price_text=$9.99/mo¤cy=usd"
+button_url = "/fragments/stripe?event=pricing:change&product=Starting%20plan&price=$9.99/mo¤cy=usd"
[[features]]
text = "**Basic** feature"
diff --git a/exampleSite/content/dev/colors/pricing/pricing-secondary/plan-3.md b/exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-secondary/plan-3.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-secondary/plan-3.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-white/index.md b/exampleSite/content/dev/colors/dev-pricing/pricing-white/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-white/index.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-white/index.md
diff --git a/exampleSite/content/dev/colors/pricing/pricing-white/plan-1.md b/exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-1.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-white/plan-1.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-1.md
diff --git a/exampleSite/content/dev/alignments/pricing/pricing-center/plan-2.md b/exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-2.md
similarity index 78%
rename from exampleSite/content/dev/alignments/pricing/pricing-center/plan-2.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-2.md
index 55fed467..8bd76480 100644
--- a/exampleSite/content/dev/alignments/pricing/pricing-center/plan-2.md
+++ b/exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-2.md
@@ -9,7 +9,7 @@ currency = "usd"
highlight = true
button_text = "Get started"
-button_url = "/dev/events/payment?topic=pricing:change&plan=Premium plan&price=999&price_text=$9.99/mo¤cy=usd"
+button_url = "/fragments/stripe?event=pricing:change&product=Starting%20plan&price=$9.99/mo¤cy=usd"
[[features]]
text = "**Basic** feature"
diff --git a/exampleSite/content/dev/colors/pricing/pricing-white/plan-3.md b/exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-3.md
similarity index 100%
rename from exampleSite/content/dev/colors/pricing/pricing-white/plan-3.md
rename to exampleSite/content/dev/colors/dev-pricing/pricing-white/plan-3.md
diff --git a/exampleSite/content/dev/colors/react-portal/counter-dark.md b/exampleSite/content/dev/colors/dev-react-portal/counter-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/counter-dark.md
rename to exampleSite/content/dev/colors/dev-react-portal/counter-dark.md
diff --git a/exampleSite/content/dev/colors/react-portal/counter-light.md b/exampleSite/content/dev/colors/dev-react-portal/counter-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/counter-light.md
rename to exampleSite/content/dev/colors/dev-react-portal/counter-light.md
diff --git a/exampleSite/content/dev/colors/react-portal/counter-primary.md b/exampleSite/content/dev/colors/dev-react-portal/counter-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/counter-primary.md
rename to exampleSite/content/dev/colors/dev-react-portal/counter-primary.md
diff --git a/exampleSite/content/dev/colors/react-portal/counter-secondary.md b/exampleSite/content/dev/colors/dev-react-portal/counter-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/counter-secondary.md
rename to exampleSite/content/dev/colors/dev-react-portal/counter-secondary.md
diff --git a/exampleSite/content/dev/colors/react-portal/counter-white.md b/exampleSite/content/dev/colors/dev-react-portal/counter-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/counter-white.md
rename to exampleSite/content/dev/colors/dev-react-portal/counter-white.md
diff --git a/exampleSite/content/dev/colors/react-portal/index.md b/exampleSite/content/dev/colors/dev-react-portal/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/react-portal/index.md
rename to exampleSite/content/dev/colors/dev-react-portal/index.md
diff --git a/exampleSite/content/dev/colors/search/index.md b/exampleSite/content/dev/colors/dev-search/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/index.md
rename to exampleSite/content/dev/colors/dev-search/index.md
diff --git a/exampleSite/content/dev/colors/search/search-dark.md b/exampleSite/content/dev/colors/dev-search/search-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/search-dark.md
rename to exampleSite/content/dev/colors/dev-search/search-dark.md
diff --git a/exampleSite/content/dev/colors/search/search-light.md b/exampleSite/content/dev/colors/dev-search/search-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/search-light.md
rename to exampleSite/content/dev/colors/dev-search/search-light.md
diff --git a/exampleSite/content/dev/colors/search/search-primary.md b/exampleSite/content/dev/colors/dev-search/search-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/search-primary.md
rename to exampleSite/content/dev/colors/dev-search/search-primary.md
diff --git a/exampleSite/content/dev/colors/search/search-secondary.md b/exampleSite/content/dev/colors/dev-search/search-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/search-secondary.md
rename to exampleSite/content/dev/colors/dev-search/search-secondary.md
diff --git a/exampleSite/content/dev/colors/search/search-white.md b/exampleSite/content/dev/colors/dev-search/search-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/search/search-white.md
rename to exampleSite/content/dev/colors/dev-search/search-white.md
diff --git a/exampleSite/content/dev/colors/stripe/index.md b/exampleSite/content/dev/colors/dev-stripe/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/index.md
rename to exampleSite/content/dev/colors/dev-stripe/index.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-dark.md b/exampleSite/content/dev/colors/dev-stripe/stripe-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-dark.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-dark.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-light.md b/exampleSite/content/dev/colors/dev-stripe/stripe-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-light.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-light.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-multi-price-dark.md b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-dark.md
similarity index 96%
rename from exampleSite/content/dev/colors/stripe/stripe-multi-price-dark.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-dark.md
index be60f669..91aebbe4 100644
--- a/exampleSite/content/dev/colors/stripe/stripe-multi-price-dark.md
+++ b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-dark.md
@@ -30,6 +30,5 @@ product = "Example Product"
[fields.email]
text = "Your email address"
+++
-[fields.email]
- text =
+
You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/colors/stripe/stripe-multi-price-light.md b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-light.md
similarity index 96%
rename from exampleSite/content/dev/colors/stripe/stripe-multi-price-light.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-light.md
index e3aeec7a..d5760e53 100644
--- a/exampleSite/content/dev/colors/stripe/stripe-multi-price-light.md
+++ b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-light.md
@@ -30,6 +30,5 @@ product = "Example Product"
[fields.email]
text = "Your email address"
+++
-[fields.email]
- text =
+
You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/colors/stripe/stripe-multi-price-primary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-primary.md
similarity index 96%
rename from exampleSite/content/dev/colors/stripe/stripe-multi-price-primary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-primary.md
index 56cfab54..656cf82b 100644
--- a/exampleSite/content/dev/colors/stripe/stripe-multi-price-primary.md
+++ b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-primary.md
@@ -30,6 +30,5 @@ product = "Example Product"
[fields.email]
text = "Your email address"
+++
-[fields.email]
- text =
+
You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/colors/stripe/stripe-multi-price-secondary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-secondary.md
similarity index 96%
rename from exampleSite/content/dev/colors/stripe/stripe-multi-price-secondary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-secondary.md
index 7e336c6c..2aa34226 100644
--- a/exampleSite/content/dev/colors/stripe/stripe-multi-price-secondary.md
+++ b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-secondary.md
@@ -30,6 +30,5 @@ product = "Example Product"
[fields.email]
text = "Your email address"
+++
-[fields.email]
- text =
+
You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/colors/stripe/stripe-multi-price-white.md b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-white.md
similarity index 96%
rename from exampleSite/content/dev/colors/stripe/stripe-multi-price-white.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-white.md
index 81e27e84..e58ddd37 100644
--- a/exampleSite/content/dev/colors/stripe/stripe-multi-price-white.md
+++ b/exampleSite/content/dev/colors/dev-stripe/stripe-multi-price-white.md
@@ -30,6 +30,5 @@ product = "Example Product"
[fields.email]
text = "Your email address"
+++
-[fields.email]
- text =
+
You can pay for the product by filling this form (provided by Stripe).
diff --git a/exampleSite/content/dev/colors/stripe/stripe-only-editable-dark.md b/exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-only-editable-dark.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-dark.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-only-editable-light.md b/exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-only-editable-light.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-light.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-only-editable-primary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-only-editable-primary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-primary.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-only-editable-secondary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-only-editable-secondary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-secondary.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-only-editable-white.md b/exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-only-editable-white.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-only-editable-white.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-primary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-primary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-primary.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-secondary.md b/exampleSite/content/dev/colors/dev-stripe/stripe-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-secondary.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-secondary.md
diff --git a/exampleSite/content/dev/colors/stripe/stripe-white.md b/exampleSite/content/dev/colors/dev-stripe/stripe-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/stripe/stripe-white.md
rename to exampleSite/content/dev/colors/dev-stripe/stripe-white.md
diff --git a/exampleSite/content/dev/colors/table/index.md b/exampleSite/content/dev/colors/dev-table/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/index.md
rename to exampleSite/content/dev/colors/dev-table/index.md
diff --git a/exampleSite/content/dev/colors/table/table-dark.md b/exampleSite/content/dev/colors/dev-table/table-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/table-dark.md
rename to exampleSite/content/dev/colors/dev-table/table-dark.md
diff --git a/exampleSite/content/dev/colors/table/table-light.md b/exampleSite/content/dev/colors/dev-table/table-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/table-light.md
rename to exampleSite/content/dev/colors/dev-table/table-light.md
diff --git a/exampleSite/content/dev/colors/table/table-primary.md b/exampleSite/content/dev/colors/dev-table/table-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/table-primary.md
rename to exampleSite/content/dev/colors/dev-table/table-primary.md
diff --git a/exampleSite/content/dev/colors/table/table-secondary.md b/exampleSite/content/dev/colors/dev-table/table-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/table-secondary.md
rename to exampleSite/content/dev/colors/dev-table/table-secondary.md
diff --git a/exampleSite/content/dev/colors/table/table-white.md b/exampleSite/content/dev/colors/dev-table/table-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/table/table-white.md
rename to exampleSite/content/dev/colors/dev-table/table-white.md
diff --git a/exampleSite/content/dev/colors/toc/index.md b/exampleSite/content/dev/colors/dev-toc/index.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/index.md
rename to exampleSite/content/dev/colors/dev-toc/index.md
diff --git a/exampleSite/content/dev/colors/toc/toc-dark.md b/exampleSite/content/dev/colors/dev-toc/toc-dark.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/toc-dark.md
rename to exampleSite/content/dev/colors/dev-toc/toc-dark.md
diff --git a/exampleSite/content/dev/colors/toc/toc-light.md b/exampleSite/content/dev/colors/dev-toc/toc-light.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/toc-light.md
rename to exampleSite/content/dev/colors/dev-toc/toc-light.md
diff --git a/exampleSite/content/dev/colors/toc/toc-primary.md b/exampleSite/content/dev/colors/dev-toc/toc-primary.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/toc-primary.md
rename to exampleSite/content/dev/colors/dev-toc/toc-primary.md
diff --git a/exampleSite/content/dev/colors/toc/toc-secondary.md b/exampleSite/content/dev/colors/dev-toc/toc-secondary.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/toc-secondary.md
rename to exampleSite/content/dev/colors/dev-toc/toc-secondary.md
diff --git a/exampleSite/content/dev/colors/toc/toc-white.md b/exampleSite/content/dev/colors/dev-toc/toc-white.md
similarity index 100%
rename from exampleSite/content/dev/colors/toc/toc-white.md
rename to exampleSite/content/dev/colors/dev-toc/toc-white.md
diff --git a/exampleSite/content/docs/fragments/content.md b/exampleSite/content/docs/fragments/content.md
index 98c13865..32315fbf 100644
--- a/exampleSite/content/docs/fragments/content.md
+++ b/exampleSite/content/docs/fragments/content.md
@@ -89,8 +89,8 @@ Each section can have global fragments and if there are multiple fragments with
### Built-in fragments
-There are several pre-bundled fragments already available in Syna. You can see the full list and their documentation in the [fragments](/fragments) section.
-These fragments make use of some [global variables](/docs/global-variables) along with their own variables which are mentioned in the fragment's page.
+There are several pre-bundled fragments already available in Syna. You can see the full list and their documentation in the [fragments]({{< ref "fragments" >}}) section.
+These fragments make use of some [global variables]({{< ref "global-variables" >}}) along with their own variables which are mentioned in the fragment's page.
### Custom fragments
diff --git a/exampleSite/content/docs/global-variables/content.md b/exampleSite/content/docs/global-variables/content.md
index befffbb6..7bdf5000 100644
--- a/exampleSite/content/docs/global-variables/content.md
+++ b/exampleSite/content/docs/global-variables/content.md
@@ -14,7 +14,7 @@ variables are as follows:
*type: string*
**Required for every fragment**
-Specifies what fragment the current file controls. Checkout [Fragment Implementation](/docs/fragments-implementation/) for more info.
+Specifies what fragment the current file controls. Checkout [Fragment Implementation]({{< ref "fragments-implementation" >}}) for more info.
#### weight
*type: number*
@@ -28,7 +28,7 @@ Set the background of the fragment.
Background also affects the text color of the fragment's content.
For the background colors of `white`, `light`, `secondary` and `primary` we use Bootstrap's `text_dark` class on content and for other backgrounds, we use `text_light`.
-List of all supported colors can be found in [supported colors](/docs/supported-colors) section of the docs.
+List of all supported colors can be found in [supported colors]({{< ref "supported-colors" >}}) section of the docs.
#### title
*type: string*
@@ -68,7 +68,7 @@ Please make sure to provide the correct size as documented for each fragment's a
##### asset.image
*type: string*
-Link to an image file. `asset.image` supports the build in [image fallthrough mechanism](/docs/image-fallthrough/).
+Link to an image file. `asset.image` supports the build in [image fallthrough mechanism]({{< ref "image-fallthrough" >}}).
If `asset.image` is set, `asset.icon` will be ignored.
##### asset.icon
diff --git a/exampleSite/content/docs/supported-colors/content.md b/exampleSite/content/docs/supported-colors/content.md
index 68e6013b..b21b16ea 100644
--- a/exampleSite/content/docs/supported-colors/content.md
+++ b/exampleSite/content/docs/supported-colors/content.md
@@ -24,4 +24,4 @@ These colors are customized within `config.toml` to fit the Syna theme.
Classes are mainly used for backgrounds and button colors.
Links, inline code and other elements will also be changed.
-These colors can also be overwritten for more details see our [style documentation](/docs/development/#styles).
+These colors can also be overwritten for more details see our [style documentation]({{< ref "development" >}}#styles).
diff --git a/exampleSite/content/fragments/404/docs.md b/exampleSite/content/fragments/404/docs.md
index 8fc10786..c4737ec5 100644
--- a/exampleSite/content/fragments/404/docs.md
+++ b/exampleSite/content/fragments/404/docs.md
@@ -33,10 +33,10 @@ Title of the call to action button.
URL for the call to action button.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
The asset will be displayed on top of the fragment, before title and subtitle.
Asset in this fragment only support images that are supported in `img` tag (`.png`, `.jpg`, `.gif`, `.svg`, etc.).
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/buttons/docs.md b/exampleSite/content/fragments/buttons/docs.md
index 99b8c542..3916d0c4 100644
--- a/exampleSite/content/fragments/buttons/docs.md
+++ b/exampleSite/content/fragments/buttons/docs.md
@@ -34,4 +34,4 @@ URL of the call to action button.
Color class of the button, based on Bootstrap classes.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/config/docs.md b/exampleSite/content/fragments/config/docs.md
index 1741e054..3f2320a0 100644
--- a/exampleSite/content/fragments/config/docs.md
+++ b/exampleSite/content/fragments/config/docs.md
@@ -39,4 +39,4 @@ HTML code injected directly to the page.
If `config.type` is set to any of `css`, `js` or `icon`, either `config.resource` or `config.html` should be provided.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]{{< ref "global-variables">}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/contact/docs.md b/exampleSite/content/fragments/contact/docs.md
index b2c509d7..959706cb 100644
--- a/exampleSite/content/fragments/contact/docs.md
+++ b/exampleSite/content/fragments/contact/docs.md
@@ -21,13 +21,13 @@ Contributions for translations are welcome.
### Events
-This fragment uses the [Events](/docs/events) api by default.
+This fragment uses the [Events]({{< ref "events" >}}) api by default.
#### Subscribers
##### contact:update
-This event is not published by any fragment by default. But you can make use of it through [event urls](/docs/events/#event-urls).
+This event is not published by any fragment by default. But you can make use of it through [event urls]({{< ref "events" >}}#event-urls).
###### name
*type: string*
@@ -168,4 +168,4 @@ Any other value for the `name` variable in the `fields.hidden` object will have
Value of the hidden field. This field will be overridden if `name` is set to `site` or `page`.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/content/docs.md b/exampleSite/content/fragments/content/docs.md
index 91d90949..921b8562 100644
--- a/exampleSite/content/fragments/content/docs.md
+++ b/exampleSite/content/fragments/content/docs.md
@@ -22,7 +22,7 @@ title = "Documentation"
Ability to override the generated default summary by Hugo to be displayed in fragments such as List.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
This value will render an image on top of the content.
@@ -59,4 +59,4 @@ Sets the alignment on the page.
Markdown enabled content that would be rendered in the sidebar.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/copyright/docs.md b/exampleSite/content/fragments/copyright/docs.md
index 2984de54..9bb3c76c 100644
--- a/exampleSite/content/fragments/copyright/docs.md
+++ b/exampleSite/content/fragments/copyright/docs.md
@@ -28,4 +28,4 @@ Use one instance of this fragment per page. Running more might lead to unexpecte
If set to true, the Syna theme name and link would be shown using the `attribution` snippet from `i18n`.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/editor/docs.md b/exampleSite/content/fragments/editor/docs.md
index f10a1a86..0959fc34 100644
--- a/exampleSite/content/fragments/editor/docs.md
+++ b/exampleSite/content/fragments/editor/docs.md
@@ -11,4 +11,4 @@ directory of the fragment for the JSON data of the form.
No variable is needed for this fragment, except for global variables.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/embed/docs.md b/exampleSite/content/fragments/embed/docs.md
index 84c854ed..5c537fbb 100644
--- a/exampleSite/content/fragments/embed/docs.md
+++ b/exampleSite/content/fragments/embed/docs.md
@@ -44,4 +44,4 @@ Percentage value to force embed object or iframe to be a specific width of its p
If `responsive` is set to `true` then this value would be ignored.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/faq/docs.md b/exampleSite/content/fragments/faq/docs.md
index 3c7d2892..ac448bff 100644
--- a/exampleSite/content/fragments/faq/docs.md
+++ b/exampleSite/content/fragments/faq/docs.md
@@ -10,4 +10,4 @@ title = "Documentation"
No variable is needed for this fragment, except for global variables.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/footer/docs.md b/exampleSite/content/fragments/footer/docs.md
index 763fc211..64b6c0b4 100644
--- a/exampleSite/content/fragments/footer/docs.md
+++ b/exampleSite/content/fragments/footer/docs.md
@@ -25,11 +25,11 @@ Use one instance of this fragment per page. Running more might lead to unexpecte
Title of the menu displayed in the footer.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
*size: 220x100*
The asset such as images or graphics is displayed on top left of the fragment and can be used for a logo.
The global variables `subtitle`, `title_align` are not supported in this fragment.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/graph/docs.md b/exampleSite/content/fragments/graph/docs.md
index 64c5d5a8..377df716 100644
--- a/exampleSite/content/fragments/graph/docs.md
+++ b/exampleSite/content/fragments/graph/docs.md
@@ -18,4 +18,4 @@ title = "Documentation"
*type: string (number with unit as suffix)*
*default: 100%*
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/header/docs.md b/exampleSite/content/fragments/header/docs.md
index 03991f1b..83048a14 100644
--- a/exampleSite/content/fragments/header/docs.md
+++ b/exampleSite/content/fragments/header/docs.md
@@ -10,4 +10,4 @@ title = "Documentation"
This fragment is to display a header as a single fragment. It doesn't have any variables except for global ones.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/hero/docs.md b/exampleSite/content/fragments/hero/docs.md
index f5e47883..ea5e3164 100644
--- a/exampleSite/content/fragments/hero/docs.md
+++ b/exampleSite/content/fragments/hero/docs.md
@@ -43,12 +43,12 @@ If set to `true`, Particles.js would be added to the page and displayed in the H
Sets minimum height of hero fragment.
#### header
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
Background image of the Hero fragment.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
The asset is displayed on the Hero fragment instead of the `title` and can be used to display a logo.
@@ -59,6 +59,6 @@ The asset is displayed on the Hero fragment instead of the `title` and can be us
Call to action buttons displayed after title or asset and subtitle.
-Visit [Buttons fragment page (documentation section)](/fragments/buttons#docs) for documentation on which variables to use.
+Visit [Buttons fragment page (documentation section)]({{< ref "buttons" >}}#docs) for documentation on which variables to use.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/item/docs.md b/exampleSite/content/fragments/item/docs.md
index 13f21548..0cdf97ad 100644
--- a/exampleSite/content/fragments/item/docs.md
+++ b/exampleSite/content/fragments/item/docs.md
@@ -36,20 +36,20 @@ The value shown after the sidebar content. This variable is optional.
#### buttons
*type: array of objects*
-Buttons can be defined using the same [variables as buttons fragment](/fragments/buttons#buttons).
+Buttons can be defined using the same [variables as buttons fragment]({{< ref "buttons" >}}#buttons).
If an asset is defined or the fragment is centered, buttons are displayed in the main section of the fragment. If not, they're displayed in the siderbar.
This variable is optional.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
Either an image or an icon. The asset is displayed in the sidebar unless the fragment is centered.
#### header, rows (table fragment)
-*type: [table object](/fragments/table/#docs)*
+*type: [table object]({{< ref "table" >}}#docs)*
-A table can be added to the item fragment using the same variables as the table fragment. Please read more about tables in the [table fragment's docs](/fragments/table/#docs).
+A table can be added to the item fragment using the same variables as the table fragment. Please read more about tables in the [table fragment's docs]({{< ref "table" >}}#docs).
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/items/docs.md b/exampleSite/content/fragments/items/docs.md
index 2d8eb4c6..c97e24cf 100644
--- a/exampleSite/content/fragments/items/docs.md
+++ b/exampleSite/content/fragments/items/docs.md
@@ -10,7 +10,7 @@ title = "Documentation"
### Variables
-`index.md` only uses [global varibales](/docs/global-variables). Following variables are for subitems.
+`index.md` only uses [global varibales]({{< ref "global-variables" >}}). Following variables are for subitems.
#### title
*type: string*
@@ -18,7 +18,7 @@ title = "Documentation"
Title of the item column.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]{{< ref "/global-variables" >}}#asset)*
*size: 300x110*
Either an image or an icon shown in the column.
@@ -29,4 +29,4 @@ Either an image or an icon shown in the column.
Description of the column. This variable is optional.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/list/code-list-tiled.md b/exampleSite/content/fragments/list/code-list-tiled.md
index 72c98666..a423bfb6 100644
--- a/exampleSite/content/fragments/list/code-list-tiled.md
+++ b/exampleSite/content/fragments/list/code-list-tiled.md
@@ -16,7 +16,7 @@ subtitle = "Displays pages from dev/blog section"
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/fragments/list/code-list.md b/exampleSite/content/fragments/list/code-list.md
index 745d6de4..78467614 100644
--- a/exampleSite/content/fragments/list/code-list.md
+++ b/exampleSite/content/fragments/list/code-list.md
@@ -16,7 +16,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/fragments/list/list-tiled.md b/exampleSite/content/fragments/list/list-tiled.md
index 7da38120..5744abe5 100644
--- a/exampleSite/content/fragments/list/list-tiled.md
+++ b/exampleSite/content/fragments/list/list-tiled.md
@@ -8,7 +8,7 @@ subtitle = "Displays pages from dev/blog section"
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/fragments/list/list.md b/exampleSite/content/fragments/list/list.md
index 5e8711f6..4948ca84 100644
--- a/exampleSite/content/fragments/list/list.md
+++ b/exampleSite/content/fragments/list/list.md
@@ -8,7 +8,7 @@ title_align = "left" # Default is center, can be left, right or center
background = "secondary"
count = 5 # Default value is 10
-section = "dev/blog" # Default value is current section
+section = "example/blog" # Default value is current section
#summary = false # Default value is true
#images = false # Default value is true
#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show)
diff --git a/exampleSite/content/fragments/member/docs.md b/exampleSite/content/fragments/member/docs.md
index 6376522f..bcb23798 100644
--- a/exampleSite/content/fragments/member/docs.md
+++ b/exampleSite/content/fragments/member/docs.md
@@ -32,14 +32,14 @@ This fragment needs a fragment controller file and subitems. You need to create
*Markdown enabled*
#### icons
-*type: array of [asset object](/docs/global-variables/#asset)s*
+*type: array of [asset object]({{< ref "global-variables" >}}#asset)s*
Social media and other icons.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
*size: 250x250*
Member avatar.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/nav/docs.md b/exampleSite/content/fragments/nav/docs.md
index 5b321699..963c09ba 100644
--- a/exampleSite/content/fragments/nav/docs.md
+++ b/exampleSite/content/fragments/nav/docs.md
@@ -71,7 +71,7 @@ content/blog/article-1 # level 2, shown
*accepted values: primary, secondary, white, light, dark, warning, success, danger, info, transparent*
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
Asset will be shown as a clickable logo directing to the main page.
@@ -92,4 +92,4 @@ The icon can be customized via `repo_button.icon`.
*type: string*
*default: fab fa-github*
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/portfolio/docs.md b/exampleSite/content/fragments/portfolio/docs.md
index 5db2dcad..113b65ac 100644
--- a/exampleSite/content/fragments/portfolio/docs.md
+++ b/exampleSite/content/fragments/portfolio/docs.md
@@ -12,7 +12,7 @@ This fragment needs a fragment controller file and subitems. You need to create
### Variables
-`index.md` only uses [global varibales](/docs/global-variables). Following variables are for subitems.
+`index.md` only uses [global varibales]({{< ref "global-variables" >}}). Following variables are for subitems.
#### title
*type: string*
@@ -32,9 +32,9 @@ URL of the portfolio item. If set, then clicking the portfolio item would open t
**NOTE:** This variable may be deprecated in the future and be renamed to `url`.
#### asset
-*type: [asset object](/docs/global-variables/#asset)*
+*type: [asset object]({{< ref "global-variables" >}}#asset)*
*size: 500x380*
The image that is shown on the portfolio item.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/pricing/docs.md b/exampleSite/content/fragments/pricing/docs.md
index f92652bc..4900a817 100644
--- a/exampleSite/content/fragments/pricing/docs.md
+++ b/exampleSite/content/fragments/pricing/docs.md
@@ -12,7 +12,7 @@ This fragment needs a fragment controller file and subitems. You need to create
### Events
-Pricing fragment doesn't subscribe to any events by default and only publishes events in [special circumstances](#usage-with-events). Please checkout [usage with events](#usage-with-events) to learn more. The published event is listened to in the [Stripe fragment](/fragments/stripe) and will cause the Stripe fragment to change it's properties.
+Pricing fragment doesn't subscribe to any events by default and only publishes events in [special circumstances](#usage-with-events). Please checkout [usage with events](#usage-with-events) to learn more. The published event is listened to in the [Stripe fragment]({{< ref "stripe" >}}) and will cause the Stripe fragment to change it's properties.
### Variables
@@ -55,4 +55,4 @@ This array will be displayed on the pricing column, listing what is aviable in t
##### features.icon
*type: string*
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/react-portal/docs.md b/exampleSite/content/fragments/react-portal/docs.md
index 2eb22e98..606f53d6 100644
--- a/exampleSite/content/fragments/react-portal/docs.md
+++ b/exampleSite/content/fragments/react-portal/docs.md
@@ -26,4 +26,4 @@ window.synaPortals['UNIQUE_IDENTIFIER] = {
Add this code to your script (the file you have defined your React component). If your component doesn't show up, make sure your code is being loaded before `syna-react.js`.
An easy way to make sure of that is to use the `config` fragment.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/search/docs.md b/exampleSite/content/fragments/search/docs.md
index 3c7d2892..ac448bff 100644
--- a/exampleSite/content/fragments/search/docs.md
+++ b/exampleSite/content/fragments/search/docs.md
@@ -10,4 +10,4 @@ title = "Documentation"
No variable is needed for this fragment, except for global variables.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/stripe/docs.md b/exampleSite/content/fragments/stripe/docs.md
index e781f077..7376041a 100644
--- a/exampleSite/content/fragments/stripe/docs.md
+++ b/exampleSite/content/fragments/stripe/docs.md
@@ -16,13 +16,13 @@ The use of a backend is also useful for saving other information from the user s
### Events
-This fragment uses the [Events](/docs/events) api by default.
+This fragment uses the [Events]({{< ref "events" >}}) api by default.
#### Subscribers
##### pricing:change
-This event is published by the [Pricing fragment](/fragments/pricing/#events). It can also be published by [event urls](/docs/events/#event-urls).
+This event is published by the [Pricing fragment]({{< ref "pricing" >}}#events). It can also be published by [event urls]({{< ref "events" >}}#event-urls).
###### product
*type: string*
@@ -99,4 +99,4 @@ Default value in the editable price field. The value should follow the same rule
The currency in which the user will be charged. The value should follow the same rules as [prices.currency](#prices-currency).
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/table/docs.md b/exampleSite/content/fragments/table/docs.md
index dc078985..ea559392 100644
--- a/exampleSite/content/fragments/table/docs.md
+++ b/exampleSite/content/fragments/table/docs.md
@@ -73,4 +73,4 @@ Specifies the horizontal alignment of the cell.
If set to `true`, the cell will not appear on smaller devices. The table behaves responsive to the width but using this feature you can lessen the width of the table, making it easier to navigate.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.
diff --git a/exampleSite/content/fragments/toc/docs.md b/exampleSite/content/fragments/toc/docs.md
index c5443520..00cfa323 100644
--- a/exampleSite/content/fragments/toc/docs.md
+++ b/exampleSite/content/fragments/toc/docs.md
@@ -20,4 +20,4 @@ If it's standalone, then the `content` fragment is required.
Path to the content fragment that you need the table of contents of. This path can be relative to the page or relative to `content/` directory.
-[Global variables](/docs/global-variables) are documented as well and have been omitted from this page.
+[Global variables]({{< ref "global-variables" >}}) are documented as well and have been omitted from this page.