From 60d228022abb6c6a2300d7c27de834839c4c6df1 Mon Sep 17 00:00:00 2001 From: anso33 Date: Fri, 3 Nov 2023 05:15:24 +0900 Subject: [PATCH] fix: Modify files to render image file --- _includes/views/banner.html | 222 ++++++++++------------ _includes/views/header.html | 2 +- _includes/views/site-brand.html | 2 +- _layouts/home.html | 6 +- _sass/misc/google-translate.scss | 12 +- assets/images/{ => banners}/kernel360.png | Bin 6 files changed, 109 insertions(+), 135 deletions(-) rename assets/images/{ => banners}/kernel360.png (100%) diff --git a/_includes/views/banner.html b/_includes/views/banner.html index 1db45a5..5641bf5 100644 --- a/_includes/views/banner.html +++ b/_includes/views/banner.html @@ -1,131 +1,107 @@ -{%- include functions.html func='log' level='debug' msg='Get banner_html value' -%} -{% assign name = 'banner_html' %} -{%- include functions.html func='get_value' -%} -{% assign banner_html = return %} +{%- include functions.html func='log' level='debug' msg='Get banner_html value' +-%} {% assign name = 'banner_html' %} {%- include functions.html +func='get_value' -%} {% assign banner_html = return %} {%- include +functions.html func='log' level='debug' msg='Get heading value' -%} {% assign +name = 'heading' %} {%- include functions.html func='get_value' -%} {% assign +heading = return %} {%- include functions.html func='log' level='debug' msg='Get +subheading value' -%} {% assign name = 'subheading' %} {%- include +functions.html func='get_value' -%} {% assign subheading = return %} {%- include +functions.html func='get_banner' -%} {%- if has_banner -%} {%- if +banner_background -%} + +{%- endif -%} {%- if banner_height -%} + +{%- endif -%} {%- if banner_opacity -%} + - {%- endif -%} - {%- if banner_height -%} - - {%- endif -%} - - {%- if banner_opacity -%} - - {%- endif -%} - {%- if banner_heading_style -%} - - {%- endif -%} - {%- if banner_subheading_style -%} - - {%- endif -%} -
-
- {%- if banner_video -%} - - - {%- else -%} -
- - {%- endif -%} -
-
-
- - {%- if banner_html -%} - - {%- assign banner_html = 'views/' | append: banner_html -%} - {%- include {{ banner_html }} -%} - - {%- else -%} + }); + } -
-

- {{ heading | default: page.title | escape }} -

-

- {{ subheading | default: page.subtitle | escape }} -

-
+ video.onloadstart = function() { + video.currentTime = {{ banner_start_at }}; + video.volume = {{ banner_volume }}; + video.muted = (video.volume == 0); + videoPlay(); + } + video.onended = function() { + video.currentTime = {{ banner_start_at }}; + video.volume = 0; + {%- if banner_loop -%} + video.play(); {%- endif -%} + } + })(); + + {%- else -%} +
+ + {%- endif -%} +
+
+
+ {%- if banner_html -%} {%- assign banner_html = 'views/' | append: + banner_html -%} {%- include {{ banner_html }} -%} {%- else -%} + +
+

+ {{ heading | default: page.title | escape }} +

+

+ {{ subheading | default: page.subtitle | escape }} +

+ + {%- endif -%}
-
+ + {%- endif -%} - diff --git a/_includes/views/header.html b/_includes/views/header.html index 7089c7e..c3a28dc 100644 --- a/_includes/views/header.html +++ b/_includes/views/header.html @@ -29,10 +29,10 @@
{%- for path in page_paths -%} {%- assign my_page = site.pages | where: "path", path | first -%} {%- if my_page.title -%} + {{ my_page.title | upcase | escape }} - {%- endif -%} {%- endfor -%} {%- assign name = 'translate_langs' -%} {%- include functions.html func='get_value' -%} {%- assign translate_langs = return -%} {%- if translate_langs.size > 0 -%} {%- diff --git a/_includes/views/site-brand.html b/_includes/views/site-brand.html index b632b56..32b8880 100644 --- a/_includes/views/site-brand.html +++ b/_includes/views/site-brand.html @@ -2,7 +2,7 @@
- Kernel360 Crew Tech Blog + Kernel360 Crew Tech Blog
diff --git a/_layouts/home.html b/_layouts/home.html index 4753b16..02edfc1 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -1,8 +1,8 @@ --- layout: articles -heading: 'Your awesome heading' -subheading: 'Your awesome subheading' -banner: 'default' +heading: "" +subheading: "" +banner: "default" --- {{ content }} diff --git a/_sass/misc/google-translate.scss b/_sass/misc/google-translate.scss index 04fe567..a7bc7cc 100644 --- a/_sass/misc/google-translate.scss +++ b/_sass/misc/google-translate.scss @@ -49,7 +49,7 @@ div#google_translate_element { font-size: 0; } - div[id=':0.targetLanguage'] { + div[id=":0.targetLanguage"] { display: inline; } @@ -78,7 +78,7 @@ div#google_translate_element { &:before { content: "\f1ab \f0d7"; - font-family: FontAwesome; + font-family: $base-font-family; font-size: initial; color: #fefefe; border: 1px solid #fefefe85; @@ -109,7 +109,6 @@ body { /* OVERRIDE GOOGLE TRANSLATE WIDGET CSS END */ - // Main look .ct-language-selected { @@ -144,7 +143,7 @@ body { } &:not(:last-child) { - border-bottom: 1px solid rgba(0, 0, 0, .04); + border-bottom: 1px solid rgba(0, 0, 0, 0.04); } a { @@ -184,13 +183,12 @@ body { margin-top: 8px; max-height: 10000px; visibility: visible; - box-shadow: 0 0 9px 3px rgba(0, 0, 0, .06); + box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.06); } } &:before { content: "\f1ab \f0d7"; - font-family: FontAwesome; + font-family: $base-font-family; } } - diff --git a/assets/images/kernel360.png b/assets/images/banners/kernel360.png similarity index 100% rename from assets/images/kernel360.png rename to assets/images/banners/kernel360.png