-
Notifications
You must be signed in to change notification settings - Fork 1
/
whatisthis.html
43 lines (42 loc) · 1.73 KB
/
whatisthis.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<footer class="whatisthis">
<div class="row">
<div class="column small-12 medium-4">
<h2>About</h2>
<figure class="full-figure">
<img src="{{.Site.Params.logo | absURL }}" alt="Portrait of the author">
{{ if index .Site.Params "bio_full" }}<figcaption>{{ .Site.Params.bio_full }}</figcaption>{{ end }}
</figure>
</div>
<div class="column small-12 medium-4">
<h2 id="contact">Contact</h2>
<ul class="fa-ul">
{{ range $.Site.Params.social }}
<li><i class="fa-li {{ .icon_pack }} {{ .icon_pack}}-{{ .icon }}" style="padding-top:3px;"></i><a href="{{ .link }}">{{ .text }}</a>{{ if .site}} on {{ .site }}{{ end }}</li>
{{ end }}
</ul>
{{ partial "contact" . }}
</div>
<div class="column small-12 medium-4">
<h2>Subscribe</h2>
<p>To receive updates, you can subscribe to
the <a href="/index.xml"><i class="fa fa-rss-square"></i> RSS feed</a> of all
updates to the site in an RSS feed reader.
</p>
<h2>Search</h2>
<a id="searchsite">
<form method="get" action="https://duckduckgo.com/">
<label for="search-field" class="show-for-sr">Search with DuckDuckGo</label>
<input type="search" name="q" maxlength="255" placeholder="Search with DuckDuckGo" id="search-field">
<input type="hidden" name="sites" value="{{ .Site.BaseURL }}"/>
<input type="hidden" name="k7" value="#faf8f8"/>
<input type="hidden" name="kj" value="#b33"/>
<input type="hidden" name="ky" value="#fafafa"/>
<input type="hidden" name="kx" value="b"/>
<input type="hidden" name="ko" value="-1"/>
<input type="hidden" name="k1" value="-1"/>
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" />
</form>
</a>
</div>
</div>
</footer>