mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-17 13:25:57 -06:00
Use <figure> for images and videos
This commit is contained in:
parent
61ac27bdf9
commit
937a80bc17
@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
.post-media {
|
.post-media {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-description {
|
.post-description {
|
||||||
@ -106,6 +107,10 @@ img:not(.noborder), video:not(.noborder) {
|
|||||||
border: 5px solid #1b5b9b;
|
border: 5px solid #1b5b9b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
figcaption {
|
figcaption {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
|
@ -12,17 +12,24 @@
|
|||||||
{{ partial "post-metadata.html" . }}
|
{{ partial "post-metadata.html" . }}
|
||||||
|
|
||||||
{{ with .Resources.GetMatch "feature" }}
|
{{ with .Resources.GetMatch "feature" }}
|
||||||
|
<div class="post-media">
|
||||||
|
<figure>
|
||||||
|
{{ $media := . | resources.Fingerprint "sha512" }}
|
||||||
{{ if eq .MediaType.MainType "image" }}
|
{{ if eq .MediaType.MainType "image" }}
|
||||||
<div class="post-media">
|
<img src="{{ $media.Permalink }}" alt="{{ $media.Title }}" />
|
||||||
<img src="{{ .Permalink }}" alt="{{ .Title }}" />
|
|
||||||
</div>
|
|
||||||
{{ else if eq .MediaType.MainType "video" }}
|
{{ else if eq .MediaType.MainType "video" }}
|
||||||
<div class="post-media">
|
|
||||||
<video controls>
|
<video controls>
|
||||||
<source src="{{ .Permalink }}" alt="{{ .Title }}">
|
<source src="{{ $media.Permalink }}" alt="{{ $media.Title }}">
|
||||||
</video>
|
</video>
|
||||||
</div>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with $media.Title }}
|
||||||
|
<figcaption>
|
||||||
|
{{ . | markdownify }}
|
||||||
|
</figcaption>
|
||||||
|
{{ end }}
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<div class="post-description">
|
<div class="post-description">
|
||||||
|
22
layouts/shortcodes/figimage.html
Normal file
22
layouts/shortcodes/figimage.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<figure>
|
||||||
|
|
||||||
|
{{ $img := $.Page.Resources.GetMatch (.Get "src") | resources.Fingerprint "sha512" }}
|
||||||
|
|
||||||
|
{{ if .Get "href" }}<a href="{{ .Get "href" }}">{{ end }}
|
||||||
|
<img src="{{ $img.Permalink }}"
|
||||||
|
{{ with $img.Title }}
|
||||||
|
alt="{{ . }}"
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Get "width" }}width="{{ . }}"{{ end }}
|
||||||
|
{{ with .Get "height" }}height="{{ . }}"{{ end }}
|
||||||
|
/>
|
||||||
|
{{ if .Get "href" }}</a>{{ end }}
|
||||||
|
|
||||||
|
{{ with $img.Title }}
|
||||||
|
<figcaption>
|
||||||
|
{{ . | markdownify }}
|
||||||
|
</figcaption>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
</figure>
|
@ -1,26 +0,0 @@
|
|||||||
<figure>
|
|
||||||
|
|
||||||
{{ $img := $.Page.Resources.GetMatch (.Get "resrc") | resources.Fingerprint "sha512" }}
|
|
||||||
|
|
||||||
{{ if .Get "href" }}<a href="{{ .Get "href" }}">{{ end }}
|
|
||||||
<img src="{{ $img.Permalink }}"
|
|
||||||
{{ if or (.Get "alt") (.Get "caption") }}
|
|
||||||
alt="{{ with .Get "alt" -}}
|
|
||||||
{{ . -}}
|
|
||||||
{{ else -}}
|
|
||||||
{{ .Get "caption" | markdownify -}}
|
|
||||||
{{ end -}}"
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ with .Get "width" }} width="{{ . }}" {{ end }}
|
|
||||||
{{ with .Get "height" }} height="{{ . }}" {{ end }}
|
|
||||||
/>
|
|
||||||
{{ if .Get "href" }}</a>{{ end }}
|
|
||||||
|
|
||||||
{{ with .Get "caption" }}
|
|
||||||
<figcaption>
|
|
||||||
{{ . | markdownify }}
|
|
||||||
</figcaption>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
</figure>
|
|
18
layouts/shortcodes/figvideo.html
Normal file
18
layouts/shortcodes/figvideo.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<figure>
|
||||||
|
|
||||||
|
{{ $vid := $.Page.Resources.GetMatch (.Get "src") | resources.Fingerprint "sha512" }}
|
||||||
|
|
||||||
|
{{ if .Get "href" }}<a href="{{ .Get "href" }}">{{ end }}
|
||||||
|
<video controls>
|
||||||
|
<source src="{{ $vid.Permalink }}" alt="{{ $vid.Title }}">
|
||||||
|
{{ i18n "browser_no_video_support" }}
|
||||||
|
</video>
|
||||||
|
{{ if .Get "href" }}</a>{{ end }}
|
||||||
|
|
||||||
|
{{ with $vid.Title }}
|
||||||
|
<figcaption>
|
||||||
|
{{ . | markdownify }}
|
||||||
|
</figcaption>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
</figure>
|
@ -1,4 +0,0 @@
|
|||||||
<video controls>
|
|
||||||
<source src="{{ .Get "src" }}" alt="{{ .Get "title" }}">
|
|
||||||
{{ i18n "browser_no_video_support" }}
|
|
||||||
</video>
|
|
Loading…
Reference in New Issue
Block a user