feat: logo, bio, oprava footeru a configu
|
After Width: | Height: | Size: 4.0 KiB |
@@ -1,3 +1,9 @@
|
|||||||
---
|
---
|
||||||
title: "Arch Linux CZ"
|
title: "Arch Linux CZ"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## Česká komunita Arch Linuxu
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Návody, novinky a podpora pro uživatele Arch Linuxu v češtině.
|
||||||
|
|||||||
@@ -15,10 +15,17 @@ paginate = 10
|
|||||||
[params.author]
|
[params.author]
|
||||||
name = "archos"
|
name = "archos"
|
||||||
email = "archos@arch-linux.cz"
|
email = "archos@arch-linux.cz"
|
||||||
|
avatar = "logo.png"
|
||||||
|
intro = "Arch Linux CZ"
|
||||||
|
description = "Návody, novinky a podpora pro uživatele Arch Linuxu v češtině."
|
||||||
|
|
||||||
[params.footer]
|
[params.footer]
|
||||||
copyright = "© 2024–2026 Arch Linux CZ"
|
copyright = "© 2024–2026 Arch Linux CZ"
|
||||||
|
|
||||||
|
[params.logo]
|
||||||
|
img = "/logo.png"
|
||||||
|
alt = "Arch Linux CZ"
|
||||||
|
|
||||||
[[params.socialIcons]]
|
[[params.socialIcons]]
|
||||||
name = "mastodon"
|
name = "mastodon"
|
||||||
url = "https://mastodon.arch-linux.cz/@archlinux"
|
url = "https://mastodon.arch-linux.cz/@archlinux"
|
||||||
@@ -70,7 +77,3 @@ paginate = 10
|
|||||||
name = "Podpořte nás"
|
name = "Podpořte nás"
|
||||||
pageRef = "/podporte-nas"
|
pageRef = "/podporte-nas"
|
||||||
weight = 8
|
weight = 8
|
||||||
|
|
||||||
[params.logo]
|
|
||||||
img = "/logo.png"
|
|
||||||
alt = "Arch Linux CZ"
|
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<footer class="footer">
|
||||||
|
<span class="footer_item"> </span>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer_social-icons">
|
||||||
|
{{- partial "socialIcons.html" site.Params.socialIcons -}}
|
||||||
|
</div>
|
||||||
|
<small class="footer_copyright">
|
||||||
|
© 2024–2026 Arch Linux CZ
|
||||||
|
{{ T "footer.disclaimer" | safeHTML }}
|
||||||
|
</small>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
{{- if .Site.Params.goToTop -}}
|
||||||
|
<a href="#" title="{{ T "footer.go_to_top" }}" id="totop">
|
||||||
|
{{ partial "svgs/arrowUp.svg" (dict "height" 48 "width" 48) . }}
|
||||||
|
</a>
|
||||||
|
{{- end -}}
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
<div class="navbar" role="navigation">
|
||||||
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
|
<a href="{{ .Site.Home.Permalink }}" class="logo">
|
||||||
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
|
</a>
|
||||||
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
|
<label for="menu-trigger">
|
||||||
|
<span class="menu-icon">
|
||||||
|
{{ partial "svgs/menu.svg" (dict "height" 25 "width" 25) . }}
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<div class="trigger">
|
||||||
|
<ul class="trigger-container">
|
||||||
|
{{ $currentPage := . }}
|
||||||
|
{{ range .Site.Menus.main }}
|
||||||
|
<li>
|
||||||
|
<a class="menu-link {{ if or ($currentPage.IsMenuCurrent "main" .)
|
||||||
|
($currentPage.HasMenuCurrent "main" .) }}active{{ end }}" href="{{ .URL }}">
|
||||||
|
{{ .Name }}
|
||||||
|
</a>
|
||||||
|
{{ if .HasChildren }}
|
||||||
|
<ul>
|
||||||
|
{{ range .Children }}
|
||||||
|
<li>
|
||||||
|
<a class="menu-link {{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}"
|
||||||
|
href="{{ .URL }}">
|
||||||
|
{{ .Name }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
<li class="menu-separator">
|
||||||
|
<span>|</span>
|
||||||
|
</li>
|
||||||
|
<!-- Language List -->
|
||||||
|
{{ if .IsTranslated }}
|
||||||
|
<li>
|
||||||
|
<select aria-label="Select Language" class="lang-list" id="select-language" onchange="location = this.value;">
|
||||||
|
{{ $siteLanguages := .Site.Languages}}
|
||||||
|
{{ $pageLang := .Page.Lang}}
|
||||||
|
{{ range .Page.AllTranslations }}
|
||||||
|
{{ $translation := .}}
|
||||||
|
{{ range $siteLanguages }}
|
||||||
|
{{ if eq $translation.Lang .Lang }}
|
||||||
|
{{ $selected := false }}
|
||||||
|
{{ if eq $pageLang .Lang}}
|
||||||
|
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}" selected>{{ .LanguageCode | upper }}
|
||||||
|
</option>
|
||||||
|
{{ else }}
|
||||||
|
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}">{{ .LanguageCode | upper }}</option>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</select>
|
||||||
|
</li>
|
||||||
|
<li class="menu-separator">
|
||||||
|
<span>|</span>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
<a id="mode" href="#">
|
||||||
|
{{ partial "svgs/sun.svg" (dict "height" 21 "width" 21 "class" "mode-sunny" "title" "LIGHT") . }}
|
||||||
|
{{ partial "svgs/sun.svg" (dict "height" 21 "width" 21 "class" "mode-moon" "title" "DARK") . }}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
@@ -79,13 +79,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -211,7 +205,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -214,7 +208,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<meta property="og:url" content="http://localhost:1313/">
|
<meta property="og:url" content="http://localhost:1313/">
|
||||||
<meta property="og:site_name" content="Arch Linux CZ">
|
<meta property="og:site_name" content="Arch Linux CZ">
|
||||||
<meta property="og:title" content="Arch Linux CZ">
|
<meta property="og:title" content="Arch Linux CZ">
|
||||||
<meta property="og:description" content="Česká komunita Arch Linuxu">
|
<meta property="og:description" content="Česká komunita Arch Linuxu Návody, novinky a podpora pro uživatele Arch Linuxu v češtině.">
|
||||||
<meta property="og:locale" content="cs">
|
<meta property="og:locale" content="cs">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:title" content="Arch Linux CZ">
|
<meta name="twitter:title" content="Arch Linux CZ">
|
||||||
<meta name="twitter:description" content="Česká komunita Arch Linuxu">
|
<meta name="twitter:description" content="Česká komunita Arch Linuxu Návody, novinky a podpora pro uživatele Arch Linuxu v češtině.">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -80,13 +80,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -176,8 +170,21 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
|
|
||||||
<div class="author">
|
<div class="author">
|
||||||
|
|
||||||
<h2 class="author-name"></h2>
|
|
||||||
<p class="author-bio"></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
<img
|
||||||
|
class="author-avatar"
|
||||||
|
src="/logo_hu_6cf74ab4229b3abe.webp"
|
||||||
|
srcset="/logo_hu_a3399715f454c812.webp 2x, /logo_hu_fd26fa1704e4c25d.webp 3x"
|
||||||
|
alt="archos"
|
||||||
|
width="70"
|
||||||
|
height="70" />
|
||||||
|
|
||||||
|
|
||||||
|
<h2 class="author-name">Arch Linux CZ</h2>
|
||||||
|
<p class="author-bio">Návody, novinky a podpora pro uživatele Arch Linuxu v češtině.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main aria-label="Content">
|
<main aria-label="Content">
|
||||||
@@ -238,7 +245,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -79,13 +79,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -227,7 +221,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -214,7 +208,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -79,13 +79,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -220,7 +214,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -79,13 +79,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -220,7 +214,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -128,13 +128,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -283,7 +277,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -132,13 +132,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -290,7 +284,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -239,7 +233,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -273,7 +267,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -239,7 +233,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -239,7 +233,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
@@ -81,13 +81,7 @@
|
|||||||
<div class="navbar" role="navigation">
|
<div class="navbar" role="navigation">
|
||||||
<nav class="menu" aria-label="Main Navigation">
|
<nav class="menu" aria-label="Main Navigation">
|
||||||
<a href="http://localhost:1313/" class="logo">
|
<a href="http://localhost:1313/" class="logo">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"
|
<img src="/logo.png" alt="Arch Linux CZ" height="50">
|
||||||
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
|
||||||
stroke-linejoin="round" class="feather feather-home">
|
|
||||||
<title></title>
|
|
||||||
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
|
|
||||||
<polyline points="9 22 9 12 15 12 15 22"></polyline>
|
|
||||||
</svg>
|
|
||||||
</a>
|
</a>
|
||||||
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
<input type="checkbox" id="menu-trigger" class="menu-trigger" />
|
||||||
<label for="menu-trigger">
|
<label for="menu-trigger">
|
||||||
@@ -214,7 +208,7 @@ stroke-linejoin="round" class="feather feather-home">
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<small class="footer_copyright">
|
<small class="footer_copyright">
|
||||||
© 2026 archos.
|
© 2024–2026 Arch Linux CZ
|
||||||
|
|
||||||
</small>
|
</small>
|
||||||
</footer><a href="#" title="" id="totop">
|
</footer><a href="#" title="" id="totop">
|
||||||
|
|||||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.2 KiB |