My public website https://www.chameth.com/
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

photos.html 534B

12345678910111213141516171819
  1. ---
  2. layout: default
  3. ---
  4. <article class="post">
  5. <header>
  6. <div class="title">
  7. <h2>{{ page.album_title }}</h2>
  8. <p>{{ page.album_date }}</p>
  9. </div>
  10. </header>
  11. {% for photo in page.photos %}
  12. <a href="{{page.path | replace:'photos/','https://photos.chameth.com/' | replace:'index.html',photo.file}}"
  13. class="image gallery"
  14. data-lightbox="gallery"
  15. data-title="{{photo.caption|xml_escape}}">
  16. <img src="{{ photo.file }}" alt="{{photo.alt|xml_escape}}">
  17. </a>
  18. {% endfor %}
  19. </article>