mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
Add: logo.png
This commit is contained in:
@@ -41,6 +41,18 @@ a {
|
||||
border-bottom: 1px solid var(--background-color1);
|
||||
}
|
||||
|
||||
.brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6.6px;
|
||||
margin-bottom: -18px;
|
||||
}
|
||||
|
||||
.brand img {
|
||||
height: 27px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
border-top: 1px solid var(--background-color1);
|
||||
}
|
||||
|
||||
@@ -7,8 +7,8 @@ tableOfContents: Table of Contents
|
||||
colon: ':' # Taxonomy, e.g. Tags:
|
||||
previousPage: "Prev: " # Page nav
|
||||
nextPage: "Next: " # Page nav
|
||||
themeInfo: Built with {{ .hugo }} and {{ .yue }} # Footer
|
||||
themeInfo: Built with {{ .hugo }} and based on {{ .yue }} theme # Footer
|
||||
|
||||
# 404 page, e.g. /en/404.html
|
||||
404Message: The page you visited was not found.
|
||||
404HomeLinkMessage: Return to the home page
|
||||
404HomeLinkMessage: Return to the home page
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<h1>{{ site.Title }}</h1>
|
||||
<nav class="menu language">
|
||||
<ul class="menu__list language__list">
|
||||
{{- partial "header/menu.html" (dict "menuID" "main" "page" .) -}}
|
||||
{{- partial "header/language_selector.html" . -}}
|
||||
</ul>
|
||||
</nav>
|
||||
<nav class="menu language">
|
||||
<ul class="menu__list language__list">
|
||||
{{- partial "header/menu.html" (dict "menuID" "main" "page" .) -}} {{- partial
|
||||
"header/language_selector.html" . -}}
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="html" lang="{{ or site.Language.LanguageCode site.Language.Lang }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
|
||||
<head>
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
<body class="body">
|
||||
<header class="header">
|
||||
{{ partial "header.html" . }}
|
||||
</header>
|
||||
<main class="main">
|
||||
{{ block "main" . }}{{ end }}
|
||||
</main>
|
||||
<footer class="footer">
|
||||
{{ partial "footer.html" . }}
|
||||
</footer>
|
||||
{{ partial "body/body-end.html" . }}
|
||||
</body>
|
||||
<!doctype html>
|
||||
<html
|
||||
class="html"
|
||||
lang="{{ or site.Language.LanguageCode site.Language.Lang }}"
|
||||
dir="{{ or site.Language.LanguageDirection `ltr` }}"
|
||||
>
|
||||
<head>
|
||||
{{ partial "head.html" . }}
|
||||
</head>
|
||||
<body class="body">
|
||||
<header class="header">
|
||||
<div class="brand">
|
||||
<img src="/logo.png" alt="Freedoms4 logo" />
|
||||
<h1>Freedoms4</h1>
|
||||
</div>
|
||||
{{ partial "header.html" . }}
|
||||
</header>
|
||||
<main class="main">{{ block "main" . }}{{ end }}</main>
|
||||
<footer class="footer">{{ partial "footer.html" . }}</footer>
|
||||
{{ partial "body/body-end.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user