diff options
Diffstat (limited to 'layouts/_partials/pages.html')
| -rw-r--r-- | layouts/_partials/pages.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/layouts/_partials/pages.html b/layouts/_partials/pages.html index 6a7dc16..8ebdb58 100644 --- a/layouts/_partials/pages.html +++ b/layouts/_partials/pages.html @@ -7,20 +7,20 @@ Renders a table of pages. */}} <table> - <thead> - <tr> - <th>Date</th> - <th>Title</th> - <th><a href="{{ partial "taxonomy-url.html" (dict "taxonomy" "tags" "site" .Site) }}">Tags</a></th> - </tr> - </thead> - <tbody> - {{- range .Pages }} - <tr> - <td>{{ partial "date.html" .Date -}}</td> - <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td> - <td>{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}</td> - </tr> - {{- end }} - </tbody> + <thead> + <tr> + <th>Date</th> + <th>Title</th> + <th><a href="{{ partial "taxonomy-url.html" (dict "taxonomy" "tags" "site" .Site) }}">Tags</a></th> + </tr> + </thead> + <tbody> + {{- range .Pages }} + <tr> + <td>{{ partial "date.html" .Date -}}</td> + <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td> + <td>{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}</td> + </tr> + {{- end }} + </tbody> </table> |