60 lines
1.6 KiB
HTML
60 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ PAGE TITLE }}</title>
|
|
<meta name="description" content="{{ META DESCRIPTION }}">
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="top-controls">
|
|
<div>
|
|
<a id="lang-en" class="active" href="#" onclick="setLanguage('en')">en</a>
|
|
<a id="lang-ru" href="#" onclick="setLanguage('ru')">ru</a>
|
|
{{ LANGUAGES }}
|
|
</div>
|
|
</div>
|
|
|
|
<section>
|
|
<h1 data-lang="en">TheK4n</h1>
|
|
<p data-lang="en"><small>Developer</small></p>
|
|
</section>
|
|
|
|
<section>
|
|
<h1 data-lang="en">Projects</h1>
|
|
<p data-lang="en"><small class="muted">service desc</small></p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>GPG Public Key</h2>
|
|
|
|
<p>
|
|
<span data-lang="en">Available at:</span>
|
|
<a href="{{ GPG KEY URL }}" target="_blank" rel="noopener noreferrer" >{{ GPG KEY URL }}</a>
|
|
</p>
|
|
|
|
<details class="gpg-details">
|
|
<summary data-lang="en">
|
|
::marker
|
|
<span class="summary-row">
|
|
Show key
|
|
<a id="copy-gpg" class="copy-link" href="#" onclick="copyGPGKey()">copy to clipboard</a>
|
|
</span>
|
|
</summary>
|
|
</details>
|
|
|
|
</section>
|
|
|
|
<footer>
|
|
<p>© year thek4n</p>
|
|
</footer>
|
|
|
|
</main>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|