mirror of
https://github.com/cwchristerw/tjas-infra
synced 2025-09-09 23:12:51 +00:00
88 lines
2.9 KiB
HTML
88 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ hostname }}</title>
|
|
|
|
<!-- Meta: Charset -->
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- Meta: Viewport -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<!-- Meta: Robots -->
|
|
<meta name="robots" content="noindex,noodp,noarchive">
|
|
<meta name="google" content="notranslate">
|
|
|
|
<!-- Link: Preconnect & DNS Prefetch & Preload -->
|
|
<link rel="preconnect" href="//cdn.waren.io">
|
|
<link rel="dns-prefetch" href="//cdn.waren.io">
|
|
<link rel="preload" as="style" href="https://cdn.waren.io/frameworks/font-awesome/7.0.0/css/all.min.css" crossorigin="anonymous">
|
|
<link rel="preload" as="font" type="font/woff2" href="https://cdn.waren.io/frameworks/font-awesome/7.0.0/webfonts/fa-solid-900.woff2" crossorigin="anonymous">
|
|
|
|
<style>
|
|
body {
|
|
background-color: #333333;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
*, *:active, *:focus, *:hover, *:visited, *:link {
|
|
color: #ffffff;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
img {
|
|
width: 50%;
|
|
}
|
|
|
|
ul {
|
|
font-size: 1.5rem;
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 0px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
a {
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer {
|
|
color: #555555 !important;
|
|
margin-top: 50px;
|
|
}
|
|
</style>
|
|
|
|
<!-- Link: CSS -->
|
|
<link rel="stylesheet" href="https://cdn.waren.io/frameworks/font-awesome/7.0.0/css/all.min.css" crossorigin="anonymous" media="screen">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1 style="display:none;">TJAS - Tango Juliet Alpha Sierra</h1>
|
|
<img src="data:image/svg+xml;base64,{{ lookup('ansible.builtin.file', './assets/images/logo.svg') | ansible.builtin.b64encode }}" alt="TJAS - Tango Juliet Alpha Sierra">
|
|
</header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="https://cloud.tjas"><i class="fa-solid fa-cloud"></i> Cloud</a></li>
|
|
<li><a href="https://status.tjas"><i class="fa-solid fa-signal"></i> Status</a></li>
|
|
</ul>
|
|
</nav>
|
|
<footer>
|
|
<div class="server">
|
|
<p class="name">{{ hostname | upper }}</p>
|
|
<p class="location">{{ location | upper }}</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|