20 lines
652 B
HTML
20 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Suck my pipa</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
<img src="/static/images/image.png" alt="NP logo" class="center">
|
|
<header>
|
|
<div class="container">
|
|
<h1 class="logo">Suck my pipa</h1>
|
|
</div>
|
|
</header>
|
|
<div class="container">
|
|
<h2>Hit refresh if you think Sunderland AFC are the greatest football team in the world ;-)</h2>
|
|
<h3>You've refreshed bibas <b>{{ count }}</b> times</h3>
|
|
</div>
|
|
</body>
|
|
</html>
|