Welcome to mirror list, hosted at ThFree Co, Russian Federation.

related.html « partials « layouts - github.com/surajmandalcell/potato-dark.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05a2117f5af9a609bf3e81704290f67a6c7cfd66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $related := .Site.RegularPages.Related . | first 6 }}
{{ with $related }}
<section class="p-related">
  <h3>See Also</h3>
  <ul id="slider" class="p-related__list">
    {{ range . }}
    <li class="p-related__item js-related__item">
      <a href="{{ .RelPermalink }}"
        {{ with .Params.thumbnail }}
          style="background-image: url({{ $.Site.BaseURL }}{{ . }});"
        {{ end }}>
        <span>{{ .Title }}</span>
      </a>
    </li>
    {{ end }}
  </ul>
</section>
{{ end }}