mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<div class="col-sm-12 col-md-12 main" ng-controller="AboutCtrl" ng-cloak>
|
|
<br />
|
|
<h1 class="page-header">About</h1>
|
|
<p>
|
|
<a href="{{ url }}">Burp-UI</a> {{ _('is brought to you by') }} <a href="https://ziirish.info/">Ziirish</a>.
|
|
<br />
|
|
{{ _('You can find the documentation at') }} <a href="{{ doc }}">{{ doc }}</a> <i class="fa fa-book" aria-hidden="true"></i>
|
|
</p>
|
|
{# From here, the jinja syntax is escaped because we use the angularjs syntax #}
|
|
{% raw %}
|
|
<p>
|
|
<strong>Burp-UI</strong> version: <em>{{ version }}</em>
|
|
</p>
|
|
<p ng-repeat="b in burp" ng-if="b.client || b.server">
|
|
<strong>{{ ::b.name }}</strong><span ng-if="b.client"> - client: <em>{{ ::b.client }}</em></span><span ng-if="b.server"> - server: <em>{{ ::b.server }}</em></span>
|
|
</p>
|
|
<p>
|
|
{% endraw %}
|
|
{% if current_user.is_authenticated -%}
|
|
{{ _('Browse the ') }}<a ng-href="{{ '{{' }} api {{ '}}' }}">API</a> <i class="fa fa-flask" aria-hidden="true"></i>
|
|
{% endif -%}
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|