mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-04-16 05:38:33 +02:00
Update: Login/SignUp url
This commit is contained in:
44
layouts/coming-soon/baseof.html
Normal file
44
layouts/coming-soon/baseof.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!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 class="brand__actions">
|
||||
<div class="brand__auth">
|
||||
<input type="checkbox" id="auth-dropdown" class="brand__auth-check" />
|
||||
<label class="brand__auth-toggle" for="auth-dropdown" tabindex="0" aria-label="Account options">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z"/></svg>
|
||||
</label>
|
||||
<div class="brand__auth-links">
|
||||
<a href="/login/" class="auth-link auth-link--login">Login</a>
|
||||
<a href="/signup/" class="auth-link auth-link--signup">Sign Up</a>
|
||||
</div>
|
||||
</div>
|
||||
{{- $rssURL := "/index.xml" -}}
|
||||
{{- with .OutputFormats.Get "rss" -}}
|
||||
{{- $rssURL = .RelPermalink -}}
|
||||
{{- end -}}
|
||||
<a href="{{ $rssURL }}" class="rss-subscribe__link" title="Subscribe via RSS">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="10" height="10" fill="currentColor" aria-hidden="true">
|
||||
<path d="M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19.01 7.38 20 6.18 20C4.98 20 4 19.01 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z"/>
|
||||
</svg>
|
||||
<span>Subscribe</span>
|
||||
</a>
|
||||
</div>
|
||||
</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