A fast and simple blog backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mediocre-blog/_includes/image.html

21 lines
582 B

<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>