Testing git push from server

This commit is contained in:
Aram Markarov
2025-04-12 22:46:21 +02:00
parent 0a38b062c0
commit 4d60f9af44
17 changed files with 0 additions and 52 deletions
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 105 KiB

Regular → Executable
View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Regular → Executable
View File

Before

Width:  |  Height:  |  Size: 789 B

After

Width:  |  Height:  |  Size: 789 B

Regular → Executable
View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Regular → Executable
View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
-52
View File
@@ -1,52 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Live Stream</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
video {
width: 80%;
height: auto;
border: 1px solid #ddd;
margin: 20px auto;
display: block;
}
</style>
</head>
<body>
<header class="bg-blue-600 text-white p-4">
<div class="container mx-auto">
<h1 class="text-3xl font-bold">Live Stream</h1>
<nav class="mt-2">
<ul class="flex justify-center space-x-4">
<li><a href="index.php" class="hover:underline">Home</a></li>
</ul>
</nav>
</div>
</header>
<main class="container mx-auto p-4">
<h2 class="text-2xl font-semibold mb-4">Live Video Feed</h2>
<video id="video" autoplay playsinline></video>
</main>
<footer class="bg-cyan-800 text-white py-4 mt-4">
<div class="container mx-auto text-center">
<p>&copy; <?php echo date('Y'); ?> My Website. All rights reserved.</p>
</div>
</footer>
</body>
</html>
Regular → Executable
View File
Regular → Executable
View File