layout: default


<article class=“col-100 heading”>

<h1>{{ page.title | escape }}</h1>

{{ content }}

</article>

<section id=“photos” class=“group col-100”>

    {% for image in site.static_files %}
{% if image.path contains 'images/photography' and image.path contains 'thumb' %}
                    {% assign filename = image.path | replace: '_thumb', '' %}
                    <article class="gallery">
                            <a href="{{ site.baseurl }}{{ filename }}">
                                    <img class="responsive" src="{{ site.baseurl }}{{ image.path }}" alt="image" />
                            </a>
                    </article>
{% endif %}
    {% endfor %}

</section>