Add custom 'image' shortcode
This commit is contained in:
parent
494f027241
commit
55f65fdbf8
|
@ -38,6 +38,17 @@ a {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
figure {
|
||||
img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.nav {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
<figure>
|
||||
<img src="{{ .Get "src" }}" alt="{{ .Get "alt" }}">
|
||||
<figcaption>{{ .Get "alt" }}</figcaption>
|
||||
</figure>
|
Loading…
Reference in New Issue