mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-03 10:00:10 +00:00
83 lines
2.5 KiB
HTML
83 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Streaming Directory</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
</head>
|
|
|
|
<body> <main>
|
|
<section class="container"> <div class="header-container">
|
|
<div class="sites-stats">
|
|
<span class="total-sites">
|
|
<i class="fas fa-globe"></i>
|
|
Total Sites: <span id="sites-count">0</span>
|
|
</span>
|
|
<span class="last-update-global">
|
|
<i class="fas fa-clock"></i>
|
|
Last Update: <span id="last-update-time">-</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="sites-container">
|
|
<div id="site-list" class="site-grid">
|
|
<div class="loader"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="footer-content"> <div class="footer-section">
|
|
<h3 class="footer-title">Repository</h3>
|
|
<ul class="footer-links">
|
|
<li>
|
|
<a href="https://github.com/Arrowar/StreamingCommunity" target="_blank" rel="noopener noreferrer">
|
|
<i class="fab fa-github"></i>
|
|
Project GitHub
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<p class="footer-description">
|
|
An open-source script for downloading movies, TV shows, and anime from various websites.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer-section">
|
|
<h3 class="footer-title">Support</h3>
|
|
<ul class="footer-links">
|
|
<li>
|
|
<a href="https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C" target="_blank" rel="noopener noreferrer">
|
|
<i class="fab fa-paypal"></i>
|
|
Donate with PayPal
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<p class="footer-description">
|
|
Support the development of this project through donations.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer-section">
|
|
<h3 class="footer-title">Info</h3>
|
|
<ul class="footer-links">
|
|
<li>
|
|
<span class="update-note">
|
|
<i class="fas fa-sync-alt"></i>
|
|
Domains updated once every hour
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
<p class="footer-description">
|
|
All domains are automatically updated once every hour.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="js/script.js"></script>
|
|
</body>
|
|
</html> |