2018-09-22 03:53:29 +02:00
|
|
|
{{ define "title"}}{{ t "page.about.title" }}{{ end }}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
{{ define "content"}}
|
|
|
|
<section class="page-header">
|
2018-09-22 03:53:29 +02:00
|
|
|
<h1>{{ t "page.about.title" }}</h1>
|
2019-11-18 02:26:47 +01:00
|
|
|
{{ template "settings_menu" dict "user" .user }}
|
2017-11-20 06:10:04 +01:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<div class="panel">
|
2018-09-22 03:53:29 +02:00
|
|
|
<h3>Miniflux</h3>
|
2017-11-20 06:10:04 +01:00
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li><strong>{{ t "page.about.version" }}</strong> {{ .version }}</li>
|
2020-10-29 05:22:06 +01:00
|
|
|
<li><strong>Git Commit</strong> {{ .commit }}</li>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li><strong>{{ t "page.about.build_date" }}</strong> {{ .build_date }}</li>
|
2017-11-20 06:10:04 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="panel">
|
2018-09-22 03:53:29 +02:00
|
|
|
<h3>{{ t "page.about.credits" }}</h3>
|
2017-11-20 06:10:04 +01:00
|
|
|
<ul>
|
2018-09-22 03:53:29 +02:00
|
|
|
<li><strong>{{ t "page.about.author" }}</strong> Frédéric Guillot</li>
|
|
|
|
<li><strong>{{ t "page.about.license" }}</strong> Apache 2.0</li>
|
2017-11-20 06:10:04 +01:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2020-12-30 04:43:37 +01:00
|
|
|
{{ if .user.IsAdmin }}
|
|
|
|
<div class="panel">
|
|
|
|
<h3>{{ t "page.about.global_config_options" }}</h3>
|
|
|
|
<ul>
|
|
|
|
{{ range .globalConfigOptions }}
|
|
|
|
<li><code><strong>{{ .Key }}</strong>={{ .Value }}</code></li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2017-11-20 06:10:04 +01:00
|
|
|
{{ end }}
|