mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-05-05 13:07:22 +02:00
29 lines
1.1 KiB
Twig
29 lines
1.1 KiB
Twig
{% extends 'layout_page.twig' %}
|
|
|
|
{% set page = 'files' %}
|
|
|
|
{% block title %}GitList{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'breadcrumb.twig' with {breadcrumbs: breadcrumbs} %}
|
|
|
|
<div class="source-view">
|
|
<div class="source-header">
|
|
<div class="meta"></div>
|
|
|
|
<div class="btn-group pull-right">
|
|
<a href="{{ path('blob_raw', {repo: repo, branch: branch, file: file}) }}" class="btn btn-small"><i class="icon-file"></i> Raw</a>
|
|
<a href="{{ path('blame', {repo: repo, branch: branch, file: file}) }}" class="btn btn-small"><i class="icon-bullhorn"></i> Blame</a>
|
|
<a href="{{ path('commits', {repo: repo, branch: branch, file: file}) }}" class="btn btn-small"><i class="icon-list-alt"></i> History</a>
|
|
</div>
|
|
</div>
|
|
{% if fileType == 'image' %}
|
|
<center><img src="{{ path('blob_raw', {repo: repo, branch: branch, file: file}) }}" alt="{{ file }}" class="image-blob" /></center>
|
|
{% else %}
|
|
<pre id="sourcecode" language="{{ fileType }}">{{ blob }}</pre>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<hr>
|
|
{% endblock %}
|