fedhub/templates/repo_blob.html

26 lines
780 B
HTML
Raw Normal View History

2020-04-21 17:33:14 +00:00
{% extends "layout.html" %}
2020-04-21 14:33:34 +00:00
2020-04-21 17:33:14 +00:00
{% block content %}
<h1>{{ repo_name }}: {{ tree_name }}: {{ blob.name }}</h1>
2020-04-21 14:33:34 +00:00
2020-04-22 01:39:49 +00:00
{% if blob.lines %}
<div class="blob-contents">
<div class="left">
{% for _ in blob.lines %}
<a name="L{{ loop.index }}" />
<a href="#L{{ loop.index }}" title="permalink to line {{ loop.index }}">{{ loop.index }}</a>
<br />
{% endfor %}
</div>
<div class="right">
{% for line in blob.lines %}
2020-04-22 01:41:42 +00:00
<pre>{{ line }}</pre>
2020-04-22 01:39:49 +00:00
<br />
{% endfor %}
</div>
</pre>
{% else %}
This blob contains binary data.
{% endif %}
2020-04-21 17:33:14 +00:00
{% endblock %}