annotate cheese/index.html @ 98:caa6f0e136c8

*: add cheese section that's really just a photo gallery
author Paper <paper@tflc.us>
date Tue, 19 Nov 2024 00:55:49 -0500
parents
children e83a48ef3bf4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
98
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
1 ---
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
2 layout: default
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
3 title: cheese
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
4 ---
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
5 <div class="cheese-list">
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
6 {% for item in site.data.cheese %}
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
7 <a href="{{ item.link }}"><img class="drop-shadow-box cheese-image" src="{{ item.link }}" alt="{{ item.name }}" title="{{ item.name }}"></a>
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
8 {% endfor %}
caa6f0e136c8 *: add cheese section that's really just a photo gallery
Paper <paper@tflc.us>
parents:
diff changeset
9 </div>