From deb90c6fb2bdafd559df0918bb8cc1060f1c7242 Mon Sep 17 00:00:00 2001 From: Alex Tong Date: Fri, 9 Sep 2022 14:16:38 -0400 Subject: [PATCH 1/9] Add CTA to home --- layouts/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/layouts/index.html b/layouts/index.html index 5120bc29..9415d283 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -20,6 +20,8 @@ {{ partial "blog.html" . }} + {{ partial "cta.html" . }} + {{ partial "contact.html" . }} -{{ end }} \ No newline at end of file +{{ end }} From a08093cc3723f7a73a6d18897e738dfec3f279d7 Mon Sep 17 00:00:00 2001 From: Alex Tong Date: Fri, 9 Sep 2022 15:09:28 -0400 Subject: [PATCH 2/9] Updated style --- .gitignore | 1 + assets/css/style.css | 40 +++++++++++++++++++++++------------- layouts/contact/list.html | 5 ++++- layouts/index.html | 2 -- layouts/partials/footer.html | 6 ++---- 5 files changed, 33 insertions(+), 21 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..45d62d86 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.sw? diff --git a/assets/css/style.css b/assets/css/style.css index c4c90aef..d1b461ed 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -7,6 +7,7 @@ body { p { font-family: "Titillium Web", sans-serif; +/* color: #F2F3EF;*/ color: #9a9a9a; font-size: 15px; } @@ -53,7 +54,8 @@ a:focus, a:hover { } .btn-main, .btn-main-sm { - background-color: #21D6BF; + background-color: #3399FF; +/* background-color: #21D6BF;*/ background-image: linear-gradient(100deg, #f9643d, #fe2a77); color: #fff; display: inline-block; @@ -446,7 +448,8 @@ a:focus, a:hover { } .single-page-header { - background: #1f2532; +/* background: #1f2532;*/ + background: #2596be; padding: 50px 0; text-align: center; color: #fff; @@ -468,7 +471,8 @@ a:focus, a:hover { .navigation { transition: .3s all; - background: #1f2532; +/* background: #1f2532;*/ + background: #2596be; } .select-language a { @@ -504,7 +508,8 @@ a:focus, a:hover { } .navigation .navbar-nav > li > .nav-link { - color: #b6b8bb; + color: #FFF; +/* color: #b6b8bb;*/ font-size: 15px; line-height: 26px; padding: 20px 15px !important; @@ -601,7 +606,8 @@ a:focus, a:hover { -webkit-box-align: center; -ms-flex-align: center; align-items: center; - background: #1f2532; + background: #3399FF; +/* background: #1f2532;*/ } @media (max-width: 480px) { @@ -627,7 +633,8 @@ a:focus, a:hover { } .hero-area .block p { - color: #707d8f; +/* color: #707d8f;*/ + color: #F2F3EF; margin-bottom: 20px; } @@ -1726,8 +1733,9 @@ a:focus, a:hover { Footer section ==================================================================*/ .top-footer { - background-color: #222222; - border-top: 1px solid #404040; +/* background-color: #222222;*/ + background-color: #3399FF; +/* border-top: 1px solid #404040;*/ padding: 100px 0 80px; } @@ -1744,7 +1752,8 @@ a:focus, a:hover { .top-footer p { font-size: 13px; line-height: 30px; - color: #bdbdbd; +/* color: #bdbdbd;*/ + color: #F2F3EF; font-weight: 300; padding-right: 20px; } @@ -1767,15 +1776,17 @@ a:focus, a:hover { .footer-bottom { text-align: center; - background-color: #1b1b1b; - border-top: 1px solid #2c2c2c; +/* background-color: #1b1b1b;*/ + background-color: #2596be; +/* border-top: 1px solid #2c2c2c;*/ padding: 30px 0; } .footer-bottom h5 { font-size: 14px; line-height: 1; - color: #888888; + color: #FFF; +/* color: #888888;*/ font-weight: 400; text-transform: uppercase; margin-top: 7px; @@ -1785,7 +1796,8 @@ a:focus, a:hover { .footer-bottom h6 { font-size: 13px; line-height: 15px; - color: #888888; + color: #FFF; +/* color: #888888;*/ font-weight: 400; text-transform: capitalize; letter-spacing: 1px; @@ -1810,4 +1822,4 @@ a:focus, a:hover { .page-404 h1 { font-size: 200px; -} \ No newline at end of file +} diff --git a/layouts/contact/list.html b/layouts/contact/list.html index deda061d..f22ade0a 100644 --- a/layouts/contact/list.html +++ b/layouts/contact/list.html @@ -1,7 +1,10 @@ {{ define "main" }} + {{ partial "page-title" . }} +{{ partial "cta.html" . }} + {{ partial "contact.html" . }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/layouts/index.html b/layouts/index.html index 9415d283..486d479e 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -12,8 +12,6 @@ {{ partial "portfolio.html" . }} - {{ partial "team.html" . }} - {{ partial "pricing.html" . }} {{ partial "testimonial.html" . }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 341cf531..c9c62d7e 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -40,10 +40,8 @@

{{ .Site.Params.footerSubscribeTitle }}

From 70723e18ad514e09cf70d73efdcdb37a4a262a27 Mon Sep 17 00:00:00 2001 From: Alex Tong Date: Fri, 9 Sep 2022 18:04:57 -0400 Subject: [PATCH 3/9] Reformat contact --- layouts/partials/contact.html | 91 ++++------------------------------- 1 file changed, 9 insertions(+), 82 deletions(-) diff --git a/layouts/partials/contact.html b/layouts/partials/contact.html index 961974c0..9c3d3415 100644 --- a/layouts/partials/contact.html +++ b/layouts/partials/contact.html @@ -14,46 +14,6 @@

{{.}}

-
- {{ "" | safeHTML }} -
-
-
-
-
- {{ "" | safeHTML }} -
-
-
- -
- -
- -
- -
- -
- -
- -
- -
- Thank you. The Mailman is on His Way :) -
- -
- Sorry, don't know what happened. Try later :( -
- -
- -
-
-
-
@@ -67,55 +27,22 @@

Our Location

Call Us

- {{ with .Site.Params.contact.phone }}Office: {{.}} {{ end }} + {{ with .Site.Params.contact.phone }} {{.}} {{ end }}
{{ with .Site.Params.contact.fax }} Fax: {{ . }} {{ end }}

-
-{{ end }} \ No newline at end of file +{{ end }} From 42f0f2c8dadb315dad40fb8e01171d4b2eec2d53 Mon Sep 17 00:00:00 2001 From: Jarrid Rector-Brooks Date: Wed, 1 Feb 2023 16:36:54 -0500 Subject: [PATCH 4/9] Try to remove video box --- layouts/partials/hero.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index c774798e..f3ba8f85 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -3,14 +3,14 @@
-
+
{{ with .Site.Params.hero.heading }} @@ -31,4 +31,4 @@

{{ . }}

-{{ end }} \ No newline at end of file +{{ end }} From 4c69755f7b1498e08846f718897fa9b6c46fb2fb Mon Sep 17 00:00:00 2001 From: Jarrid Rector-Brooks Date: Wed, 1 Feb 2023 16:57:31 -0500 Subject: [PATCH 5/9] cool --- layouts/partials/hero.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index f3ba8f85..fc233022 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -11,7 +11,7 @@ --> -
+
{{ with .Site.Params.hero.heading }}

{{ . }}

From 749b9c599963f73116dbb9c674dd42043f4bfbd1 Mon Sep 17 00:00:00 2001 From: Jarrid Rector-Brooks Date: Wed, 1 Feb 2023 16:59:01 -0500 Subject: [PATCH 6/9] Change --- layouts/partials/hero.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index fc233022..32aa613f 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -2,7 +2,7 @@ {{ "" | safeHTML }}
-
+
-
+
{{ with .Site.Params.hero.heading }}

{{ . }}

From f4d54d0bcf59fa07a7284cf419b1d044f01643be Mon Sep 17 00:00:00 2001 From: Jarrid Rector-Brooks Date: Wed, 1 Feb 2023 17:00:30 -0500 Subject: [PATCH 7/9] Change --- layouts/partials/hero.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index 32aa613f..504a6628 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -1,7 +1,7 @@ {{ if .Site.Params.hero.enable }} {{ "" | safeHTML }}
-
+
" | safeHTML }}
-
-
+
+