gitlin/views/about.html

41 行
1.2 KiB
HTML
Raw 通常表示 履歴

{{template "header" .}}
2023-03-09 19:14:17 +09:00
<main>
<h2>About this GotHub instance</h2>
2023-03-08 01:58:55 +09:00
{{ if .privacyInformation}} {{ range $key, $value := .privacyInformation}}
<h3>Instance Privacy</h3>
2023-03-08 01:58:55 +09:00
<p>
The goal of this page is to bring transparency to the data collected by the
instances and to encourage privacy friendly practices.
</p>
<p>If this page isn't filled, please contact your instance's maintainer.</p>
2023-03-09 19:14:17 +09:00
<ul>
<li><b>IP Address logged:</b> {{.IPAddr}}</li>
<li><b>Request URL logged:</b> {{.ReqURL}}</li>
2023-03-11 23:47:47 +09:00
<li><b>User Agent logged:</b> {{.UserAgent}}</li>
2023-03-09 19:14:17 +09:00
<li><b>Diagnostic Information logged:</b> {{.Diagnostics}}</li>
</ul>
2023-03-08 01:58:55 +09:00
{{ if .PrivacyPolicy }}
<p>
You can see the maintainer's
2023-03-08 18:10:27 +09:00
<a href="{{.PrivacyPolicy}}">Privacy Policy</a> for more information.
2023-03-08 01:58:55 +09:00
</p>
{{end}}
<h3>Additional Information</h3>
<p>
GotHub version:
<a href="https://codeberg.org/gothub/gothub/commit/{{.Version}}"
><code>{{.Version}}</code></a
>
</p>
2023-03-09 19:14:17 +09:00
<ul>
2023-03-16 18:55:17 +09:00
<li>
<b>Go Version</b>: Fiber {{ .FiberVersion}} running on {{ .GoVersion}}
</li>
2023-03-09 19:14:17 +09:00
<li><b>Country:</b> {{.Country}}</li>
<li><b>Cloudflare:</b> {{.Cloudflare}}</li>
<li><b>ISP:</b> {{.Provider}}</li>
</ul>
2023-03-08 01:58:55 +09:00
{{end}} {{end}}
</main>