Files
Random-batpony-generator/templates/index.html
DarkShyMW 4e3e08f11d modified: pony.py
modified:   templates/index.html
2024-04-11 17:53:51 +03:00

53 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Batpony Image</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
padding-bottom: 10px;
}
header {
text-align: center;
color: #eed70a;
background-color: #5d6469;
padding-left: 5px;
padding-right: 5px;
margin-bottom: 10px;
}
main {
flex: 1;
}
footer {
text-align: center;
color: #eed70a;
padding: 1rem 0;
background-color: #5d6469;
}
span {
color:red;
}
</style>
</head>
<body>
<header><h1>Random Pony Generator by Dark<span>Shy</span></h1></header>
<main>
<div class="container">
<div class="text-center">
<img src="{{ image_url }}" alt="Batpony Image" class="img-fluid">
</div>
<div class="text-center">
<p>Tags: {{ tags }}</p>
<a href="{{ view_url }}" target="_blank" class="btn btn-primary">Посмотреть на Derpibooru</a>
</div>
</div>
</main>
<footer><h3>Все права принадлежат поням.</h3> <br> <a href="https://github.com/DarkShyMW/Random-batpony-generator"><span>Исходный код</span></a></footer>
</body>
</html>