1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-18 07:36:24 -07:00
gochan/templates/banpage.html

57 lines
2.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Banned</title>
<link rel="stylesheet" href="/css/global/front.css" />
{{range $i, $style := .config.Styles}}
<link rel="{{if not (isStyleDefault $style)}}alternate {{end}}stylesheet" href="/css/{{$style}}/front.css" />{{end}}
<script type="text/javascript">
var styles = [{{range $i, $style := .config.Styles}}{{if gt $i 0}}, {{end}}"{{$style}}"{{end}}];
2018-04-06 01:03:57 -07:00
var webroot = "{{.config.SiteWebfolder}}"
</script>
2018-01-28 15:01:59 -08:00
<script type="text/javascript" src="/javascript/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="/javascript/gochan.js"></script>
<script type="text/javascript" src="/javascript/manage.js"></script>
</head>
<body>
<div id="top-pane">
2018-04-06 01:03:57 -07:00
<span id="site-title">{{.config.SiteName}}</span><br />
<span id="site-slogan">{{.config.SiteSlogan}}</span>
</div>
<br />
<br />
<div class="section-block" style="margin: 0px 26px 0px 24px">
<div class="section-title-block">
<span class="section-title"><b>YOU ARE BANNED :(</b></span>
</div>
<div class="section-body" style="padding-top:8px">
<div id="ban-info" style="float:left">
2018-04-06 01:03:57 -07:00
{{if eq .ban.Boards "*"}}
You are banned from posting on <b>all boards</b> for the following reason:
{{else}}
2018-04-06 01:03:57 -07:00
You are banned from posting on <b>{{.ban.Boards}}</b> for the following reason:
{{end}}
<br /><br />
2018-04-06 01:03:57 -07:00
<b>{{.ban.Message}}</b>
<br /><br />
2018-04-06 01:03:57 -07:00
{{$expires_timestamp := formatTimestamp .ban.Expires}}
{{$appeal_timestamp := formatTimestamp .ban.AppealAt}}
{{if eq $expires_timestamp "Mon, January 01, 0001 00:00 AM"}}
Your ban was placed on {{formatTimestamp .ban.Timestamp}} and will not expire.<br />
{{else}}
2018-04-06 01:03:57 -07:00
Your ban was placed on {{formatTimestamp .ban.Timestamp}} and will expire on {{$expires_timestamp}}<br />
{{end}}
<br />
2018-04-06 01:03:57 -07:00
{{if eq .appeal_timestamp "Mon, January 01, 0001 00:00 AM"}}
You may not appeal this ban.
{{else}}
2018-04-06 01:03:57 -07:00
You may appeal this ban {{$appeal_timestamp}}
{{end}}
<br /><br />
2018-04-06 01:03:57 -07:00
Your IP address is {{.ban.IP}}.
</div>
<img id="banpage-image" src="/banned.jpg" style="float:right; margin: 4px 8px 8px 4px"/>
</div>
</div>
</body>
</html>