Wan2.1/web_interface/views/partials/head.ejs
2025-05-17 10:46:44 +00:00

35 lines
963 B
Plaintext

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= title %></title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom CSS -->
<style>
body {
background-color: #f8f9fa;
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
.card {
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
border: none;
}
.card-header {
font-weight: bold;
}
.navbar-brand img {
max-height: 40px;
}
footer {
margin-top: auto;
}
</style>
</head>