Skip to content

Commit 7bb7aaa

Browse files
committed
remove contact form due to spam, update hugo
1 parent b9a3ae6 commit 7bb7aaa

4 files changed

Lines changed: 43 additions & 101 deletions

File tree

config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: "Cyrill Schumacher's Blog"
22
languageCode: "en-gb"
3-
copyright: "Copyright (c) 2014-2016, Cyrill Schumacher; all rights reserved."
3+
copyright: "Copyright (c) 2014-2023, Cyrill Schumacher; all rights reserved."
44
MetaDataFormat: "yaml"
55
canonifyURLs: true
66
builddrafts: false
@@ -13,7 +13,7 @@ taxonomies:
1313
tag: "tags"
1414
category: "categories"
1515
params:
16-
CopyrightHTML: "Copyright © 2014-2016 Cyrill Schumacher. All Rights Reserved."
16+
CopyrightHTML: "Copyright © 2014-2023 Cyrill Schumacher. All Rights Reserved."
1717
GitHubUser: "schumacherfm"
1818
SidebarRecentLimit: 5
1919
Categories:

layouts/partials/social-links.html

Lines changed: 38 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,39 @@
11
<ul class="social-links">
2-
<!--<li>-->
3-
<!--<a class="social-tooltip" title="YouTube" href="http://www.youtube.com/user/kiriwt" target="_blank">-->
4-
<!--<i class="fa fa-youtube" ></i>-->
5-
<!--</a>-->
6-
<!--</li>-->
7-
8-
<li>
9-
<a class="social-tooltip" title="Write me a PGP encrypted email!"
10-
href="wp-content/contactModal.html" id="contactModal" rel="modal:open">
11-
<i class="fa fa-envelope-o"></i>
12-
</a>
13-
</li>
14-
<li>
15-
<a class="social-tooltip" title="Keybase.io"
16-
href="https://keybase.io/cyrill" target="_blank">
17-
<i class="fa fa-key"></i>
18-
</a>
19-
</li>
20-
<li>
21-
<a class="social-tooltip" title="On Twitter"
22-
href="https://twitter.com/SchumacherFM" target="_blank">
23-
<i class="fa fa-twitter"></i>
24-
</a>
25-
</li>
26-
<li>
27-
<a class="social-tooltip" title="On GitHub"
28-
href="https://github.com/SchumacherFM" target="_blank">
29-
<i class="fa fa-github"></i>
30-
</a>
31-
</li>
32-
<li>
33-
<a class="social-tooltip" title="On Flickr"
34-
href="https://www.flickr.com/photos/kiri-wt/" target="_blank">
35-
<i class="fa fa-flickr"></i>
36-
</a>
37-
</li>
38-
<li>
39-
<a class="social-tooltip" title="On LinkedIn"
40-
href="https://www.linkedin.com/in/cyrillschumacher" target="_blank">
41-
<i class="fa fa-linkedin-square"></i>
42-
</a>
43-
</li>
44-
<li>
45-
<a class="social-tooltip" title="On Google+" rel="publisher"
46-
href="https://plus.google.com/+CyrillSchumacher/posts" target="_blank">
47-
<i class="fa fa-google-plus-square"></i>
48-
</a>
49-
<a href="https://plus.google.com/109344723659834198041" ></a>
50-
</li>
51-
</ul>
2+
<li>
3+
<a class="social-tooltip" title="Keybase.io"
4+
href="https://keybase.io/cyrill" target="_blank">
5+
<i class="fa fa-key"></i>
6+
</a>
7+
</li>
8+
<li>
9+
<a class="social-tooltip" title="On Twitter"
10+
href="https://twitter.com/SchumacherFM" target="_blank">
11+
<i class="fa fa-twitter"></i>
12+
</a>
13+
</li>
14+
<li>
15+
<a class="social-tooltip" title="On GitHub"
16+
href="https://github.com/SchumacherFM" target="_blank">
17+
<i class="fa fa-github"></i>
18+
</a>
19+
</li>
20+
<li>
21+
<a class="social-tooltip" title="On Flickr"
22+
href="https://www.flickr.com/photos/kiri-wt/" target="_blank">
23+
<i class="fa fa-flickr"></i>
24+
</a>
25+
</li>
26+
<li>
27+
<a class="social-tooltip" title="On LinkedIn"
28+
href="https://www.linkedin.com/in/cyrillschumacher" target="_blank">
29+
<i class="fa fa-linkedin-square"></i>
30+
</a>
31+
</li>
32+
<li>
33+
<a class="social-tooltip" title="On Google+" rel="publisher"
34+
href="https://plus.google.com/+CyrillSchumacher/posts" target="_blank">
35+
<i class="fa fa-google-plus-square"></i>
36+
</a>
37+
<a href="https://plus.google.com/109344723659834198041"></a>
38+
</li>
39+
</ul>

netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ publish = "public"
88
command = "hugo -v --minify -b https://cyrillschumacher.com/"
99

1010
[context.production.environment]
11-
HUGO_VERSION = "0.58.3"
11+
HUGO_VERSION = "0.80.0"
1212
HUGO_ENV = "production"
1313
HUGO_ENABLEGITINFO = "true"
1414

1515
[context.split1]
1616
command = "hugo -v --minify --enableGitInfo -b https://cyrillschumacher.com/"
1717

1818
[context.split1.environment]
19-
HUGO_VERSION = "0.58.3"
19+
HUGO_VERSION = "0.80.0"
2020
HUGO_ENV = "production"
2121

2222
[context.deploy-preview]
2323
command = "hugo --minify --buildFuture -b $DEPLOY_PRIME_URL"
2424

2525
[context.deploy-preview.environment]
26-
HUGO_VERSION = "0.58.3"
26+
HUGO_VERSION = "0.80.0"
2727

2828
[context.branch-deploy]
2929
command = "hugo --minify -b $DEPLOY_PRIME_URL"

static/wp-content/contactModal.html

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)