layout | title |
---|---|
default |
Gallery |
<nav aria-label="breadcrumb" class="mb-3">
<div class="d-inline-block">
<label for="category" class="mb-1">Project</label>
<select id="category" class="form-select">
{% for category in site.gallery %}
<option{% if forloop.first %} selected{% endif %}>{{ category.title }}</option>
{% endfor %}
</select>
</div>
<div class="d-inline-block">
<label for="subcategory" class="mb-1">Department</label>
<select id="subcategory" class="form-select"></select>
</div>
</nav>
<div id="gallery" style="overflow-x: hidden;"></div>