Initial commit

This commit is contained in:
nemunaire 2020-05-04 13:25:05 +02:00
commit ff41d5ea95
Signed by: nemunaire
GPG key ID: 842807A84573CC96
28 changed files with 908 additions and 0 deletions

18
layouts/partials/top.html Normal file
View file

@ -0,0 +1,18 @@
{{ if .Site.Params.topbar.enable }}
<div id="top">
<div class="container">
<div class="row">
<div class="col-xs-5">
{{ .Site.Params.topbar.text | safeHTML }}
</div>
<div class="col-xs-7">
<div class="social">
{{ range .Site.Menus.topbar.ByWeight }}
<a href="{{ .URL }}" target="_blank" style="opacity: 1;">{{ .Pre }}</a>
{{ end }}
</div>
</div>
</div>
</div>
</div>
{{ end }}