---
permalink: /gallery/
title: Gallery
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include header.html %}
<div class="container-fluid">
<div class="heading_container heading_center">
<h2>{{page.title}}</h2>
</div>
</div>
<section class="gallery_section">
<div class="container-fluid"><div class=row>
{% assign gallery_files = site.static_files | where: "gallery", true |sort:"basename" %}
{% for pic in gallery_files %}
<div class="col-lg-3 col-sm-6">
<div class="team-img-container">
<div class="img-box team-img-box">
<img
src="{{pic.path}}"
loading="lazy"
class="img1 img-fluid"
alt=""
/>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% include bottom.html %}
{% include footer.html %}
{% include scripts.html %}
</body>
</html>