forked from MarseyWorld/MarseyWorld
remove trailing slashes in html files (I dont like them)
parent
f535eed4b2
commit
c2a5231ab5
|
@ -164,19 +164,19 @@
|
|||
const formatLocalCurrencyName = currency => ({ coins: 'coins', procoins: 'marseybux' })[currency];
|
||||
|
||||
biggestWinnerAllTime.innerHTML = `
|
||||
<a href="/@${leaderboardData.all_time.biggest_win.user}">${leaderboardData.all_time.biggest_win.user}</a> <br /><small>${leaderboardData.all_time.biggest_win.amount} ${formatLocalCurrencyName(leaderboardData.all_time.biggest_win.currency)}</small>
|
||||
<a href="/@${leaderboardData.all_time.biggest_win.user}">${leaderboardData.all_time.biggest_win.user}</a> <br><small>${leaderboardData.all_time.biggest_win.amount} ${formatLocalCurrencyName(leaderboardData.all_time.biggest_win.currency)}</small>
|
||||
`;
|
||||
|
||||
biggestWinner24h.innerHTML = `
|
||||
<a href="/@${leaderboardData.last_24h.biggest_win.user}">${leaderboardData.last_24h.biggest_win.user}</a> <br /> <small>${leaderboardData.last_24h.biggest_win.amount} ${formatLocalCurrencyName(leaderboardData.last_24h.biggest_win.currency)}</small>
|
||||
<a href="/@${leaderboardData.last_24h.biggest_win.user}">${leaderboardData.last_24h.biggest_win.user}</a> <br> <small>${leaderboardData.last_24h.biggest_win.amount} ${formatLocalCurrencyName(leaderboardData.last_24h.biggest_win.currency)}</small>
|
||||
`;
|
||||
|
||||
biggestLoser24h.innerHTML = `
|
||||
<a href="/@${leaderboardData.last_24h.biggest_loss.user}">${leaderboardData.last_24h.biggest_loss.user}</a> <br /> <small>${leaderboardData.last_24h.biggest_loss.amount} ${formatLocalCurrencyName(leaderboardData.last_24h.biggest_loss.currency)}</small>
|
||||
<a href="/@${leaderboardData.last_24h.biggest_loss.user}">${leaderboardData.last_24h.biggest_loss.user}</a> <br> <small>${leaderboardData.last_24h.biggest_loss.amount} ${formatLocalCurrencyName(leaderboardData.last_24h.biggest_loss.currency)}</small>
|
||||
`;
|
||||
|
||||
biggestLoserAllTime.innerHTML = `
|
||||
<a href="/@${leaderboardData.all_time.biggest_loss.user}">${leaderboardData.all_time.biggest_loss.user}</a> <br /> <small>${leaderboardData.all_time.biggest_loss.amount} ${formatLocalCurrencyName(leaderboardData.all_time.biggest_loss.currency)}</small>
|
||||
<a href="/@${leaderboardData.all_time.biggest_loss.user}">${leaderboardData.all_time.biggest_loss.user}</a> <br> <small>${leaderboardData.all_time.biggest_loss.amount} ${formatLocalCurrencyName(leaderboardData.all_time.biggest_loss.currency)}</small>
|
||||
`;
|
||||
}
|
||||
|
||||
|
@ -356,7 +356,7 @@
|
|||
<div class="row row-cols-1">
|
||||
<div class="col game_screen-title">
|
||||
<h3>{{game}}</h3>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<div class="col">{% block screen %} {% endblock %}</div>
|
||||
<div class="col">
|
||||
|
@ -369,27 +369,27 @@
|
|||
<div class="col">
|
||||
<div class="game_screen-title">
|
||||
<h5>Wager</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<input id="wagerAmount" type="number" min="5" step="1" value="5" class="form-control" />
|
||||
<input id="wagerAmount" type="number" min="5" step="1" value="5" class="form-control">
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="game_screen-title">
|
||||
<h5>Currency</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<div class="btn-group" role="group" aria-label="Select a currency.">
|
||||
<input type="radio" class="btn-check" name="wagerCurrency" autocomplete="off" id="wagerCoins"
|
||||
value="coin" checked />
|
||||
value="coin" checked>
|
||||
<label for="wagerCoins" class="btn btn-primary">
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin" width="32" data-bs-toggle="tooltip"
|
||||
data-bs-placement="bottom" title="Coin" aria-label="Coin" />
|
||||
data-bs-placement="bottom" title="Coin" aria-label="Coin">
|
||||
</label>
|
||||
<input type="radio" class="btn-check ml-2" name="wagerCurrency" autocomplete="off" id="wagerProcoins"
|
||||
value="marseybux" />
|
||||
value="marseybux">
|
||||
<label for="wagerProcoins" class="btn btn-primary">
|
||||
<img src="/i/marseybux.webp?v=2000" alt="marseybux" width="32" data-bs-toggle="tooltip"
|
||||
data-bs-placement="bottom" title="Marseybux" aria-label="Marseybux" />
|
||||
data-bs-placement="bottom" title="Marseybux" aria-label="Marseybux">
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -398,14 +398,14 @@
|
|||
<div class="col">
|
||||
<div class="game_screen-title">
|
||||
<h5>{% block actiontext %}Actions{% endblock %}</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
{% block actions %} {% endblock %}
|
||||
</div>
|
||||
<div id="casinoGameFeed" data-feed="{{feed}}" class="col">
|
||||
<div class="game_screen-title">
|
||||
<h5>Feed</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<ul id="casinoGameFeedList"></ul>
|
||||
<button type="button" class="btn btn-secondary" style="width: 100%" onclick="reloadFeed()">
|
||||
|
@ -415,13 +415,13 @@
|
|||
<div class="col">
|
||||
<div class="game_screen-title">
|
||||
<h5>Leaders</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<div id="gameLeaderboard" data-leaderboard="{{leaderboard}}">
|
||||
<!-- Biggest Winner All Time -->
|
||||
<div class="casino-game-leaderboard">
|
||||
<div class="leaderboard-marsey-trophy">
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyhappytears.webp" />
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyhappytears.webp">
|
||||
<i class="fas fa-trophy leaderboard-marsey-trophy__trophy" style="color: gold;"></i>
|
||||
</div>
|
||||
<div class="casino-game-leaderboard-info">
|
||||
|
@ -432,7 +432,7 @@
|
|||
<!-- Biggest Winner 24h -->
|
||||
<div class="casino-game-leaderboard">
|
||||
<div class="leaderboard-marsey-trophy">
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyexcited.webp" />
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyexcited.webp">
|
||||
<i class="fas fa-trophy leaderboard-marsey-trophy__trophy" style="color: gold;"></i>
|
||||
</div>
|
||||
<div class="casino-game-leaderboard-info">
|
||||
|
@ -443,7 +443,7 @@
|
|||
<!-- Biggest Loser 24h -->
|
||||
<div class="casino-game-leaderboard">
|
||||
<div class="leaderboard-marsey-trophy">
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseycry.webp" />
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseycry.webp">
|
||||
<i class="fas fa-trophy leaderboard-marsey-trophy__trophy" style="color: darkred;"></i>
|
||||
</div>
|
||||
<div class="casino-game-leaderboard-info">
|
||||
|
@ -454,7 +454,7 @@
|
|||
<!-- Biggest Loser All Time -->
|
||||
<div class="casino-game-leaderboard">
|
||||
<div class="leaderboard-marsey-trophy">
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyrain.webp" />
|
||||
<img class="leaderboard-marsey-trophy__marsey" src="/e/marseyrain.webp">
|
||||
<i class="fas fa-trophy leaderboard-marsey-trophy__trophy" style="color: darkred;"></i>
|
||||
</div>
|
||||
<div class="casino-game-leaderboard-info">
|
||||
|
@ -466,4 +466,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
<div style="text-align: right; margin-bottom: 3rem;">
|
||||
<h2>…but we’re here for you. You’ve been checked into Rehab.</h2>
|
||||
</div>
|
||||
<img src="/i/rDrama/brit.webp" style="text-align: center" />
|
||||
<img src="/i/rDrama/brit.webp" style="text-align: center">
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -213,8 +213,8 @@
|
|||
function buildPokerChip(avatar) {
|
||||
return `
|
||||
<div class="roulette-poker-chip">
|
||||
<img src="/i/pokerchip.webp" width="40" height="40" />
|
||||
<img src="${avatar}" width="40" height="40" />
|
||||
<img src="/i/pokerchip.webp" width="40" height="40">
|
||||
<img src="${avatar}" width="40" height="40">
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
@ -232,7 +232,7 @@
|
|||
data-bs-placement="bottom"
|
||||
title=""
|
||||
aria-label="Coin"
|
||||
data-bs-original-title="Coin" />
|
||||
data-bs-original-title="Coin">
|
||||
`;
|
||||
const marseybuxImgHtml = `
|
||||
<img
|
||||
|
@ -243,7 +243,7 @@
|
|||
title=""
|
||||
aria-label="Marseybux"
|
||||
width="32" class="mr-1 ml-1"
|
||||
data-bs-original-title="Marseybux" />
|
||||
data-bs-original-title="Marseybux">
|
||||
`;
|
||||
const { participants, coin, marseybux } = flatBets.reduce((prev, next) => {
|
||||
if (!prev.participants.includes(next.gambler_username)) {
|
||||
|
@ -266,7 +266,7 @@
|
|||
|
||||
let betHtml = `
|
||||
<small class="roulette-total-bets">${fullTotalText}</small>
|
||||
<hr />
|
||||
<hr>
|
||||
`;
|
||||
|
||||
for (player of normalizedBets.gamblers) {
|
||||
|
@ -491,8 +491,8 @@ Bets
|
|||
<div class="roulette-bet-summary">
|
||||
<div class="roulette-bet-summary--heading">
|
||||
<div class="roulette-poker-chip">
|
||||
<img src="/i/pokerchip.webp" width="40" height="40" />
|
||||
<img src="/e/marseycodecellove.webp" width="40" height="40" />
|
||||
<img src="/i/pokerchip.webp" width="40" height="40">
|
||||
<img src="/e/marseycodecellove.webp" width="40" height="40">
|
||||
</div>
|
||||
<p>111 is betting 4 and 4:
|
||||
</p>
|
||||
|
@ -510,7 +510,7 @@ Bets
|
|||
|
||||
<div class="game_screen-title">
|
||||
<h5>How to Bet</h5>
|
||||
<hr />
|
||||
<hr>
|
||||
</div>
|
||||
<table class="table">
|
||||
<thead>
|
||||
|
@ -525,7 +525,7 @@ Bets
|
|||
<td>Straight Up</td>
|
||||
<td>35:1</td>
|
||||
<td>
|
||||
Click any single number. <br />
|
||||
Click any single number. <br>
|
||||
You win if the roulette lands on that number.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -533,7 +533,7 @@ Bets
|
|||
<td>Line</td>
|
||||
<td>5:1</td>
|
||||
<td>
|
||||
Click Line 1, Line 2 ... Line 6. <br />
|
||||
Click Line 1, Line 2 ... Line 6. <br>
|
||||
You win if the roulette lands on any of the six numbers beneath the line.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -541,7 +541,7 @@ Bets
|
|||
<td>Column</td>
|
||||
<td>2:1</td>
|
||||
<td>
|
||||
Click Col 1, Col 2 or Col 3. <br />
|
||||
Click Col 1, Col 2 or Col 3. <br>
|
||||
You win if the roulette lands on any of the 12 numbers to the left of the column.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -549,7 +549,7 @@ Bets
|
|||
<td>Dozen</td>
|
||||
<td>2:1</td>
|
||||
<td>
|
||||
Click 1st12, 2nd12 or 3rd12. <br />
|
||||
Click 1st12, 2nd12 or 3rd12. <br>
|
||||
You win if the roulette lands on a number within 1-12, 13-24 or 25-36, respectively.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -557,7 +557,7 @@ Bets
|
|||
<td>Even/Odd</td>
|
||||
<td>1:1</td>
|
||||
<td>
|
||||
Click EVEN or ODD. <br />
|
||||
Click EVEN or ODD. <br>
|
||||
You win if the roulette lands on a number that matches your choice.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -565,7 +565,7 @@ Bets
|
|||
<td>Red/Black</td>
|
||||
<td>1:1</td>
|
||||
<td>
|
||||
Click RED or BLACK. <br />
|
||||
Click RED or BLACK. <br>
|
||||
You win if the roulette lands on a number that is the same color as your choice.
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -573,10 +573,10 @@ Bets
|
|||
<td>High/Low</td>
|
||||
<td>1:1</td>
|
||||
<td>
|
||||
Click 1:18 or 19:36. <br />
|
||||
Click 1:18 or 19:36. <br>
|
||||
You win if the roulette lands on a number within your selected range.
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -99,13 +99,13 @@
|
|||
|
||||
<div class="slots_reels">
|
||||
<div class="slots_reel">
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin" />
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
||||
</div>
|
||||
<div class="slots_reel">
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin" />
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
||||
</div>
|
||||
<div class="slots_reel">
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin" />
|
||||
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
<meta name="description" content="{{DESCRIPTION}}">
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'; connect-src 'self'; object-src 'none';">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="x-apple-disable-message-reformatting" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="x-apple-disable-message-reformatting">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title></title>
|
||||
<style type="text/css" rel="stylesheet" media="all">
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="description" content="The true home of IP2." />
|
||||
<meta name="description" content="The true home of IP2.">
|
||||
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';" />
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';">
|
||||
|
||||
<style>
|
||||
:root{--primary:#ff66ac}
|
||||
|
@ -32,81 +32,81 @@
|
|||
padding-top: 7.4px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032" />
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000" />
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032">
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000">
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<meta name="thumbnail" content="/i/PCM/site_preview.webp?v=3009" />
|
||||
<meta name="thumbnail" content="/i/PCM/site_preview.webp?v=3009">
|
||||
|
||||
<link rel="icon" type="image/webp" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="icon" type="image/webp" href="/i/PCM/icon.webp?v=3009">
|
||||
|
||||
<title>502 Bad Gateway</title>
|
||||
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-touch-fullscreen" content="yes" />
|
||||
<meta name="format-detection" content="telephone=no" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-touch-fullscreen" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="manifest" href="/assets/manifest_PCM.json?v=6" />
|
||||
<link rel="mask-icon" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="shortcut icon" href="/i/PCM/icon.webp?v=3009" />
|
||||
<meta name="apple-mobile-web-app-title" content="PCM" />
|
||||
<meta name="application-name" content="PCM" />
|
||||
<meta name="msapplication-TileColor" content="#ff66ac" />
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009" />
|
||||
<meta name="theme-color" content="#ff66ac" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="manifest" href="/assets/manifest_PCM.json?v=6">
|
||||
<link rel="mask-icon" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="shortcut icon" href="/i/PCM/icon.webp?v=3009">
|
||||
<meta name="apple-mobile-web-app-title" content="PCM">
|
||||
<meta name="application-name" content="PCM">
|
||||
<meta name="msapplication-TileColor" content="#ff66ac">
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009">
|
||||
<meta name="theme-color" content="#ff66ac">
|
||||
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/PCM/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/PCM/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/PCM/icon.webp?v=3009">
|
||||
</head>
|
||||
|
||||
<body id="error-502">
|
||||
<a rel="nofollow noopener noreferrer" href="https://secure.transequality.org/site/Donation2?df_id=1480">
|
||||
<img alt="site banner" src="/i/PCM/cached.webp?v=3009" width="100%" />
|
||||
<img alt="site banner" src="/i/PCM/cached.webp?v=3009" width="100%">
|
||||
</a>
|
||||
|
||||
<nav class="shadow-md fixed-top">
|
||||
<div class="navbar navbar-expand-md navbar-light" id="navbar">
|
||||
<div class="container-fluid" style="padding: 0;">
|
||||
<a href="/" class="navbar-brand mr-auto">
|
||||
<img id="header--icon" alt="header icon" src="/i/PCM/headericon.webp?v=3009" />
|
||||
<img id="header--icon" alt="header icon" src="/i/PCM/headericon.webp?v=3009">
|
||||
</a>
|
||||
|
||||
<div id="logo-container" class="flex-grow-1 logo-container">
|
||||
<a href="/">
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/PCM/logo.webp?v=3009" width="70" />
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/PCM/logo.webp?v=3009" width="70">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="flex-grow-1 d-fl d-none d-md-block pad">
|
||||
<form class="form-inline search flex-nowrap mx-0 mx-lg-auto" style="margin-right: 40rem !important;" action="/search/posts/" method="get">
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="" />
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="">
|
||||
<span class="input-group-append">
|
||||
<span class="input-group-text border-0 bg-transparent" style="margin-left: -2.5rem;">
|
||||
<i class="fa fa-search" aria-hidden="true"></i>
|
||||
|
@ -124,7 +124,7 @@
|
|||
<div class="row justify-content-center">
|
||||
<div class="col-10 col-md-5">
|
||||
<div class="text-center px-3 my-8">
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp" />
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp">
|
||||
<pre></pre>
|
||||
<h1 class="h5">502 Bad Gateway</h1>
|
||||
<p class="text-muted mb-3">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="description" content="People die and this is the place to see it. You only have one life, don't make the mistakes seen here." />
|
||||
<meta name="description" content="People die and this is the place to see it. You only have one life, don't make the mistakes seen here.">
|
||||
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';" />
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';">
|
||||
|
||||
<style>
|
||||
:root{--primary:#ff66ac}
|
||||
|
@ -32,81 +32,81 @@
|
|||
padding-top: 7.4px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032" />
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000" />
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032">
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000">
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<meta name="thumbnail" content="/i/WPD/site_preview.webp?v=3009" />
|
||||
<meta name="thumbnail" content="/i/WPD/site_preview.webp?v=3009">
|
||||
|
||||
<link rel="icon" type="image/webp" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="icon" type="image/webp" href="/i/WPD/icon.webp?v=3009">
|
||||
|
||||
<title>502 Bad Gateway</title>
|
||||
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-touch-fullscreen" content="yes" />
|
||||
<meta name="format-detection" content="telephone=no" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-touch-fullscreen" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="manifest" href="/assets/manifest_WPD.json?v=6" />
|
||||
<link rel="mask-icon" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="shortcut icon" href="/i/WPD/icon.webp?v=3009" />
|
||||
<meta name="apple-mobile-web-app-title" content="WPD" />
|
||||
<meta name="application-name" content="WPD" />
|
||||
<meta name="msapplication-TileColor" content="#ff66ac" />
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009" />
|
||||
<meta name="theme-color" content="#ff66ac" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="manifest" href="/assets/manifest_WPD.json?v=6">
|
||||
<link rel="mask-icon" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="shortcut icon" href="/i/WPD/icon.webp?v=3009">
|
||||
<meta name="apple-mobile-web-app-title" content="WPD">
|
||||
<meta name="application-name" content="WPD">
|
||||
<meta name="msapplication-TileColor" content="#ff66ac">
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009">
|
||||
<meta name="theme-color" content="#ff66ac">
|
||||
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/WPD/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/WPD/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/WPD/icon.webp?v=3009">
|
||||
</head>
|
||||
|
||||
<body id="error-502">
|
||||
<a rel="nofollow noopener noreferrer" href="https://secure.transequality.org/site/Donation2?df_id=1480">
|
||||
<img alt="site banner" src="/i/WPD/cached.webp?v=3009" width="100%" />
|
||||
<img alt="site banner" src="/i/WPD/cached.webp?v=3009" width="100%">
|
||||
</a>
|
||||
|
||||
<nav class="shadow-md fixed-top">
|
||||
<div class="navbar navbar-expand-md navbar-light" id="navbar">
|
||||
<div class="container-fluid" style="padding: 0;">
|
||||
<a href="/" class="navbar-brand mr-auto">
|
||||
<img id="header--icon" alt="header icon" src="/i/WPD/headericon.webp?v=3009" />
|
||||
<img id="header--icon" alt="header icon" src="/i/WPD/headericon.webp?v=3009">
|
||||
</a>
|
||||
|
||||
<div id="logo-container" class="flex-grow-1 logo-container">
|
||||
<a href="/">
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/WPD/logo.webp?v=3009" width="70" />
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/WPD/logo.webp?v=3009" width="70">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="flex-grow-1 d-fl d-none d-md-block pad">
|
||||
<form class="form-inline search flex-nowrap mx-0 mx-lg-auto" style="margin-right: 40rem !important;" action="/search/posts/" method="get">
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="" />
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="">
|
||||
<span class="input-group-append">
|
||||
<span class="input-group-text border-0 bg-transparent" style="margin-left: -2.5rem;">
|
||||
<i class="fa fa-search" aria-hidden="true"></i>
|
||||
|
@ -124,7 +124,7 @@
|
|||
<div class="row justify-content-center">
|
||||
<div class="col-10 col-md-5">
|
||||
<div class="text-center px-3 my-8">
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp" />
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp">
|
||||
<pre></pre>
|
||||
<h1 class="h5">502 Bad Gateway</h1>
|
||||
<p class="text-muted mb-3">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="description" content="rdrama.net caters to drama in all forms such as: Real life, videos, photos, gossip, rumors, news sites, Reddit, and Beyond™. There isn't drama we won't touch, and we want it all!" />
|
||||
<meta name="description" content="rdrama.net caters to drama in all forms such as: Real life, videos, photos, gossip, rumors, news sites, Reddit, and Beyond™. There isn't drama we won't touch, and we want it all!">
|
||||
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';" />
|
||||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' ajax.cloudflare.com; connect-src 'self'; object-src 'none';">
|
||||
|
||||
<style>
|
||||
:root{--primary:#ff66ac}
|
||||
|
@ -32,81 +32,81 @@
|
|||
padding-top: 7.4px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032" />
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000" />
|
||||
<link rel="stylesheet" href="/assets/css/main.css?v=4032">
|
||||
<link rel="stylesheet" href="/assets/css/midnight.css?v=4000">
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<meta name="thumbnail" content="/i/rDrama/site_preview.webp?v=3009" />
|
||||
<meta name="thumbnail" content="/i/rDrama/site_preview.webp?v=3009">
|
||||
|
||||
<link rel="icon" type="image/webp" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="icon" type="image/webp" href="/i/rDrama/icon.webp?v=3009">
|
||||
|
||||
<title>502 Bad Gateway</title>
|
||||
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-touch-fullscreen" content="yes" />
|
||||
<meta name="format-detection" content="telephone=no" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-touch-fullscreen" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="manifest" href="/assets/manifest_rDrama.json?v=6" />
|
||||
<link rel="mask-icon" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="shortcut icon" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<meta name="apple-mobile-web-app-title" content="rDrama" />
|
||||
<meta name="application-name" content="rDrama" />
|
||||
<meta name="msapplication-TileColor" content="#ff66ac" />
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009" />
|
||||
<meta name="theme-color" content="#ff66ac" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="manifest" href="/assets/manifest_rDrama.json?v=6">
|
||||
<link rel="mask-icon" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="shortcut icon" href="/i/rDrama/icon.webp?v=3009">
|
||||
<meta name="apple-mobile-web-app-title" content="rDrama">
|
||||
<meta name="application-name" content="rDrama">
|
||||
<meta name="msapplication-TileColor" content="#ff66ac">
|
||||
<meta name="msapplication-config" content="/assets/browserconfig.xml?v=3009">
|
||||
<meta name="theme-color" content="#ff66ac">
|
||||
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/rDrama/icon.webp?v=3009" />
|
||||
<link rel="apple-touch-startup-image" sizes="320x480" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="640x960" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="640x1136" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-icon" sizes="750x1334" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1004" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="768x1024" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="828x1792" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x748" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1024x768" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1125x2436" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2208" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1242x2688" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1334x750" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2008" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1536x2048" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1668x2224" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="1792x828" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1496" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x1536" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2048x2732" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2208x1242" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2224x1668" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2436x1125" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2668x1242" href="/i/rDrama/icon.webp?v=3009">
|
||||
<link rel="apple-touch-startup-image" sizes="2737x2048" href="/i/rDrama/icon.webp?v=3009">
|
||||
</head>
|
||||
|
||||
<body id="error-502">
|
||||
<a rel="nofollow noopener noreferrer" href="https://secure.transequality.org/site/Donation2?df_id=1480">
|
||||
<img alt="site banner" src="/i/rDrama/cached.webp?v=3009" width="100%" />
|
||||
<img alt="site banner" src="/i/rDrama/cached.webp?v=3009" width="100%">
|
||||
</a>
|
||||
|
||||
<nav class="shadow-md fixed-top">
|
||||
<div class="navbar navbar-expand-md navbar-light" id="navbar">
|
||||
<div class="container-fluid" style="padding: 0;">
|
||||
<a href="/" class="navbar-brand mr-auto">
|
||||
<img id="header--icon" alt="header icon" src="/i/rDrama/headericon.webp?v=3009" />
|
||||
<img id="header--icon" alt="header icon" src="/i/rDrama/headericon.webp?v=3009">
|
||||
</a>
|
||||
|
||||
<div id="logo-container" class="flex-grow-1 logo-container">
|
||||
<a href="/">
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/rDrama/logo.webp?v=3009" width="70" />
|
||||
<img class="ml-1" id="logo" alt="logo" src="/i/rDrama/logo.webp?v=3009" width="70">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="flex-grow-1 d-fl d-none d-md-block pad">
|
||||
<form class="form-inline search flex-nowrap mx-0 mx-lg-auto" style="margin-right: 40rem !important;" action="/search/posts/" method="get">
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="" />
|
||||
<input autocomplete="off" class="form-control w-100" type="search" placeholder="Search" aria-label="Search" name="q" value="">
|
||||
<span class="input-group-append">
|
||||
<span class="input-group-text border-0 bg-transparent" style="margin-left: -2.5rem;">
|
||||
<i class="fa fa-search" aria-hidden="true"></i>
|
||||
|
@ -124,7 +124,7 @@
|
|||
<div class="row justify-content-center">
|
||||
<div class="col-10 col-md-5">
|
||||
<div class="text-center px-3 my-8">
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp" />
|
||||
<img alt=":#marseycapysorenjump2:" loading="lazy" src="/e/marseycapysorenjump2.webp">
|
||||
<pre></pre>
|
||||
<h1 class="h5">502 Bad Gateway</h1>
|
||||
<p class="text-muted mb-3">
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<div style="margin-top: 5rem">
|
||||
<div class="lottery-page--wrapper">
|
||||
<div class="lottery-page--image">
|
||||
<img src="/i/{{SITE_NAME}}/lottery.webp?v=2000" />
|
||||
<img src="/i/{{SITE_NAME}}/lottery.webp?v=2000">
|
||||
<img
|
||||
id="lotteryTicketPulled"
|
||||
src="/i/{{SITE_NAME}}/lottery_active.webp?v=2000"
|
||||
style="display: none"
|
||||
/>
|
||||
>
|
||||
</div>
|
||||
<div class="lottery-page--stats">
|
||||
{% if v.admin_level >= PERMS['LOTTERY_ADMIN'] %}
|
||||
|
@ -66,7 +66,7 @@
|
|||
aria-label="coins"
|
||||
title="coins"
|
||||
style="display: none; position: relative; top: -2px"
|
||||
/>
|
||||
>
|
||||
<span id="prize">-</span>
|
||||
</div>
|
||||
<div id="timeLeft">-</div>
|
||||
|
@ -104,7 +104,7 @@
|
|||
name="ticketPurchaseQuantity"
|
||||
type="number"
|
||||
style="flex: 1; max-width: 100px; text-align: center"
|
||||
/>
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -125,7 +125,7 @@
|
|||
src="{{'coins.webp' | asset_siteimg}}"
|
||||
aria-label="coins"
|
||||
title="coins"
|
||||
/>
|
||||
>
|
||||
|
||||
<span id="totalCostOfTickets">12</span>
|
||||
</button>
|
||||
|
@ -189,4 +189,4 @@
|
|||
<script defer src="{{'js/lottery.js' | asset}}"></script>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue