| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | {{ partial "header.html" . }}{{ partial "navbar.html" . }}<!-- Flag for jQuery --><span id="homepage" class="d-none"></span>{{/* Get widget page path */}}{{ $page := "" }}{{ if .IsHome }}  {{ $page = "/home" }}{{ else }}  {{ $page = .File.Path }}{{ end }}{{/* Load page sections */}}{{ $headless_bundle := .Site.GetPage $page }}{{ range $index, $st := where ( $headless_bundle.Resources.ByType "page" ) ".Params.active" "!=" false }}  {{/* Begin widget styling */}}  {{ $bg := $st.Params.design.background }}  {{ $style := "" }}  {{ if $bg.color }}    {{ $style = printf "background-color: %s;" ($bg.color | default "transparent") }}  {{ end }}  {{ if and $bg.gradient_start $bg.gradient_end }}    {{ $style = printf "%sbackground-image: linear-gradient(%s, %s);" $style $bg.gradient_start $bg.gradient_end }}  {{ end }}  {{ if $bg.image }}    {{ $darken := "" }}    {{ if $bg.image_darken }}      {{ $darken = printf "linear-gradient(rgba(0, 0, 0, %s), rgba(0, 0, 0, %s))," (string $bg.image_darken) (string $bg.image_darken) }}    {{ end }}    {{/* See Hugo note on linking assets in styles: https://github.com/gohugoio/hugoThemes#common-permalink-issues */}}    {{ $style = printf "%sbackground-image: %s url('%s');" $style $darken (printf "img/%s" $bg.image | absURL) }}  {{ end }}  {{ with $st.Params.design.spacing.padding }}    {{ $style_pad := printf "padding: %s;" (delimit . " ") }}    {{ $style = print $style $style_pad }}  {{ end }}  {{ with $st.Params.advanced.css_style }}    {{ $style = print $style . }}  {{ end }}  {{ $params := dict "root" $ "page" $st }}  {{ $hash_id := replace $st.File.ContentBaseName "index" (path.Base (path.Split .Path).Dir) }}  {{ $widget := or $st.Params.widget "blank" }}  {{ if eq $widget "custom" }}{{ $widget = "blank" }}{{ end }}{{/* Support legacy Custom widget */}}  {{ if eq $widget "projects" }}{{ $widget = "portfolio" }}{{ end }}{{/* Support legacy Projects widget */}}  {{ $widget_path := printf "widgets/%s.html" $widget }}  {{ if in (slice "slider") $widget }}    {{ partial $widget_path $params }}  {{ else }}  <section id="{{ $hash_id }}" class="home-section {{ printf "wg-%s" (replace $widget "_" "-") }} {{if $bg.text_color_light}}dark{{end}} {{if $bg.image}}parallax{{end}} {{ with $st.Params.advanced.css_class }}{{ . }}{{ end }}" {{with $style}}style="{{. | safeCSS}}"{{end}}>    <div class="container">      {{ partial $widget_path $params }}    </div>  </section>  {{ end }}{{ end }}{{ partial "footer_container.html" . }}{{ partial "footer.html" . }}
 |