<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ECMWF Aviso - Data Notification Service</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
background:
radial-gradient(circle at 20% 80%, rgba(120, 160, 200, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(160, 200, 240, 0.3) 0%, transparent 50%),
linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 35%, #6ba6cd 70%, #5a9bc4 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(127, 179, 211, 0.15);
text-align: center;
}
.header {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
margin-bottom: 1rem;
}
.logo {
width: 80px;
height: 80px;
background: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
font-weight: bold;
flex-shrink: 0;
}
h1 {
font-size: 2.5rem;
margin: 0;
color: #1e3a5f;
font-weight: 700;
}
.version-badge {
display: inline-block;
font-size: 0.85rem;
font-weight: 600;
color: #2c5282;
background: rgba(107, 166, 205, 0.18);
padding: 0.25rem 0.7rem;
border-radius: 999px;
vertical-align: middle;
margin-left: 0.6rem;
letter-spacing: 0.02em;
}
.subtitle {
font-size: 1.2rem;
color: #4a90b8;
margin-bottom: 2rem;
font-weight: 500;
}
.description {
font-size: 1.1rem;
color: #2c5282;
margin-bottom: 2rem;
line-height: 1.7;
}
.access-notice {
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
border: 2px solid #2196f3;
border-left: 5px solid #1976d2;
border-radius: 10px;
padding: 1.5rem;
margin-bottom: 3rem;
font-size: 1rem;
color: #0d47a1;
box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
position: relative;
}
.access-notice::before {
content: "⚠️";
font-size: 1.2rem;
margin-right: 0.5rem;
}
.access-notice strong {
color: #1565c0;
}
.buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 2rem;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
transition: all 0.3s ease;
font-size: 1rem;
}
.btn-secondary {
background: white;
color: #4a90b8;
border: 2px solid #4a90b8;
}
.btn-secondary:hover {
background: #4a90b8;
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(74, 144, 184, 0.25);
}
.feature h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
color: #1e3a5f;
}
.feature p {
font-size: 0.9rem;
color: #4a90b8;
}
@media (max-width: 768px) {
.container {
margin: 1rem;
padding: 1.5rem;
}
.header {
flex-direction: column;
gap: 1rem;
}
h1 {
font-size: 2rem;
}
.logo {
width: 60px;
height: 60px;
}
.buttons {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 300px;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img src="/static/logo.png" alt="Aviso" class="logo">
<h1>Aviso <span class="version-badge">v{{SERVER_VERSION}}</span></h1>
</div>
<div class="subtitle">Real-time Data Notification Service</div>
<div class="description">
Aviso is ECMWF's event-driven notification service designed to orchestrate time-critical workflows across HPC and Cloud environments. By bridging multiple computational domains with real-time event notifications, Aviso enables seamless automation of complex meteorological data processing pipelines.
</div>
<div class="access-notice">
<strong>Access Notice:</strong> Currently limited to registered users only.<br>
Please contact the ECMWF Service Desk for access and configuration instructions.
</div>
<div class="buttons">
<a href="https://github.com/ecmwf/aviso-server" target="_blank" rel="noopener noreferrer" class="btn btn-secondary">
📚 GitHub Repository
</a>
<a href="swagger-ui/" class="btn btn-secondary">
📋 API Schema
</a>
<a href="https://sites.ecmwf.int/docs/aviso-server/main/" target="_blank" rel="noopener noreferrer" class="btn btn-secondary">
📖 Documentation
</a>
</div>
</div>
</body>
</html>