mirror of
https://github.com/adulau/art.git
synced 2024-11-21 17:47:05 +00:00
Update tiles.html
This commit is contained in:
parent
684dafda19
commit
b946adbd28
1 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,15 @@
|
|||
<section id="one" class="tiles">
|
||||
|
||||
{% if site.tiles-source == "pages" %}
|
||||
{% for page in site.pages limit:site.tiles-count %}
|
||||
<article>
|
||||
<span class="image">
|
||||
<img src="{{ page.image }}" alt="" />
|
||||
</span>
|
||||
<header class="major">
|
||||
<h3><a href="{{ site.baseurl }}{{ page.url }}" class="link">{{ page.title }}</a></h3>
|
||||
<p>{{ page.description }}</p>
|
||||
</header>
|
||||
</article>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue