denisgay/index.html
2025-11-12 19:51:06 +07:00

51 lines
1.5 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="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Гейский цитатник Дениса Шулепова</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="header">
<div class="container">
<h1 class="logo">Гейский цитатник Дениса Шулепова</h1>
<div class="header-controls">
<button
class="auto-publish-btn"
id="autoPublishBtn"
title="Автопубликация включена"
>
⏰ Автопубликация
</button>
</div>
</div>
</header>
<main class="main">
<div class="container">
<div class="quotes-feed" id="quotesFeed">
<!-- Цитаты будут добавляться сюда через JavaScript -->
</div>
<div class="loading" id="loading" style="display: none">
<div class="spinner"></div>
<p>Генерирую цитату...</p>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<p>&copy; 2024 Цитатник Дениса Шулепова. Все права защищены.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>