Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/varkai/hugo-theme-zozo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html43
1 files changed, 22 insertions, 21 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 817d592..e678d00 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,23 +1,24 @@
<div class="header animated fadeInDown">
- <div class="site_title_container">
- <div class="site_title">
- <h1>
- <a href="{{ .Site.BaseURL }}">
- <span>{{ .Site.Title }}</span>
- <img src="{{ "images/logo.svg" | absURL }}"/>
- </a>
- </h1>
+ <div class="site_title_container">
+ <div class="site_title">
+ <h1>
+ <a href="{{ .Site.BaseURL }}">
+ <span>{{ .Site.Title }}</span>
+ <img src="{{ "images/logo.svg" | absURL }}" />
+ </a>
+ </h1>
+ </div>
+ <div class="description">
+ <p class="sub_title">{{ with .Site.Params.subTitle }}{{ . }}{{ else }}{{ end }}</p>
+ <div class="my_socials">
+ {{ range $key, $val := .Site.Social }}
+ {{ if ne $val "" }}
+ <a href="{{ $val }}" title="{{ $key }}" target="_blank"><i class="ri-{{ $key }}-fill"></i></a>
+ {{ end }}
+ {{ end }}
+ <a href="{{ .Site.RSSLink }}" type="application/rss+xml" title="rss" target="_blank"><i
+ class="ri-rss-fill"></i></a>
+ </div>
+ </div>
</div>
- <div class="description">
- <p class="sub_title">{{ with .Site.Params.subTitle }}{{ . }}{{ else }}{{ end }}</p>
- <div class="my_socials">
- {{ range $key, $val := .Site.Social }}
- {{ if ne $val "" }}
- <a href="{{ $val }}" title="{{ $key }}" target="_blank"><i class="remixicon-{{ $key }}-fill"></i></a>
- {{ end }}
- {{ end }}
- <a href="{{ .Site.RSSLink }}" type="application/rss+xml" title="rss" target="_blank"><i class="remixicon-rss-fill"></i></a>
- </div>
- </div>
- </div>
-</div>
+</div> \ No newline at end of file