diff --git a/assets/scss/_videos.scss b/assets/scss/_videos.scss index 3851f343..b7c75310 100644 --- a/assets/scss/_videos.scss +++ b/assets/scss/_videos.scss @@ -17,14 +17,32 @@ } .play-icon-path { - fill: white; + fill: #ddd; transition: fill 0.3s ease; } - .bg-gradient-overlay:hover .video-btn-wrapper { - background-color: #ffffff; + .video:hover { + .play-icon-path { + fill: #00b39f; + } + .video-btn-wrapper { + background-color: #ddd; + } + > .card-title { + color: $white; + } + > .card-text { + color: $casper; + } } - - .bg-gradient-overlay:hover .play-icon-path { - fill: #00b39f; + + .video > .card-title { + font-weight: bold; + color: $casper; } + .video > .card-text { + color: $lightslategray; + font-size: .9rem; + margin-top: .5rem; + font-style: italic; + } \ No newline at end of file diff --git a/content/en/kanvas/designer/comments/_index.md b/content/en/kanvas/designer/comments/_index.md index 5991a0b8..3ff7ffcb 100644 --- a/content/en/kanvas/designer/comments/_index.md +++ b/content/en/kanvas/designer/comments/_index.md @@ -4,7 +4,7 @@ description: > Learn how to leverage comments in Kanvas's Designer Mode to enhance collaboration and streamline design reviews. weight: 3 categories: [Designer] -tags: [designs, collaboration, review] +tags: [designs, collaboration, review, comments] format: [video] aliases: - /meshmap/designer/comments diff --git a/content/en/videos/getting-started/comments/adding-comments.md b/content/en/videos/getting-started/comments/adding-comments.md index 4ca2449c..2ae90b0d 100644 --- a/content/en/videos/getting-started/comments/adding-comments.md +++ b/content/en/videos/getting-started/comments/adding-comments.md @@ -9,7 +9,7 @@ autoplay: true # optional loop: true #optional categories: [Designer] formats: [video] -tags: [review, collaboration] +tags: [review, collaboration, comments] --- {{< youtube bb6J--aApk8 >}} \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index fa87a9f9..a7480f23 100644 --- a/hugo.toml +++ b/hugo.toml @@ -20,17 +20,16 @@ enableGitInfo = true [taxonomies] tag = "tags" category = "categories" -format = "formats" [params.taxonomy] # set taxonomyCloud = [] to hide taxonomy clouds -taxonomyCloud = ["tags", "categories", "format"] +taxonomyCloud = ["tags", "categories"] # If used, must have same length as taxonomyCloud -taxonomyCloudTitle = ["Tags", "Categories", "Formats"] +taxonomyCloudTitle = ["Tags", "Categories"] # set taxonomyPageHeader = [] to hide taxonomies on the page headers -taxonomyPageHeader = ["tags", "categories", "formats"] +taxonomyPageHeader = ["tags", "categories"] staticDir = ['static'] diff --git a/layouts/_default/content.html b/layouts/_default/content.html index 74e1227e..901c15f8 100644 --- a/layouts/_default/content.html +++ b/layouts/_default/content.html @@ -1,7 +1,7 @@

{{ .Title }}

{{ with .Params.description }}
{{ . | markdownify }}
{{ end }} -
+
diff --git a/layouts/partials/video-section-index.html b/layouts/partials/video-section-index.html index ebc9938f..fda64662 100644 --- a/layouts/partials/video-section-index.html +++ b/layouts/partials/video-section-index.html @@ -27,7 +27,7 @@ {{ with .Params.manualLinkTitle }} title="{{ . }}"{{ end }} {{ with .Params.manualLinkTarget }} target="{{ . }}"{{ if eq . "_blank" }} rel="noopener"{{ end }}{{ end }} class="col-md-4 mb-4"> -
+
{{ if .Params.videoType }} {{ if eq .Params.videoType "local" }} @@ -62,9 +62,9 @@ {{ end }}
-
-
{{ .Title }}
-

{{ .Description }}

+
+
{{ .Title }}
+

{{ .Description }}

diff --git a/layouts/partials/video-section-related.html b/layouts/partials/video-section-related.html new file mode 100644 index 00000000..292c84d5 --- /dev/null +++ b/layouts/partials/video-section-related.html @@ -0,0 +1,19 @@ +
+ {{ $page := .Page -}} + + {{ $pages := (where .Site.Pages ".Params.video_id" "!=" nil) -}} + + {{ if or $page.Params.no_list (eq (len $pages) 0) -}} + +
+ {{ range $pages -}} + {{ $manualLink := cond (isset .Params "manuallink") .Params.manualLink ( cond (isset .Params "manuallinkrelref") (relref . .Params.manualLinkRelref) .RelPermalink) -}} +
+
+ {{- .Title -}} +
+

{{ .Description | markdownify -}}

+
+ {{ end -}} + {{ end -}} +
diff --git a/layouts/release/list.html b/layouts/release/list.html index b365673b..49d760f6 100644 --- a/layouts/release/list.html +++ b/layouts/release/list.html @@ -2,7 +2,7 @@

{{ .Title }}

{{ with .Params.description }}
{{ . | markdownify }}
{{ end }} -