basspistol.com/_layouts/blog.html

25 lines
605 B
HTML
Raw Normal View History

2019-04-01 23:16:35 +02:00
<!DOCTYPE html>
<html>
<head>
2019-12-16 12:12:57 +01:00
{% include relBase.html %}
2019-04-01 23:16:35 +02:00
{% include metahead.html %}
2019-11-05 15:18:23 +01:00
{% include matomo.html %}
2019-04-01 23:16:35 +02:00
</head>
<body>
{% include navmenu.html %}
<div id="content">
{% include videopageheader.html %}
<div class="fitter">
{% for page in site.categories.highlights offset: 0 limit: 15 %}
<div class="records">
2019-12-16 12:12:57 +01:00
<a href="{{ relBase }}{{ page.url }}">
<img class="recordthumbs" src="{{ relBase }}{{ page.coverart.art }}" title="{{ page.title }}" alt="{{ page.title }}" />
2019-04-01 23:16:35 +02:00
</a>
</div>
{% endfor %}
</div>
{% include footer.html %}
</div>
</body>
</html>