New (touching) blog post
This commit is contained in:
parent
e2aa0bd43b
commit
841fbfdd9e
8 changed files with 59 additions and 4 deletions
|
|
@ -1,7 +1,15 @@
|
|||
{% assign include_width = "" %}
|
||||
{% assign include_height = "" %}
|
||||
{% if include.width %}
|
||||
{% capture include_width %} width="{{ include.width }}"{% endcapture %}
|
||||
{% endif %}
|
||||
{% if include.height %}
|
||||
{% capture include_height %} height="{{ include.height }}"{% endcapture %}
|
||||
{% endif %}
|
||||
<div class="screenshot-frame">
|
||||
<div class="screenshot-image">
|
||||
<a href="{{ site.baseurl }}{{ include.link }}">
|
||||
<img src="{{ site.baseurl }}{{ include.src }}" width="{{ include.width }}" height="{{ include.height }}" alt="{{ include.title }}"/>
|
||||
<img src="{{ site.baseurl }}{{ include.src }}"{{ include_width }}{{ include_height }} alt="{{ include.title }}"/>
|
||||
</a>
|
||||
</div>
|
||||
<span class="screenshot-label">{{ include.title }}</span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue