62 lines
1.5 KiB
Django/Jinja
62 lines
1.5 KiB
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CDN - Content Delivery Network</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
}
|
|
header {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
padding: 1em;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
padding: 2em;
|
|
}
|
|
.card {
|
|
background-color: white;
|
|
border-radius: 5px;
|
|
padding: 1.5em;
|
|
margin-bottom: 1.5em;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
}
|
|
footer {
|
|
background-color: #2c3e50;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 1em;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>cdn.{{ domain }}</h1>
|
|
<p>Enterprise Content Delivery Network</p>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<div class="card">
|
|
<h2>Welcome to Our CDN</h2>
|
|
<p>This server is part of our global content delivery network.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2025 {{ domain }} CDN Services. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|