maintenance/html/index.html
2025-05-06 15:31:08 +00:00

1 line
No EOL
867 B
HTML

<!doctype html><meta charset="UTF-8"><head><title>{{title}}</title><style>body{text-align: center; padding: 20px;}@media (min-width: 768px){body{padding-top: 100px;}}h1{font-size: 50px;}body{font: 20px Helvetica, sans-serif; color: #333;}article{display: block; text-align: left; max-width: 650px; margin: 0 auto;}a{color:{{link_color}}; text-decoration: none;}a:hover{color: #333; text-decoration: none;}</style><script type="text/javascript">function applyTheme(){var themeType="{{theme}}";if(themeType==="Dark"){document.body.style.backgroundColor="#2a2e35";document.body.style.color="#b2becd";}if(themeType==="Light"){document.body.style.backgroundColor="white";document.body.style.color="black";}}window.onload=function(){applyTheme();};</script></head><body><article><h1>{{headline}}</h1><div><p>{{message}}</p><p>&mdash;{{team_name}}</p></div></article></body>