瀏覽代碼

feat(widget): add `css_class` option to customize widget style

Allows user to customize the style of a particular widget using the CSS
plugin feature. For example, the background of a widget could be changed
to an image or gradient.

Close #322
George Cushen 6 年之前
父節點
當前提交
a4ffd6efc5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      layouts/partials/widget_page.html

+ 1 - 1
layouts/partials/widget_page.html

@@ -18,7 +18,7 @@
   {{ if in (slice "hero" "hero_carousel") $page.Params.widget }}
     {{ partial $widget $params }}
   {{ else }}
-  <section id="{{ $page.File.TranslationBaseName }}" class="home-section">
+  <section id="{{ $page.File.TranslationBaseName }}" class="home-section{{ with $page.Params.css_class }} {{ . }}{{ end }}">
     <div class="container">
       {{ partial $widget $params }}
     </div>