From cb5ff1be74edc4618726bb06b6df25b4b47ded71 Mon Sep 17 00:00:00 2001
From: xaralis <filip.varecha@fragaria.cz>
Date: Mon, 29 Jun 2020 19:10:33 +0200
Subject: [PATCH] Add homepage

---
 .../02-organisms/03-hero/home-hero.mustache   | 15 ++++++++++++
 .../elections-candidates.mustache             |  1 -
 .../_patterns/03-templates/homepage.mustache  | 24 +++++++++++++++++++
 3 files changed, 39 insertions(+), 1 deletion(-)
 create mode 100644 source/_patterns/02-organisms/03-hero/home-hero.mustache
 create mode 100644 source/_patterns/03-templates/homepage.mustache

diff --git a/source/_patterns/02-organisms/03-hero/home-hero.mustache b/source/_patterns/02-organisms/03-hero/home-hero.mustache
new file mode 100644
index 0000000..ad9cb68
--- /dev/null
+++ b/source/_patterns/02-organisms/03-hero/home-hero.mustache
@@ -0,0 +1,15 @@
+<article class="hero py-8 lg:py-16 {{ classes }}">
+  <div class="container container--default grid lg:grid-rows-3 lg:grid-cols-7 gap-2 items-center">
+    <div class="lg:row-span-2 lg:col-span-3 order-1">
+      <h1 class="head-alt-md md:head-alt-xl">Piráti Pardubického kraje</h1>
+    </div>
+    <div class="lg:row-span-1 lg:col-span-3 order-3">
+      <div class="mt-4 md:mt-8 space-y-4">
+        {{> atoms-icon-button(icon: "fas fa-chevron-right", classes: "btn--hoveractive btn--fullwidth md:btn--autowidth text-lg") }}
+      </div>
+    </div>
+    <div class="lg:row-span-3 lg:col-span-4 order-2">
+      <img src="/images/hero-profile-img.png" />
+    </div>
+  </div>
+</article>
diff --git a/source/_patterns/03-templates/elections-candidates.mustache b/source/_patterns/03-templates/elections-candidates.mustache
index 70d1055..fb7fde1 100644
--- a/source/_patterns/03-templates/elections-candidates.mustache
+++ b/source/_patterns/03-templates/elections-candidates.mustache
@@ -42,5 +42,4 @@
   </div>
 </div>
 
-
 {{> organisms-footer }}
diff --git a/source/_patterns/03-templates/homepage.mustache b/source/_patterns/03-templates/homepage.mustache
new file mode 100644
index 0000000..b3db022
--- /dev/null
+++ b/source/_patterns/03-templates/homepage.mustache
@@ -0,0 +1,24 @@
+{{> organisms-header }}
+{{> organisms-home-hero }}
+
+<div class="container container--default lg:pb-24">
+  <section>
+    <h1 class="head-alt-md md:head-alt-lg pb-4 lg:pb-8">Aktuální témata</h1>
+    {{> organisms-article-card-list() }}
+
+    <nav class="text-center">
+      {{> atoms-icon-button(cta: "Další články", icon: "fas fa-chevron-right", classes: "text-xl pt-8") }}
+    </nav>
+  </section>
+
+  <section class="py-16">
+    {{> molecules-calendar }}
+  </section>
+
+  <div class="flex flex-col lg:flex-row lg:space-x-8">
+    {{> atoms-super-button(cta: "Sledujte nás na Facebooku", icon: "fab fa-facebook", classes: "bg-brands-facebook text-white container-padding--zero lg:container-padding--auto lg:w-full") }}
+          {{> atoms-super-button(cta: "Sledujte naše fórum", icon: "fa fa-comments", classes: "bg-black text-white container-padding--zero lg:container-padding--auto lg:w-full") }}
+  </div>
+</div>
+
+{{> organisms-footer }}
-- 
GitLab