Add book recommenations again

This commit is contained in:
Ariejan de Vroom 2017-11-13 23:07:34 +01:00
parent 2c44bd35de
commit 6c99fe9815
Signed by: ariejan
GPG Key ID: AD739154F713697B
6 changed files with 19 additions and 1 deletions

View File

@ -49,3 +49,4 @@ posts_navigation = true
# issoHost = "comments.domain.tld:1234"
# githubRepo = "githubUsername/repositoryName"
small_banner_logo = false
book_recommendations = true

View File

@ -49,6 +49,9 @@
<a href="" class="ssk ssk-linkedin"></a>
</div>
{{ end }}
{{ if .Site.Params.book_recommendations }}
{{ partial "recommendations.html" . }}
{{ end }}
{{ if .Site.Params.posts_navigation }}
<div class="navigation">
{{ if .PrevInSection }}

View File

@ -49,6 +49,9 @@
<a href="" class="ssk ssk-linkedin"></a>
</div>
{{ end }}
{{ if .Site.Params.book_recommendations }}
{{ partial "recommendations.html" . }}
{{ end }}
{{ if .Site.Params.posts_navigation }}
<div class="navigation">
{{ if .PrevInSection }}

View File

@ -700,3 +700,8 @@ section.main .content .share a {
.wf-ubuntu-mono-n4-active section.main .content .markdown pre {
font-family: 'Ubuntu Mono';
}
.book-recommendations {
padding: 1em 0;
text-align: center;
}

View File

@ -18,7 +18,7 @@
<span id="crypto-donations">
BTC: <a href="bitcoin:32vFGNzzJwn9qcAABwetFL2J58DvECaRwH">32vFGNzzJwn9qcAABwetFL2J58DvECaRwH</a>
<br />
ETH: <a href="ethereum:0x485Dc52e580aAeCB06ED81531FA16AadEfF10cE8">0x485Dc52e580aAeCB06ED81531FA16AadEfF10cE8</a>
ETH: <a href="https://etherscan.io/address/0x485Dc52e580aAeCB06ED81531FA16AadEfF10cE8">0x485Dc52e580aAeCB06ED81531FA16AadEfF10cE8</a>
</span>
</div>

View File

@ -0,0 +1,6 @@
<div class="book-recommendations">
<p>
Want to go deeper? <a href="/recommendations">Check my reading
recommendations</a> to learn more about this and other topics.
</p>
</div>