Compare commits

..

No commits in common. "0daf3000609b6444ff49e701f0cffda0d53a9b8a" and "20e6d7328adbe7c454101cd0b1a9619c1eba01c4" have entirely different histories.

3 changed files with 5 additions and 46 deletions

View File

@ -93,9 +93,9 @@
<span>
viewing
<span class=linkedPath>
{% block breadcrumbs %}
{% block nav %}
<a href="/">{{ owner }}</a>/<a href="/">{{ repo }}</a>
{% endblock breadcrumbs %}
{% endblock nav %}
</span>
</span>
<ul class=buttonList>

View File

@ -2,9 +2,10 @@
{% block page %}code{% endblock page %}
{% block breadcrumbs %}
{% block nav %}
<a href="/">{{ owner }}</a>/<a href="/">{{ repo }}</a>/<a href="/">{{ branch }}</a>
{% endblock breadcrumbs %}
{% endblock nav %}
{% block content %}
<div id=contentWrap>

View File

@ -1,42 +0,0 @@
{% extends "base.html" %}
{% block page %}tickets{% endblock page %}
{% block content %}
<div id=contentWrap>
<aside>
<div class=sidebarLabel>
tickets
<div class=tabList style="display: inline-flex">
<span>open</span>
<a href="/">closed</a>
</div>
</div>
<table class=files border=1>
<tbody>
{% block entries_list %}
{% for entry in entries %}
<tr>
<td><a class={{ entry.class }} href="/">{{ entry.path }}</a></td>
<td><a class=commit href="./commit/{{ entry.last_commit }}">
{{ entry.last_commit_message }}
</a></td>
<td><time datetime="{{ entry.last_commit_time }}">
{{ entry.last_commit_time | date(format="%Y-%m-%d %H:%M")}}
</time></td>
</tr>
{% endfor %}
{% endblock entries %}
</tbody>
</table>
</aside>
{% block readme %}
<main>
<article class=preview>
<h1>Ticket title</h1>
{{ readme_content }}
</article>
</main>
{% endblock readme %}
</div>
{% endblock content %}