Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

43 lines
1.2KB

  1. {{ define "header" }}
  2. {{ partial "masthead.html" . }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <header>
  6. <h1>{{ .Title }}</h1>
  7. {{ if .Description }}
  8. <blockquote itemprop="description">{{ .Description }}</blockquote>
  9. {{ end }}
  10. </header>
  11. <style>
  12. .hack table th, .hack table td { vertical-align: middle; }
  13. .hack table td img { margin-bottom: -7px; }
  14. </style>
  15. {{ .Content }}
  16. <table>
  17. <thead>
  18. <tr>
  19. <th scope="col">{{ .Title | singularize }}</th>
  20. <th scope="col">Latest</th>
  21. <th scope="col">Description</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <nav>
  26. {{ $patinator := .Paginate (where .Pages ".Params.slug" "!=" nil) }}
  27. {{ range $patinator.Pages }}
  28. <tr>
  29. <td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
  30. <td>{{ with .Params.slug }}{{ partial "module-latest.html" (dict "slug" .) }}{{ else }}N/A{{ end }}</td>
  31. <td>{{ .Params.summary }}</td>
  32. </tr>
  33. {{ end }}
  34. </nav>
  35. </tbody>
  36. </table>
  37. {{ end }}
  38. {{ define "footer" }}
  39. {{ partial "pagination.html" . }}
  40. {{ partial "powered-by.html" . }}
  41. {{ partial "cookie-disclaimer.html" . }}
  42. {{ end }}