gallery.md (575B)
1 --- 2 title: {{title}} 3 layout: gallery 4 --- 5 6 <!-- Cover photo --> 7 <section id="cover" style="background: url('/{{cover}}') center/cover;"> 8 <a href="https://edryd.org/photos" class="top-link">edryd</a> 9 10 <div class="cover-content"> 11 <div> 12 <h1>{{title}}</h1> 13 <time>{{date}}</time> 14 </div> 15 <a href="#gallery" class="scroll-button">See Gallery</a> 16 </div> 17 </section> 18 19 <!-- Gallery of photos --> 20 <section id="gallery"> 21 {{#images}} 22 <a href="/{{ . }}" data-lightbox="gallery"> 23 <img src="/{{ . }}" alt="image"/> 24 </a> 25 {{/images}} 26 </section>