From 15c235f622466d0bb60b79e7c6488475f8ce5d2c Mon Sep 17 00:00:00 2001 From: jbleduigou Date: Wed, 21 Oct 2020 21:07:02 +0200 Subject: [PATCH 1/5] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20fix=20typo=20in=20conf?= =?UTF-8?q?ig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jbleduigou --- exampleSite/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 974fa04a..e9108398 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -72,7 +72,7 @@ latitude = "23.7783741" longitude = "90.3746808" pinImage = "images/pin.png" -# Socail icons +# Social icons [[params.social]] icon = "fa-facebook-official" url = "https://www.facebook.com/" From ce767d5301ca1971d466577b953bb4d0205764e8 Mon Sep 17 00:00:00 2001 From: jbleduigou Date: Wed, 21 Oct 2020 21:09:49 +0200 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=8E=A8=20hide=20video=20if=20none=20c?= =?UTF-8?q?onfigured?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jbleduigou --- layouts/partials/hero.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index cd389e1c..2b3fe3d1 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -46,6 +46,8 @@ -webkit-mask-size: contain; -webkit-mask-position: center center; ' /> + + {{ if .videoURL }}
popup @@ -58,6 +60,7 @@
+ {{end}}
From 302d431937f9460f6c4c4635a7890effd97a427b Mon Sep 17 00:00:00 2001 From: jbleduigou Date: Wed, 21 Oct 2020 21:11:38 +0200 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=8E=A8=20add=20missing=20space=20for?= =?UTF-8?q?=20consistencty?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jbleduigou --- 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 2b3fe3d1..60ccf572 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -60,7 +60,7 @@ - {{end}} + {{ end }} From c1ed67aa02e6e3f105f714dfe39a9ca0448d673a Mon Sep 17 00:00:00 2001 From: hervyqa Date: Thu, 29 Oct 2020 06:51:50 +0700 Subject: [PATCH 4/5] add: custom scrollbar --- assets/scss/_scrollbar.scss | 13 +++++++++++++ assets/scss/style.scss | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 assets/scss/_scrollbar.scss diff --git a/assets/scss/_scrollbar.scss b/assets/scss/_scrollbar.scss new file mode 100644 index 00000000..56d67513 --- /dev/null +++ b/assets/scss/_scrollbar.scss @@ -0,0 +1,13 @@ +/* Webkit Scrollbar Customize */ +::-webkit-scrollbar-thumb { + background: $primary; + + &:hover { + background: $secondary; + } +} + +::-webkit-scrollbar { + width: 5px; + background: #fff; +} diff --git a/assets/scss/style.scss b/assets/scss/style.scss index e6d964d4..6d86d726 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -16,6 +16,8 @@ VERSION: 1.0.0 @import "common"; +@import "scrollbar"; + @import "components/preloder"; @import "components/navbar"; From 96dd54c2f39238d5502612fa761597baefac8689 Mon Sep 17 00:00:00 2001 From: hervyqa Date: Thu, 29 Oct 2020 07:02:27 +0700 Subject: [PATCH 5/5] add: clickable addres phone --- layouts/contact/list.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/layouts/contact/list.html b/layouts/contact/list.html index 4c7627c7..0bbad66f 100644 --- a/layouts/contact/list.html +++ b/layouts/contact/list.html @@ -75,7 +75,8 @@

Office Address

Phone & Email

-

{{ $address.phone }}
+

+ {{ $address.phone }}
{{ $address.email }}

@@ -187,4 +188,4 @@

Contact Form

-{{ end }} \ No newline at end of file +{{ end }}