project.html
HTML document, ASCII text
1{% extends "default.html" %} 2{% block title %} 3{{ document["title"] }} 4{% endblock %} 5{% block content %} 6<h1 class="project-title"> 7<span>{{ document["title"] }}</span> 8<a href="{{ document['source-url'] }}">Repository</a> 9</h1> 10<article class="content-area"> 11{{ document.content | markdown }} 12</article> 13{% endblock %}