24 lines
631 B
Markdown
Executable File
24 lines
631 B
Markdown
Executable File
---
|
||
layout: default
|
||
title: "Hexaitos.com – Buttons"
|
||
---
|
||
|
||
# Buttons
|
||
|
||
## General buttons
|
||
<div class="web-button-container">
|
||
{% for image in site.static_files %}
|
||
{% if image.path contains 'images/buttons/general' %}
|
||
<img class="web-button" src="{{ site.baseurl }}{{ image.path }}"/>
|
||
{% endif %}
|
||
{% endfor %}
|
||
</div>
|
||
|
||
## Website buttons
|
||
<div class="web-button-container">
|
||
{% for image in site.static_files %}
|
||
{% if image.path contains 'images/buttons/websites' %}
|
||
<img class="web-button" src="{{ site.baseurl }}{{ image.path }}"/>
|
||
{% endif %}
|
||
{% endfor %}
|
||
</div> |