summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2018-09-21 15:24:22 -0400
committerBrian Picciano <mediocregopher@gmail.com>2018-09-21 15:34:08 -0400
commit4c4d9dade6028b1c3b0ea42a6872637470bc7f02 (patch)
tree7d1d3b4c8cdb429af31082533db979ce26981bcb /_includes
parent8bcd9699c3b7b32983155f7eab022802af17ac2e (diff)
parentd9b046935fc606894a4bc7a6ba808dd7ff67812a (diff)
Merge branch 'mr-worldwide' into gh-pages
Diffstat (limited to '_includes')
-rw-r--r--_includes/image.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/_includes/image.html b/_includes/image.html
new file mode 100644
index 0000000..4c5afc5
--- /dev/null
+++ b/_includes/image.html
@@ -0,0 +1,21 @@
+<div style="
+ box-sizing: border-box;
+ text-align: center;
+ padding-left: 2em;
+ padding-right: 2em;
+ margin-bottom: 1em;
+ {%- if include.float %}
+ float: {{ include.float }};
+ {% endif -%}
+ {%- if include.float or include.inline %}
+ max-width: 49%;
+ {% endif -%}
+ {%- if include.inline %}
+ display: inline-block;
+ {% endif -%}
+ ">
+ <a href="/img/{{ include.src }}" target="_blank">
+ <img style="max-height: 60vh;"
+ src="/img/{{ include.src }}" alt="{{ include.descr }}" /></a>
+ {%- if include.descr %}<br/><em>{{ include.descr }}</em>{%- endif %}
+</div>