feat: Initialize Rust blog CMS project with Axum, Askama, SQLite, and DevContainer setup.

This commit is contained in:
2026-03-02 20:14:54 +00:00
commit 02709fbea1
9 changed files with 2238 additions and 0 deletions

42
templates/index.html Normal file
View File

@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: 'Inter', 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
flex-direction: column;
}
h1 {
font-size: 4rem;
margin-bottom: 0.5rem;
background: linear-gradient(90deg, #ff8a00, #e52e71);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: pulse 2s infinite alternate;
}
p {
font-size: 1.5rem;
color: #b3b3b3;
}
@keyframes pulse {
0% { opacity: 0.8; transform: scale(0.98); }
100% { opacity: 1; transform: scale(1.02); }
}
</style>
</head>
<body>
<h1>Coming Soon</h1>
<p>We are working hard to build something amazing.</p>
</body>
</html>