Allow Overriding of article in list.html
This commit is contained in:
parent
43ac108b03
commit
10996a55cb
@ -60,27 +60,8 @@
|
|||||||
{{- $class = "post-entry tag-entry" }}
|
{{- $class = "post-entry tag-entry" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
<article class="{{ $class }}">
|
{{- partial "list_item.html" (dict "cxt" . "ArticleClass" $class) }}
|
||||||
{{- $isHidden := (site.Params.cover.hidden | default site.Params.cover.hiddenInList) }}
|
|
||||||
{{- partial "cover.html" (dict "cxt" . "IsHome" true "isHidden" $isHidden) }}
|
|
||||||
<header class="entry-header">
|
|
||||||
<h2>
|
|
||||||
{{- .Title }}
|
|
||||||
{{- if .Draft }}<sup><span class="entry-isdraft"> [draft]</span></sup>{{- end }}
|
|
||||||
</h2>
|
|
||||||
</header>
|
|
||||||
{{- if (ne (.Param "hideSummary") true) }}
|
|
||||||
<div class="entry-content">
|
|
||||||
<p>{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}</p>
|
|
||||||
</div>
|
|
||||||
{{- end }}
|
|
||||||
{{- if not (.Param "hideMeta") }}
|
|
||||||
<footer class="entry-footer">
|
|
||||||
{{- partial "post_meta.html" . -}}
|
|
||||||
</footer>
|
|
||||||
{{- end }}
|
|
||||||
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
|
||||||
</article>
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{- if gt $paginator.TotalPages 1 }}
|
{{- if gt $paginator.TotalPages 1 }}
|
||||||
|
23
layouts/partials/list_item.html
Normal file
23
layouts/partials/list_item.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{{- with .cxt}} {{/* Apply proper context from dict */}}
|
||||||
|
<article class="{{ $.ArticleClass }}">
|
||||||
|
{{- $isHidden := (site.Params.cover.hidden | default site.Params.cover.hiddenInList) }}
|
||||||
|
{{- partial "cover.html" (dict "cxt" . "IsHome" true "isHidden" $isHidden) }}
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2>
|
||||||
|
{{- .Title }}
|
||||||
|
{{- if .Draft }}<sup><span class="entry-isdraft"> [draft]</span></sup>{{- end }}
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
{{- if (ne (.Param "hideSummary") true) }}
|
||||||
|
<div class="entry-content">
|
||||||
|
<p>{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}</p>
|
||||||
|
</div>
|
||||||
|
{{- end }}
|
||||||
|
{{- if not (.Param "hideMeta") }}
|
||||||
|
<footer class="entry-footer">
|
||||||
|
{{- partial "post_meta.html" . -}}
|
||||||
|
</footer>
|
||||||
|
{{- end }}
|
||||||
|
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
||||||
|
</article>
|
||||||
|
{{- end -}}{{/* End context */ -}}
|
Loading…
x
Reference in New Issue
Block a user