be92533eb4
This does a number of things: - Introduces new shortcodes for figures and tables, allowing them to be embedded natively. - Fixes padding on Youtube videos - Adjusts old blog posts, fixing dead links, and updating/unifying syntax.
11 lines
220 B
HTML
11 lines
220 B
HTML
<figure>
|
|
<img src="{{.Get "src"}}" {{ with .Get "alt" }}alt="{{ . }}"{{ end }} />
|
|
{{ with .Get "title" }}
|
|
<figcaption>
|
|
<h4>
|
|
{{ . }}
|
|
</h4>
|
|
</figcaption>
|
|
{{ end }}
|
|
</figure>
|