mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 08:07:11 +02:00
dd2ac3bc69
also changed few Things about Website
84 lines
3.0 KiB
Plaintext
84 lines
3.0 KiB
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ title or "KST4Contest" }}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ description or 'KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contests.' }}">
|
|
<link rel="canonical" href="https://kst4contest.hamradioonline.de{{ page.url }}">
|
|
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ title or 'KST4Contest' }}">
|
|
<meta property="og:description" content="{{ description or 'Contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contests.' }}">
|
|
<meta property="og:url" content="https://kst4contest.hamradioonline.de{{ page.url }}">
|
|
<meta property="og:site_name" content="KST4Contest">
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="{{ title or 'KST4Contest' }}">
|
|
<meta name="twitter:description" content="{{ description or 'Contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contests.' }}">
|
|
|
|
<link rel="stylesheet" href="/assets/css/main.css?v={{ build.version }}">
|
|
<link rel="alternate" type="application/rss+xml" title="KST4Contest News" href="/feed.xml">
|
|
|
|
<meta property="og:image" content="https://kst4contest.hamradioonline.de/assets/social/kst4contest-og.png">
|
|
<meta property="og:image:width" content="1200">
|
|
<meta property="og:image:height" content="630">
|
|
<meta name="twitter:image" content="https://kst4contest.hamradioonline.de/assets/social/kst4contest-og.png">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="site-bg"></div>
|
|
|
|
<header class="site-header">
|
|
<a class="brand" href="/">
|
|
<span class="brand-mark">◎</span>
|
|
<span>
|
|
<strong>KST4Contest</strong>
|
|
<small>ON4KST Contest Client</small>
|
|
</span>
|
|
</a>
|
|
|
|
<nav class="site-nav">
|
|
{% for item in navigation %}
|
|
<a href="{{ item.url }}">{{ item.title }}</a>
|
|
{% endfor %}
|
|
<a class="nav-cta" href="/download/">Download</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{{ content | safe }}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<div class="footer-grid">
|
|
<div>
|
|
<strong>KST4Contest</strong>
|
|
<p>Contest-optimized ON4KST workflow for VHF/UHF/SHF operators.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<strong>Project</strong>
|
|
<p><a href="/features/">Features</a></p>
|
|
<p><a href="/download/">Download</a></p>
|
|
<p><a href="/manual/">Manual</a></p>
|
|
<p><a href="/roadmap/">Roadmap</a></p>
|
|
</div>
|
|
|
|
<div>
|
|
<strong>Community</strong>
|
|
<p><a href="https://github.com/praktimarc/kst4contest">GitHub Repository</a></p>
|
|
<p><a href="https://github.com/praktimarc/kst4contest/issues">Issues</a></p>
|
|
<p><a href="/contact/">Contact</a></p>
|
|
</div>
|
|
|
|
<div>
|
|
<strong>Legal</strong>
|
|
<p><a href="/legal-notice/">Legal Notice</a></p>
|
|
<p><a href="/privacy/">Privacy Policy</a></p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |