By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 project.html

View raw Download
text/html • 581 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{{ document["title"] }}
4
{% endblock %}
5
{% block content %}
6
<div class="project-title">
7
<h1>
8
{{ document["title"] }}
9
</h1>
10
<a href="{{ document['source-url'] }}" class="repository-button">Go to repository</a>
11
</div>
12
<p class="tags">
13
{% for tag in document["topics"] %}
14
<a href="/index/{{ tag }}.html" class="tag">{{ tag }}</a>
15
{% endfor %}
16
</p>
17
<article class="content-area">
18
{{ document.content | markdown }}
19
</article>
20
{% endblock %}