| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | 
							- {{ $ := .root }}
 
- {{ $page := .page }}
 
- {{ $posts_len := len (where (where $.Site.RegularPages "Type" "post") ".Params.notonhomepage" nil) }}
 
- <!-- Blog Posts widget -->
 
- <div class="row">
 
-   <div class="col-12 col-lg-4 section-heading">
 
-     <h1>{{ with $page.Title }}{{ . | markdownify }}{{ end }}</h1>
 
-     {{ with $page.Params.subtitle }}<p>{{ . | markdownify }}</p>{{ end }}
 
-     {{ if gt $posts_len $page.Params.count }}
 
-     <p class="view-all">
 
-       <a href="{{ ($.Site.GetPage "section" "post").RelPermalink }}">
 
-         {{ i18n "more_posts" | markdownify }}
 
-         <i class="fas fa-angle-double-right"></i>
 
-       </a>
 
-     </p>
 
-     {{ end }}
 
-   </div>
 
-   <div class="col-12 col-lg-8">
 
-     {{ with $page.Content }}<p>{{ . | markdownify }}</p>{{ end }}
 
-     {{ if gt (len $page.Params.tags_include) 0 }}
 
-       {{ $posts := where (where (where $.Site.RegularPages "Type" "post") ".Params.tags" "intersect" $page.Params.tags_include) ".Params.notonhomepage" nil }}
 
-       {{ $.Scratch.Add "show_post" "1" }}
 
-       {{ range $post := first $page.Params.count $posts }}
 
-         {{ $.Scratch.Set "show_post" "1" }}
 
-         {{/* If `tags_include` is set, exclude posts with no tags. */}}
 
-         {{ with (not .Params.tags) }}
 
-           {{ with $page.Params.tags_include }}
 
-             {{ $.Scratch.Set "show_post" "0" }}
 
-           {{end}}
 
-         {{end}}
 
-         {{/* If `tags_exclude` is set, exclude posts. */}}
 
-         {{ range $key, $val := .Params.tags }}
 
-           {{ if in $page.Params.tags_exclude $val }}
 
-           {{ $.Scratch.Set "show_post" "0" }}
 
-         {{end}}
 
-       {{end}}
 
-       {{ $show_post := $.Scratch.Get "show_post" }}
 
-       {{ if ne $show_post "0" }}
 
-         {{ if eq $page.Params.list_format 0 }}
 
-           {{ partial "post_li_simple" . }}
 
-         {{ else if eq $page.Params.list_format 1 }}
 
-           {{ partial "post_li_detailed" . }}
 
-         {{ else }}
 
-           {{ partial "post_li_stream" . }}
 
-         {{ end }}
 
-       {{end}}
 
-       {{ end }}
 
-     {{ else}}
 
-       {{ $posts := where (where $.Site.RegularPages "Type" "post") ".Params.notonhomepage" nil }}
 
-       {{ $.Scratch.Add "show_post" "1" }}
 
-       {{ range $post := first $page.Params.count $posts }}
 
-         {{ $.Scratch.Set "show_post" "1" }}
 
-         {{/* If `tags_include` is set, exclude posts with no tags. */}}
 
-         {{ with (not .Params.tags) }}
 
-           {{ with $page.Params.tags_include }}
 
-             {{ $.Scratch.Set "show_post" "0" }}
 
-           {{end}}
 
-         {{end}}
 
-         {{/* If `tags_exclude` is set, exclude posts. */}}
 
-         {{ range $key, $val := .Params.tags }}
 
-           {{ if in $page.Params.tags_exclude $val }}
 
-           {{ $.Scratch.Set "show_post" "0" }}
 
-         {{end}}
 
-       {{end}}
 
-       {{ $show_post := $.Scratch.Get "show_post" }}
 
-       {{ if ne $show_post "0" }}
 
-         {{ if eq $page.Params.list_format 0 }}
 
-           {{ partial "post_li_simple" . }}
 
-         {{ else if eq $page.Params.list_format 1 }}
 
-           {{ partial "post_li_detailed" . }}
 
-         {{ else }}
 
-           {{ partial "post_li_stream" . }}
 
-         {{ end }}
 
-       {{end}}
 
-       {{ end }}
 
-     {{ end }}
 
-   </div>
 
- </div>
 
 
  |