aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/wikipedia.html
blob: 65fa3997fe78a52748531e997cb90ee1e25d5059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{- $id      := default "Knowledge"          (.Get "id"      | default (.Get 0)) -}}
{{- $title   := default "Wikipedia Article"  (.Get "title"   | default (.Get 1)) -}}
{{-
  $caption := default
  (print $title " ([Link](" "https://en.m.wikipedia.org/wiki/" $id "))")
  (.Get "caption" | default (.Get 2))
-}}

<wikipedia-container title="{{ $title }}">
  <iframe loading="lazy"
    height="300"
    src="https://en.m.wikipedia.org/wiki/{{ $id }}"
    title="{{ $title }}"
  ></iframe>
  <footer>{{ $caption | markdownify }}</footer>
</wikipedia-container>