first commit

This commit is contained in:
2025-11-05 17:32:17 +04:00
commit 0609bcceb5
34 changed files with 4748 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<nav>
<div class="nav-container">
<a href="/" class="logo logo-with-glow" style="display: flex; align-items: center; gap: 0.5rem;">
<img src="/assets/images/logo-512x512.png" alt="{{ site.shortName }} Logo" class="logo-image" style="height: 2.5rem; width: auto;">
<span>{{ site.shortName }}</span>
</a>
<ul class="nav-links">
{% for item in navigation %}
<li>
<a href="{{ item.url }}"{% if item.external %} target="_blank"{% endif %}>
{{ item.text }}
</a>
</li>
{% endfor %}
</ul>
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>