aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/shortcodes/embedded_pdf.html
blob: 4b066ec2cde609013d76fc36ff0c00d8b6132131 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- <iframe class="pdf-embed" src="{{ .Get "src" }}" width="{{ .Get "width" }}" height="{{ .Get "height" }}"></iframe> -->
<div class="embed-container">
<iframe class="pdf-embed embed" src="{{ .Get "src" }}" loading="lazy"
{{ with .Get "name" }} name="{{ . }}" {{ end }}
{{ with .Get "title" }} title="{{ . }}" {{ end }}
{{ with .Get "width" }} width="{{ . }}" {{ end }}
{{ with .Get "height" }} height="{{ . }}" {{ end }}>
    <a href="{{ .Get "src" }}">{{ .Get "title" }}</a>
</iframe>
<div class="embed-fallback">
    <a href="{{ .Get "src" }}">{{ .Get "title" }} &darr;</a>
</div>
</div>