From b5e0967d0245e3ce5de8161817eb855dd1b7e308 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Tue, 19 Nov 2024 15:43:20 +0100 Subject: [PATCH] edit to solutions --- content/header/index.md | 2 +- content/{products => solutions}/index.md | 6 +++--- templates/layouts/products.html | 7 ------- templates/layouts/solutions.html | 7 +++++++ templates/partials/home/hero.html | 2 +- templates/partials/{products => solutions}/hero.html | 0 .../partials/{products => solutions}/portfolio copy.html | 0 templates/partials/{products => solutions}/portfolio.html | 0 8 files changed, 12 insertions(+), 12 deletions(-) rename content/{products => solutions}/index.md (75%) delete mode 100644 templates/layouts/products.html create mode 100644 templates/layouts/solutions.html rename templates/partials/{products => solutions}/hero.html (100%) rename templates/partials/{products => solutions}/portfolio copy.html (100%) rename templates/partials/{products => solutions}/portfolio.html (100%) diff --git a/content/header/index.md b/content/header/index.md index eac4dc5bc..ffd3c6ec8 100644 --- a/content/header/index.md +++ b/content/header/index.md @@ -8,7 +8,7 @@ extra: --- - [Why]("/about") -- [Products]("/products") +- [Products]("/solutions") - Info diff --git a/content/products/index.md b/content/solutions/index.md similarity index 75% rename from content/products/index.md rename to content/solutions/index.md index abd4b80c2..74f5d8ae9 100644 --- a/content/products/index.md +++ b/content/solutions/index.md @@ -1,7 +1,7 @@ --- -title: "Products" -description: "ThreeFold's products." # quotation marks to allow colons where used -template: "layouts/products.html" +title: "Solutions" +description: "ThreeFold's Solutions." # quotation marks to allow colons where used +template: "layouts/solutions.html" insert_anchor_links: "left" extra: author: Your name here diff --git a/templates/layouts/products.html b/templates/layouts/products.html deleted file mode 100644 index 03011420f..000000000 --- a/templates/layouts/products.html +++ /dev/null @@ -1,7 +0,0 @@ -{% extends "_default/base.html" %} -{% block content %} - -{% include "partials/products/hero.html" %} -{% include "partials/products/portfolio.html" %} -{% include "partials/home/cta.html" %} -{% endblock content %} \ No newline at end of file diff --git a/templates/layouts/solutions.html b/templates/layouts/solutions.html new file mode 100644 index 000000000..c916d6e2c --- /dev/null +++ b/templates/layouts/solutions.html @@ -0,0 +1,7 @@ +{% extends "_default/base.html" %} +{% block content %} + +{% include "partials/solutions/hero.html" %} +{% include "partials/solutions/portfolio.html" %} +{% include "partials/solutions/cta.html" %} +{% endblock content %} \ No newline at end of file diff --git a/templates/partials/home/hero.html b/templates/partials/home/hero.html index 820b5f378..d30b7993e 100644 --- a/templates/partials/home/hero.html +++ b/templates/partials/home/hero.html @@ -6,7 +6,7 @@

That's ThreeFold.

Get Started - See Solutions + See Solutions
diff --git a/templates/partials/products/hero.html b/templates/partials/solutions/hero.html similarity index 100% rename from templates/partials/products/hero.html rename to templates/partials/solutions/hero.html diff --git a/templates/partials/products/portfolio copy.html b/templates/partials/solutions/portfolio copy.html similarity index 100% rename from templates/partials/products/portfolio copy.html rename to templates/partials/solutions/portfolio copy.html diff --git a/templates/partials/products/portfolio.html b/templates/partials/solutions/portfolio.html similarity index 100% rename from templates/partials/products/portfolio.html rename to templates/partials/solutions/portfolio.html