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.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..748b27c
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,23 @@
+<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="{{ .Site.BaseURL }}images/logo.svg"/>
+ </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="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>