| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | {{ $ := .root }}{{ $page := .page }}{{ $pubs_len := len (where $.Site.RegularPages "Type" "publication") }}<!-- Publications widget --><div class="row">  <div class="col-xs-12 col-md-4 section-heading">    <h1>{{ with $page.Title }}{{ . | markdownify }}{{ end }}</h1>    {{ with $page.Params.subtitle }}<p>{{ . | markdownify }}</p>{{ end }}    {{ if gt $pubs_len $page.Params.count }}    <p class="view-all">      <a href="{{ ($.Site.GetPage "section" "publication").Permalink }}">        {{ i18n "more_publications" | markdownify }}        <i class="fa fa-angle-double-right"></i>      </a>    </p>    {{ end }}  </div>  <div class="col-xs-12 col-md-8">    {{ with $page.Content }}<p>{{ . | markdownify }}</p>{{ end }}    {{ if and ($page.Params.publication_type) (ne $page.Params.publication_type "-1") }}      {{ $.Scratch.Set "recent_pubs" (where (where $.Site.RegularPages "Type" "publication") ".Params.publication_types" "intersect" (slice $page.Params.publication_type)) }}    {{ else }}      {{ $.Scratch.Set "recent_pubs" (where $.Site.RegularPages "Type" "publication") }}    {{ end }}    {{ if $page.Params.exclude_selected }}      {{ $.Scratch.Set "recent_pubs" ( ($.Scratch.Get "recent_pubs") | intersect (where (where $.Site.RegularPages "Type" "publication") ".Params.selected" "!=" true) ) }}    {{ end }}    {{ $recent_pubs := $.Scratch.Get "recent_pubs" }}    {{ range first $page.Params.count $recent_pubs }}      {{ if eq $page.Params.list_format 1 }}        {{ partial "publication_li_detailed" . }}      {{ else if eq $page.Params.list_format 2 }}        {{ partial "publication_li_apa" . }}      {{ else if eq $page.Params.list_format 3 }}        {{ partial "publication_li_mla" . }}      {{ else }}        {{ partial "publication_li_simple" . }}      {{ end }}    {{ end }}  </div></div>
 |