mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 05:04:21 +01:00
29 lines
823 B
HTML
29 lines
823 B
HTML
---
|
|
layout: default
|
|
---
|
|
<article class="post">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
{% for project in site.data.projects %}
|
|
{% if project.slug == page.slug %}
|
|
<span class="time">{{ project.date }}</span> »
|
|
{% for tag in project.tags %}
|
|
<span class="tags tag-filter">{{ tag }}</span>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</header>
|
|
|
|
<div class="content">
|
|
{% for project in site.data.projects %}
|
|
{% if project.slug == page.slug %}
|
|
<a href="/static/projects/{{ project.image }}" class="thickbox">
|
|
<img src="/static/projects/{{ project.image }}" alt="{{ page.title }}" title="{{ page.title }}">
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<hr />
|
|
{{ content }}
|
|
</div>
|
|
</article>
|