Hugo go go go
Made a hugo setup from scratch to generate a static blog and portfolio webpage. The old stuff may still be found in static/old.
This commit is contained in:
13
layouts/partials/breadcrumb.html
Normal file
13
layouts/partials/breadcrumb.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<ol class="nav navbar-nav">
|
||||
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
|
||||
</ol>
|
||||
{{ define "breadcrumbnav" }}
|
||||
{{ if .p1.Parent }}
|
||||
{{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }}
|
||||
{{ else if not .p1.IsHome }}
|
||||
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }}
|
||||
{{ end }}
|
||||
<li{{ if eq .p1 .p2 }} class="active"{{ end }}>
|
||||
<a href="{{ .p1.Permalink }}">{{ .p1.Title }}</a>
|
||||
</li>
|
||||
{{ end }}
|
13
layouts/partials/footer.html
Normal file
13
layouts/partials/footer.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<center>
|
||||
<div class='footer-content'>
|
||||
<p>{{ now.Format "2006" }} © Sivert V. Sæther</p>
|
||||
</div>
|
||||
<div class='footer-social'>
|
||||
<!--
|
||||
<a href="#" class="icons"><img src="/facebook-icon.svg"></a>
|
||||
<a href="#" class="icons"><img src="/linkedin-icon.svg"></a>
|
||||
<a href="#" class="icons"><img src="/twitter-icon.svg"></a>
|
||||
<a href="#" class="icons"><img src="/youtube-icon.svg"></a>
|
||||
-->
|
||||
</div>
|
||||
</center>
|
6
layouts/partials/i18n/list.html
Normal file
6
layouts/partials/i18n/list.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{{ if .IsTranslated }}<h4>{{ T "translations" }}</h4>
|
||||
<ul>{{ range .Translations }}
|
||||
<li>
|
||||
<a href='{{ .Permalink }}'>{{ .Lang }}: {{ .Title }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
|
||||
</li>{{ end }}
|
||||
</ul>{{ end }}
|
8
layouts/partials/i18n/nav.html
Normal file
8
layouts/partials/i18n/nav.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<li id='lang-menu'>
|
||||
<a id='lang-menu-btn' href='#'>{{ T "translations" }}</a>
|
||||
<ul>
|
||||
{{ range $.Site.Home.AllTranslations }}
|
||||
<li><a href='{{ .Permalink }}'>{{ .Language.LanguageName }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</li>
|
34
layouts/partials/nav.html
Normal file
34
layouts/partials/nav.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<nav id="navbar">
|
||||
<ul class="top-nav">
|
||||
<li class=""><a href="/">{{ site.Title }}</a></li>
|
||||
{{ partial "i18n/nav.html" . }}
|
||||
<div class="link-group">
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
{{ if .HasChildren }}
|
||||
<li class='{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}'>
|
||||
<a href='#'>{{ .Pre }}<span>{{ .Name }}</span></a>
|
||||
</li>
|
||||
<ul class='sub-menu'>
|
||||
{{ range .Children }}
|
||||
<li class='{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}'>
|
||||
<a href='{{ .URL }}'>{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ else }}
|
||||
<li>
|
||||
<a href='{{ .URL }}'>
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- <li class="top-nav__link"><a href="#">
|
||||
<img class="icons" src="/search-icon.svg">
|
||||
</a>
|
||||
</li> -->
|
||||
</div>
|
||||
</ul>
|
||||
</nav>
|
11
layouts/partials/summary.html
Normal file
11
layouts/partials/summary.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<article>
|
||||
<div>
|
||||
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
||||
{{ .Summary }}
|
||||
</div>
|
||||
{{ if .Truncated }}
|
||||
<div>
|
||||
<a href="{{ .RelPermalink }}">{{ i18n "readMore" }}…</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
</article>
|
6
layouts/partials/toc.html
Normal file
6
layouts/partials/toc.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<aside id='meta'>
|
||||
<header>
|
||||
<h4>{{ .Title }}</h4>
|
||||
</header>
|
||||
{{ .TableOfContents }}
|
||||
</aside>
|
Reference in New Issue
Block a user