This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Load recent archive albums --> | |
<div class="section-title item_meta">RECENT ALBUMS FROM THE ARCHIVE</div> | |
<koken:variable name="count" value="0" /> | |
<koken:load source="albums" filter:flat="true" filter:types="standard" limit="2"> | |
<!-- Loop over each album --> | |
<koken:loop> | |
<article> | |
<div class="article-inner"> | |
<koken:link> | |
<koken:img /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<koken:parent> | |
<ul class="sidebar-meta"> | |
<li class="sidebar-meta-head"><p>{{ album.title }}</p></li> | |
<li class="sidebar-meta-head"> | |
<p>Work | |
{{ _parent.album.context.position }}/{{ _parent.album.context.position }} | |
</p> | |
</li> | |
</koken:parent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<koken:if true="settings.albums_index_show_title"> | |
<h4> | |
<koken:load style="margin-left: 0.2em;"> | |
{{ album.title }} <!-- Prints SET title --> | |
</koken:load> | |
</h4> | |
<p>Work | |
<koken:load> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<koken:if true="settings.albums_index_show_title"> | |
<h4> | |
<koken:load style="margin-left: 0.2em;"> | |
{{ album.title }} <!-- Prints SET title --> | |
</koken:load> | |
</h4> | |
<p>Work | |
<koken:load> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<koken:topics> | |
<koken:loop> | |
<koken:load source="album" filter:id="{{ album.id }}"> | |
<koken:loop> | |
<koken:img /> | |
</koken:loop> | |
</koken:load> | |
</koken:loop> | |
</koken:topics> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<koken:topics> | |
<koken:loop> | |
<koken:load source="album" filter:id="album.id"> | |
<koken:loop> | |
<koken: img /> | |
</koken:loop> | |
</koken:load> | |
</koken:loop> | |
</koken:topics> |