mirror of
https://github.com/kennethreitz-archive/travis-light.git
synced 2026-06-21 15:50:58 +00:00
12 lines
227 B
HTML
12 lines
227 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Latest Builds</h2>
|
|
<ul>
|
|
{% for build in builds %}
|
|
<li><a href="{{ build['slug'] }}">{{ build['slug'] }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %} |