forked from MarseyWorld/MarseyWorld
sneed
parent
b5f7bd78da
commit
1047667a81
|
@ -0,0 +1,124 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
||||
|
||||
|
||||
<title>403 Unauthorized</title>
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
|
||||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
|
||||
<!-- iOS webapp -->
|
||||
<link rel="apple-touch-icon" href="/assets/favicon.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="apple-mobile-web-app-title" content="Drama">
|
||||
|
||||
<!-- Drama CSS -->
|
||||
|
||||
{% if v %}
|
||||
<link rel="stylesheet" href="/assets/style/{{v.theme}}_{{v.themecolor}}.css">
|
||||
{% if v.agendaposter %}<link rel="stylesheet" href="/assets/style/agendaposter.css">{% elif v.css %}<link rel="stylesheet" href="/@{{v.username}}/css">{% endif %}
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="/assets/style/dark_ff66ac.css">
|
||||
{% endif %}
|
||||
|
||||
<!-- Font Awesome -->
|
||||
<link href="/assets/style/fa.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
<body id="error-503" class="">
|
||||
|
||||
|
||||
<!--Header -->
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar navbar-expand-md navbar-light bg-white shadow shadow-md fixed-top" id="navbar">
|
||||
<div class="container">
|
||||
<div class="flex-grow-1"><span class="text-primary navbar-brand">drama</span></div>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
|
||||
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"><i class="fal fa-bars text-gray-400" style="font-size: 2rem;"></i></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
|
||||
<!-- Mobile Nav Menu -->
|
||||
<ul class="navbar-nav ml-auto d-flex d-md-none mt-3">
|
||||
|
||||
|
||||
<li class="nav-item nav-item">
|
||||
<a class="nav-link text-small-extra" href="https://github.com/drama/drama">GitHub</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<!-- Page Content -->
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-around" id="main-content-row">
|
||||
|
||||
<div class="col h-100 custom-gutters mt-0 mt-md-3" id="main-content-col">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-10">
|
||||
<div class="text-center px-3 py-8">
|
||||
<span class="fa-stack text-muted mb-5" style="font-size: 2.5rem;">
|
||||
<i class="far fa-cloud fa-stack-2x text-muted"></i>
|
||||
<i class="fad fa-fire fa-stack-1x text-danger"></i>
|
||||
</span>
|
||||
<h1 class="h5">403 Unauthorized</h1>
|
||||
<p class="text-muted">You have 0 ban awards (they're a patron perk):</p>
|
||||
<p class="text-muted">https://rdrama.gumroad.com/l/tfcvri</p>
|
||||
<p class="text-muted">https://patreon.com/Aevann</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Bootstrap core JavaScript -->
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Initialize BS 4 tool tips -->
|
||||
|
||||
<script src="https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js" data-cf-settings="37cef32129ec2b1bc32e9226-|49" defer=""></script></body>
|
||||
|
||||
</html>
|
|
@ -54,8 +54,8 @@
|
|||
<i class="fad fa-helmet-battle text-muted mb-5" style="font-size: 5rem;"></i>
|
||||
<h1 class="h5">403 Unauthorized</h1>
|
||||
<p class="text-muted">This page is only available to patrons:</p>
|
||||
<p class="text-muted mb-5">https://rdrama.gumroad.com/l/tfcvri</p>
|
||||
<p class="text-muted mb-5">https://patreon.com/Aevann</p>
|
||||
<p class="text-muted">https://rdrama.gumroad.com/l/tfcvri</p>
|
||||
<p class="text-muted">https://patreon.com/Aevann</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,124 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
||||
|
||||
|
||||
<title>403 Unauthorized</title>
|
||||
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
|
||||
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||
|
||||
<!-- iOS webapp -->
|
||||
<link rel="apple-touch-icon" href="/assets/favicon.png">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="apple-mobile-web-app-title" content="Drama">
|
||||
|
||||
<!-- Drama CSS -->
|
||||
|
||||
{% if v %}
|
||||
<link rel="stylesheet" href="/assets/style/{{v.theme}}_{{v.themecolor}}.css">
|
||||
{% if v.agendaposter %}<link rel="stylesheet" href="/assets/style/agendaposter.css">{% elif v.css %}<link rel="stylesheet" href="/@{{v.username}}/css">{% endif %}
|
||||
{% else %}
|
||||
<link rel="stylesheet" href="/assets/style/dark_ff66ac.css">
|
||||
{% endif %}
|
||||
|
||||
<!-- Font Awesome -->
|
||||
<link href="/assets/style/fa.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
|
||||
<body id="error-503" class="">
|
||||
|
||||
|
||||
<!--Header -->
|
||||
<!-- Navigation -->
|
||||
<nav class="navbar navbar-expand-md navbar-light bg-white shadow shadow-md fixed-top" id="navbar">
|
||||
<div class="container">
|
||||
<div class="flex-grow-1"><span class="text-primary navbar-brand">drama</span></div>
|
||||
|
||||
|
||||
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
|
||||
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"><i class="fal fa-bars text-gray-400" style="font-size: 2rem;"></i></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarResponsive">
|
||||
|
||||
<!-- Mobile Nav Menu -->
|
||||
<ul class="navbar-nav ml-auto d-flex d-md-none mt-3">
|
||||
|
||||
|
||||
<li class="nav-item nav-item">
|
||||
<a class="nav-link text-small-extra" href="https://github.com/drama/drama">GitHub</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<!-- Page Content -->
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-around" id="main-content-row">
|
||||
|
||||
<div class="col h-100 custom-gutters mt-0 mt-md-3" id="main-content-col">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-10">
|
||||
<div class="text-center px-3 py-8">
|
||||
<span class="fa-stack text-muted mb-5" style="font-size: 2.5rem;">
|
||||
<i class="far fa-cloud fa-stack-2x text-muted"></i>
|
||||
<i class="fad fa-fire fa-stack-1x text-danger"></i>
|
||||
</span>
|
||||
<h1 class="h5">403 Unauthorized</h1>
|
||||
<p class="text-muted">This page is only available to patrons:</p>
|
||||
<p class="text-muted">https://rdrama.gumroad.com/l/tfcvri</p>
|
||||
<p class="text-muted">https://patreon.com/Aevann</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Bootstrap core JavaScript -->
|
||||
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous" type="37cef32129ec2b1bc32e9226-text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Initialize BS 4 tool tips -->
|
||||
|
||||
<script src="https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js" data-cf-settings="37cef32129ec2b1bc32e9226-|49" defer=""></script></body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue