From 1b160fd792823988dcb272b8461e2cf5a81eeb50 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Wed, 4 Nov 2020 20:40:43 +0100 Subject: [PATCH] Shortcode pro hero blok --- content/_index.md | 5 +++++ sass/style.scss | 24 ++++++++++++++++++++++++ templates/shortcodes/hero.html | 5 +++++ 3 files changed, 34 insertions(+) create mode 100644 templates/shortcodes/hero.html diff --git a/content/_index.md b/content/_index.md index ac36e06..8c43c1b 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,2 +1,7 @@ +++ +++ + +{{ hero(content=" +

O projektu

+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ac dolor justo. Ut malesuada a velit sed pharetra. Suspendisse fermentum augue sed scelerisque luctus. Ut faucibus elementum bibendum. Interdum et malesuada fames ac ante ipsum primis in faucibus. Duis semper eros sit amet magna venenatis consequat. Curabitur id nisl eget diam commodo cursus. Nunc ligula ligula, sodales vitae dictum quis, egestas at justo. Suspendisse potenti. Donec dictum vestibulum leo, vitae ullamcorper ligula imperdiet vitae.

+") }} diff --git a/sass/style.scss b/sass/style.scss index 0776066..cb83451 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -47,6 +47,25 @@ header { } } +main { + + .hero { + width: 100vw; + position: relative; + left: 50%; + margin-left: -50vw; + background-color: #C61730; + color: #fff; + padding: 4em 0; + text-align: center; + + h1 { + margin-bottom: 2em; + font-size: 1.6em; + } + } +} + footer { background-color: #C61730; color: #fff; @@ -72,3 +91,8 @@ footer { } } } + +main, .wrap { + max-width: 60em; + margin: 0 auto; +} diff --git a/templates/shortcodes/hero.html b/templates/shortcodes/hero.html new file mode 100644 index 0000000..965ff51 --- /dev/null +++ b/templates/shortcodes/hero.html @@ -0,0 +1,5 @@ +
+
+ {{ content | safe }} +
+