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

post-summary.html « partials « layouts - github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d58a6c7de8b73d89fddf91bfc17a98620502955 (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="flex flex-col md:flex-row border-b border-gray-400">
  <h2 class="text-3xl font-bold mb-2 md:w-32 flex-shrink-0 flex-grow-0">{{ .Key }}</h2>
  
  <ol class="md:pt-3 mb-4">
    {{ range where .Pages "Type" "ne" "page" -}}
    <li>
      <a href="{{ .RelPermalink }}">{{ .Title }}</a>
    </li>
    {{- end }}
  </ol>
</div>