make the privacy page look consistent

このコミットが含まれているのは:
Arya Kiran 2023-03-09 15:44:17 +05:30
コミット 3b86e6a144
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 842D12BDA50DF120
2個のファイルの変更17行の追加10行の削除

ファイルの表示

@ -3,7 +3,8 @@
<main>
{{ if .file }}
<style>
{{.css}};
// prettier-ignore
{{.css}}
</style>
<div class="downloadParent">
<a href="/{{.fullname}}" class="button">Back to {{.fullname}}</a>

ファイルの表示

@ -1,6 +1,6 @@
{{template "header" .}}
<main style="text-align: center; line-height: 30px">
<main>
<h2>Instance Privacy</h2>
{{ if .privacyInformation}} {{ range $key, $value := .privacyInformation}}
<p>
@ -8,10 +8,12 @@
instances and to encourage privacy friendly practices.
</p>
<p>If this page isn't filled, please contact your instance's maintainer.</p>
<p><b>IP Address logged:</b> {{.IPAddr}}</p>
<p><b>Request URL logged:</b> {{.ReqURL}}</p>
<p><b>User Agent logged:</b> {{.UserAgent}}</p>
<p><b>Diagnostic Information logged:</b> {{.Diagnostics}}</p>
<ul>
<li><b>IP Address logged:</b> {{.IPAddr}}</li>
<li><b>Request URL logged:</b> {{.ReqURL}}</li>
<li><b>User Agent logged:</b> {{.UserAgent}}</li>
<li><b>Diagnostic Information logged:</b> {{.Diagnostics}}</li>
</ul>
{{ if .PrivacyPolicy }}
<p>
You can see the maintainer's
@ -25,9 +27,13 @@
><code>{{.Version}}</code></a
>
</p>
<p>Fiber version: {{ .FiberVersion}}, running on {{ .GoVersion}}</p>
<p>Country: {{.Country}}</p>
<p>Cloudflare: {{.Cloudflare}}</p>
<p>ISP: {{.Provider}}</p>
<ul>
<li>
<b>Go Version</b>: Fiber {{ .FiberVersion}} running on {{ .GoVersion}}
</li>
<li><b>Country:</b> {{.Country}}</li>
<li><b>Cloudflare:</b> {{.Cloudflare}}</li>
<li><b>ISP:</b> {{.Provider}}</li>
</ul>
{{end}} {{end}}
</main>