Add guestbook
This commit is contained in:
parent
f769ffd558
commit
89c60b04aa
3 changed files with 21 additions and 1 deletions
|
@ -15,3 +15,5 @@ If you stumbled across an email address of mine, best not to use it. Like most p
|
||||||
- Matrix: {{< sociallink matrix >}}
|
- Matrix: {{< sociallink matrix >}}
|
||||||
|
|
||||||
Want to [say thanks]({{<relref "support" >}})?
|
Want to [say thanks]({{<relref "support" >}})?
|
||||||
|
|
||||||
|
Alternatively, you can [Sign my guestbook]({{<relref "guestbook">}}).
|
||||||
|
|
11
content/guestbook.md
Normal file
11
content/guestbook.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
title: Guestbook
|
||||||
|
hidden_from_navbar: true
|
||||||
|
image: unsplash:DgugiZUfH9k
|
||||||
|
---
|
||||||
|
|
||||||
|
Welcome, wary traveller! Sign my guestbook below. You can write whatever you like (within reason).
|
||||||
|
|
||||||
|
Once you're done, take a look at some of my [posts]({{<relref "posts">}}).
|
||||||
|
|
||||||
|
<small>Ideal _stolen_ from [@laymonage](https://laymonage.com/guestbook).</small>
|
|
@ -13,7 +13,7 @@
|
||||||
{{ with (.Site.GetPage "search") }}
|
{{ with (.Site.GetPage "search") }}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="{{ .Permalink }}">
|
<a class="nav-link" href="{{ .Permalink }}">
|
||||||
<i class="fas fa-search" title="Search"></i>
|
<i class="fas fa-search" title="{{ .Title }}"></i>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -24,6 +24,13 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ with (.Site.GetPage "guestbook") }}
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="{{ .Permalink }}">
|
||||||
|
<i class="fas fa-book" title="{{ .Title }}"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
{{ range .Site.Data.social.navbar_accounts }}
|
{{ range .Site.Data.social.navbar_accounts }}
|
||||||
{{ $account := index $.Site.Data.social.accounts . }}
|
{{ $account := index $.Site.Data.social.accounts . }}
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
|
Loading…
Reference in a new issue