generated from Cammybot/git-pages-template
62 lines
1.7 KiB
HTML
62 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>${{ github.event.repository.name }}</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
|
color: #eee;
|
|
min-height: 100vh;
|
|
}
|
|
h1 {
|
|
color: #e94560;
|
|
margin-bottom: 1rem;
|
|
font-size: 2.5rem;
|
|
}
|
|
p {
|
|
margin-bottom: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
.card {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
padding: 1.5rem;
|
|
margin: 1rem 0;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
a {
|
|
color: #e94560;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.emoji {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="emoji">🌟</div>
|
|
<h1>${{ github.event.repository.name }}</h1>
|
|
<div class="card">
|
|
<p>Welcome to your Git-Pages site!</p>
|
|
<p>This site is automatically deployed from this repository.</p>
|
|
</div>
|
|
<p>📁 Edit <code>.index/index.html</code> to customize this page.</p>
|
|
<p>🔄 Push to <code>main</code> or <code>pages</code> to auto-deploy.</p>
|
|
</body>
|
|
</html>
|