Browse Source

terms list with thumbnails

master
Chris 6 years ago
parent
commit
3976984458
  1. 2
      layouts/index.html
  2. 2
      layouts/locations/term.html
  3. 2
      layouts/members/term.html
  4. 2
      layouts/sports/term.html

2
layouts/index.html

@ -86,7 +86,7 @@
{{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }}
<h1 class="flex-none">
Posts
{{ $.Param "recent_copy" | default (i18n "recentTitle" .) }}
</h1>
{{ end }}

2
layouts/locations/term.html

@ -26,7 +26,7 @@
<section class="flex-ns flex-wrap justify-around mt5">
{{ range .Pages }}
<div class="relative w-100 mb4 bg-white">
{{ partial "summary.html" . }}
{{ partial "summary-with-thumbnail.html" . }}
</div>
{{ end }}
</section>

2
layouts/members/term.html

@ -27,7 +27,7 @@
<section class="flex-ns flex-wrap justify-around mt5">
{{ range .Pages }}
<div class="relative w-100 mb4 bg-white">
{{ partial "summary.html" . }}
{{ partial "summary-with-thumbnail.html" . }}
</div>
{{ end }}
</section>

2
layouts/sports/term.html

@ -26,7 +26,7 @@
<section class="flex-ns flex-wrap justify-around mt5">
{{ range .Pages }}
<div class="relative w-100 mb4 bg-white">
{{ partial "summary.html" . }}
{{ partial "summary-with-thumbnail.html" . }}
</div>
{{ end }}
</section>

Loading…
Cancel
Save