Echo Writes Code

index.tera.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "page.tera.html" %}

{% block title %}Repository List{% endblock %}

{% block content %}
<article>
	<h1>Repository List</h1>
	<ul>
		{% for repository in index.repositories %}
		<li><span class="badge color6">repo</span> <a href="{{ repository.link }}">{{ repository.name }}</a></li>
		{% endfor %}
	</ul>
</article>
{% endblock %}