Skip to content

Commit

Permalink
also…
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Aug 7, 2024
1 parent c95979d commit 9603b34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions _hardware/controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -752,14 +752,14 @@ Marlin supports a wide variety of display controllers, from simple character-bas
<iframe class="youtube rj" width="300" height="225" src="https://youtube.com/embed/{{ videoid }}"></iframe>
{% endfor %}
{% for img in cont.images %}
{% if img.front %}<img class="zoomImg" src="{{ fldr }}{{ img.front }}_front.jpg" alt="{{ img.alt }} Front" style="width:100%;max-width:300px">{% endif %}
{% if img.front %}<img class="zoomImg" src="{{ fldr }}{{ img.front }}_front.jpg" alt="{{ img.alt }} Front">{% endif %}
{% if img.back -%}
{% if img.back.size > 1 %}
{% for bimg in img.back %}
<img class="zoomImg" src="{{ fldr }}{{ bimg }}_back.jpg" alt="{{ img.alt }} Back" style="width:100%;max-width:300px">
<img class="zoomImg" src="{{ fldr }}{{ bimg }}_back.jpg" alt="{{ img.alt }} Back">
{% endfor %}
{% else %}
<img class="zoomImg" src="{{ fldr }}{{ img.back }}_back.jpg" alt="{{ img.alt }} Back" style="width:100%;max-width:300px">
<img class="zoomImg" src="{{ fldr }}{{ img.back }}_back.jpg" alt="{{ img.alt }} Back">
{% endif %}
{%- endif %}
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion _sass/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ div.tags { display: inline-block; float: right; margin: 0.5em; }
.lcd div { padding-bottom: 0.9em; }
.lcd .desc { float: left; width: 60%; margin-right: -60%; padding-left: 1em; }
.lcd .gallery { float: right; width: 40%; margin-left: -40%; padding: 0 1em 0.9em 0; }
.lcd .gallery img { float: right; margin-top: 4px; }
.lcd .gallery img { float: right; margin-top: 4px; width: 100%; max-width: 300px; }
}

.fa-x:before { content: "𝕏"; }
Expand Down

0 comments on commit 9603b34

Please sign in to comment.