mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 08:25:59 -06:00
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<div class="post">
|
|
<h2 class="post-title">
|
|
{{ with .Parent.Params.icon }}{{ partialCached "icon.html" . . }}{{ end }}
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
{{ if .Draft }}{{ partialCached "icon.html" "edit" "edit" }}{{ end }}
|
|
</h2>
|
|
|
|
{{ partial "post-metadata.html" . }}
|
|
|
|
{{ with .Resources.GetMatch "feature" }}
|
|
{{ if eq .MediaType.MainType "image" }}
|
|
<div class="post-media">
|
|
<img src="{{ .Permalink }}" alt="{{ .Title }}" />
|
|
</div>
|
|
{{ else if eq .MediaType.MainType "video" }}
|
|
<div class="post-media">
|
|
<video controls>
|
|
<source src="{{ .Permalink }}" alt="{{ .Title }}">
|
|
</video>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<div class="post-description">
|
|
{{ if .Description }}
|
|
<p>
|
|
{{ .Description | markdownify }}
|
|
</p>
|
|
{{ else }}
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="readmore">
|
|
<a href="{{ .Permalink }}">{{ i18n "read_more" }} →</a>
|
|
</div>
|
|
</div>
|