{% if gallery.extra.thumbnail %}
					{% set_global img = "." ~ gallery.path ~ gallery.extra.thumbnail %}
				{% else %}
					{% set_global img = "/static/img/placeholder.jpg" %}
					{% for asset in gallery.assets %}
						{% if asset is matching("[.](jpg|png)$") %}
							{% set_global img = asset %}
							{% break %}
						{% endif %}
					{% endfor %}
				{% endif %}
				{% set image = resize_image(path=img, width=300, height=200, op="fill") %}
				
				
					{{ gallery.title }}
					{{ gallery.date | date(format="%Y") }}
				
			
		{% endfor %}