22 lines
726 B
Text
22 lines
726 B
Text
<ul>{{#items}}
|
|
<li>
|
|
<div class="row">
|
|
<div class="col-sm-6 col-md-4">
|
|
<div class="thumbnail">
|
|
<img src="..." alt="...">
|
|
<div class="caption">
|
|
<h3>Thumbnail label</h3>
|
|
<p>...</p>
|
|
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<a href='/hack/path64/{{item.URI}}/'>{{item.title}}</a>
|
|
{{#item.creator}}<small>by: <i>{{item.creator}}</i></small>{{/item.creator}}
|
|
{{#item.player}}
|
|
<p><iframe frameBorder='0' seamless='seamless' width='{{width}}' height='{{height}}' src='{{url}}'></iframe></p>
|
|
{{/item.player}}
|
|
<p><i>{{item.description}}</i></p>
|
|
</li>
|
|
{{/items}}</ul>
|