21 lines
534 B
HTML
21 lines
534 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta http-equiv="refresh" content="0; url=/cities/">
|
||
|
|
<title>Redirecting...</title>
|
||
|
|
<style>
|
||
|
|
@media (max-width: 640px) {
|
||
|
|
.hero h1 { font-size: 2rem !important; }
|
||
|
|
.hero p { font-size: 1rem !important; }
|
||
|
|
.card { padding: 1.5rem !important; }
|
||
|
|
.grid { grid-template-columns: 1fr !important; }
|
||
|
|
.btn { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<p>Redirecting to <a href="/cities/">cities page</a>...</p>
|
||
|
|
</body>
|
||
|
|
</html>
|