refactor(article): add components/details
This commit is contained in:
parent
32732d4bf1
commit
746537a801
@ -12,42 +12,5 @@
|
|||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ $i := .Params.image }}
|
{{ partial "article/components/details" . }}
|
||||||
{{ $context := . }}
|
|
||||||
|
|
||||||
<div class="article-details">
|
|
||||||
{{ with $categories := .Params.categories }}
|
|
||||||
<header class="article-category">
|
|
||||||
{{ range $categories }}
|
|
||||||
{{ if $i }}
|
|
||||||
{{- $image := partial "helper/image" $context | resources.Fingerprint "md5" -}}
|
|
||||||
{{- $20x := $image.Fill "20x20 smart" -}}
|
|
||||||
<a href="/categories/{{ . | urlize }}" class="color-tag"
|
|
||||||
data-image="{{ $20x.RelPermalink }}" data-id="{{ $context.Slug }}" data-key="{{ $image.Data.Integrity }}">{{ . | humanize }}</a>
|
|
||||||
{{ else }}
|
|
||||||
<a href="/categories/{{ . | urlize }}">{{ . | humanize }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
</header>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<h2 class="article-title">
|
|
||||||
<a href="{{ .Permalink }}">
|
|
||||||
{{- .Title -}}
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
{{ with .Params.description }}
|
|
||||||
<h3 class="article-subtitle">
|
|
||||||
{{ . }}
|
|
||||||
</h3>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<footer class="article-time">
|
|
||||||
{{ (resources.Get "icons/clock.svg").Content | safeHTML }}
|
|
||||||
<time data-timeago="true" datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
||||||
{{- .Date.Format ( or .Site.Params.dateFormat "Jan 02, 2006" ) -}}
|
|
||||||
</time>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</article>
|
</article>
|
38
layouts/partials/article/components/details.html
Normal file
38
layouts/partials/article/components/details.html
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{{ $i := .Params.image }}
|
||||||
|
{{ $context := . }}
|
||||||
|
|
||||||
|
<div class="article-details">
|
||||||
|
{{ with $categories := .Params.categories }}
|
||||||
|
<header class="article-category">
|
||||||
|
{{ range $categories }}
|
||||||
|
{{ if $i }}
|
||||||
|
{{- $image := partial "helper/image" $context | resources.Fingerprint "md5" -}}
|
||||||
|
{{- $20x := $image.Fill "20x20 smart" -}}
|
||||||
|
<a href="/categories/{{ . | urlize }}" class="color-tag"
|
||||||
|
data-image="{{ $20x.RelPermalink }}" data-id="{{ $context.Slug }}" data-key="{{ $image.Data.Integrity }}">{{ . | humanize }}</a>
|
||||||
|
{{ else }}
|
||||||
|
<a href="/categories/{{ . | urlize }}">{{ . | humanize }}</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</header>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<h2 class="article-title">
|
||||||
|
<a href="{{ .Permalink }}">
|
||||||
|
{{- .Title -}}
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
{{ with .Params.description }}
|
||||||
|
<h3 class="article-subtitle">
|
||||||
|
{{ . }}
|
||||||
|
</h3>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<footer class="article-time">
|
||||||
|
{{ (resources.Get "icons/clock.svg").Content | safeHTML }}
|
||||||
|
<time data-timeago="true" datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
||||||
|
{{- .Date.Format ( or .Site.Params.dateFormat "Jan 02, 2006" ) -}}
|
||||||
|
</time>
|
||||||
|
</footer>
|
||||||
|
</div>
|
@ -13,41 +13,5 @@
|
|||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ $i := .Params.image }}
|
{{ partial "article/components/details" . }}
|
||||||
{{ $context := . }}
|
|
||||||
<div class="article-details">
|
|
||||||
{{ with $categories := .Params.categories }}
|
|
||||||
<header class="article-category">
|
|
||||||
{{ range $categories }}
|
|
||||||
{{ if $i }}
|
|
||||||
{{- $image := partial "helper/image" $context | resources.Fingerprint "md5" -}}
|
|
||||||
{{- $20x := $image.Fill "20x20 smart" -}}
|
|
||||||
<a href="/categories/{{ . | urlize }}" class="color-tag"
|
|
||||||
data-image="{{ $20x.RelPermalink }}" data-id="{{ $context.Slug }}" data-key="{{ $image.Data.Integrity }}">{{ . | humanize }}</a>
|
|
||||||
{{ else }}
|
|
||||||
<a href="/categories/{{ . | urlize }}">{{ . | humanize }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
</header>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<h2 class="article-title">
|
|
||||||
<a href="{{ .Permalink }}">
|
|
||||||
{{- .Title -}}
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
{{ with .Params.description }}
|
|
||||||
<h3 class="article-subtitle">
|
|
||||||
{{ . }}
|
|
||||||
</h3>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<footer class="article-time">
|
|
||||||
{{ (resources.Get "icons/clock.svg").Content | safeHTML }}
|
|
||||||
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
||||||
{{- .Date.Format ( or .Site.Params.dateFormat "Jan 02, 2006" ) -}}
|
|
||||||
</time>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
</header>
|
</header>
|
Loading…
Reference in New Issue
Block a user