💾 Archived View for tommi.space › People.gmi captured on 2023-01-29 at 03:16:45. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

<style>
    h-entry.note {
    	width: unset;
    	margin-left: unset;
    	min-width: 70%;
    }
</style>

{% for idol in people -%}

{{ idol.who }}{.center .title}

<a href='{{ idol.url }}'>
    <figure>
    	<picture>
    		<img src='{{ idol.image }}' title='{{ idol.who }}' alt='An image portraying {{ idol.who }}'>
    	</picture>
    	<figcaption>{% if idol.note -%}{{ idol.note | markdownify }}{% endif -%}</figcaption>
    </figure>
</a>

<br>
<br>

{% endfor -%}

{% for idol in collections.jam -%} {% for tag in idol.data.tags -%} {% capture idoltag -%}{{ tag | replace: '/', ' ' }}{% endcapture -%} {% if idoltag contains 'people' -%} {{ idol.data.title }} {{ idol.data.description }} {% endif -%} {% endfor -%} {% endfor -%}