33 lines
793 B
PHTML
33 lines
793 B
PHTML
{% extends "lean-console/base/layout" %}
|
|
|
|
{% language.set "lean.update" %}
|
|
|
|
{% title _("title") %}
|
|
|
|
{% section "header" %}
|
|
<div class="page-title">{% _ "page-title" %}</div>
|
|
{% endsection %}
|
|
|
|
{% section "content" %}
|
|
<section>
|
|
<header>
|
|
<h1>{% _ 'git.header' %}</h1>
|
|
</header>
|
|
|
|
<article class="updates">
|
|
<div class="git-status">
|
|
<strong style="display:block;margin-bottom:7px">'git status' output</strong>
|
|
|
|
<code>
|
|
{% foreach $status as $line %}
|
|
<div>
|
|
{% if $line %}
|
|
{{ $line }}
|
|
{% endif %}
|
|
</div>
|
|
{% endforeach %}
|
|
</code>
|
|
</div>
|
|
</article>
|
|
</section>
|
|
{% endsection %} |