hugo-theme-tui

TUI
Log | Files | Refs | README | LICENSE

list.html (497B)


      1 {{ define "main" }}
      2 <h1 class="page-title">{{ .Title }}</h1>
      3 {{- with .Description }}<p class="page-sub">{{ . | markdownify }}</p>{{ end }}
      4 {{- with .Content }}<div class="bullets-wrap">{{ . }}</div>{{ end }}
      5 
      6 <ul class="proj-list">
      7   {{- range .Pages }}
      8   <li>
      9     <div class="lang">{{ .Section }}</div>
     10     <div class="body">
     11       <a href="{{ .Permalink }}">{{ .Title }}</a>
     12       {{- with .Description }}<div class="desc">{{ . }}</div>{{ end }}
     13     </div>
     14   </li>
     15   {{- end }}
     16 </ul>
     17 {{ end }}