Started building a Website with Jekyll based on Uno-Timeline
This commit is contained in:
commit
2d9e9fb878
103 changed files with 6371 additions and 0 deletions
19
_projects/gallery.html
Normal file
19
_projects/gallery.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: default
|
||||
slug: gallery
|
||||
---
|
||||
|
||||
<ul class="gallery-list">
|
||||
{% for item in site.data.gallery %}
|
||||
<li class="gallery-item">
|
||||
<a href="{{ item.image }}" data-lightbox="gallery">
|
||||
<img src="{{ item.image }}" alt="{{ item.title }}">
|
||||
</a>
|
||||
<div class="info">
|
||||
<h3>{{ item.title }}</h3>
|
||||
<p>{{ item.year }}</p>
|
||||
</div>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue