mirror of
https://github.com/Alexander-D-Karpov/about.git
synced 2026-03-16 22:06:08 +03:00
30 lines
896 B
HTML
30 lines
896 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1" name="viewport">
|
|
<title>{{ .Title }}</title>
|
|
<link href="/favicon.ico" rel="icon" type="image/x-icon">
|
|
<link href="/static/bundle.css?v={{ .CSSHash }}" rel="stylesheet">
|
|
</head>
|
|
<body class="potato-mode">
|
|
<div class="container">
|
|
<section class="mosaic">
|
|
{{ range .Plugins }}
|
|
{{ . }}
|
|
{{ end }}
|
|
</section>
|
|
</div>
|
|
|
|
<div class="status-bar">
|
|
<span class="status-indicator" id="connection-status"></span>
|
|
<span id="status-text">Connecting...</span>
|
|
<span class="status-separator">•</span>
|
|
<button class="potato-toggle active" id="potato-toggle" onclick="togglePotatoMode()" title="Switch to Full Mode">
|
|
🥔
|
|
</button>
|
|
</div>
|
|
|
|
<script defer src="/static/bundle.js?v={{ .JSHash }}"></script>
|
|
</body>
|
|
</html> |