diff options
author | Camil Staps | 2020-04-03 22:11:14 +0200 |
---|---|---|
committer | Camil Staps | 2020-04-03 22:11:14 +0200 |
commit | 11b6b9898de0d8573a744ca28ddb6331b02e5ea9 (patch) | |
tree | 395315cc5cc2d3ca512c55050674283680e2b401 | |
parent | Add spaces in pug mixin calls (diff) |
Obfuscate email address
-rw-r--r-- | resources/pug/finals/index.pug | 7 | ||||
-rw-r--r-- | resources/sass/style.scss | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/resources/pug/finals/index.pug b/resources/pug/finals/index.pug index 645f991..096b0f1 100644 --- a/resources/pug/finals/index.pug +++ b/resources/pug/finals/index.pug @@ -8,7 +8,12 @@ block content div#basicinfo p PhD candidate in Biblical Hebrew p - span.tt info@camilstaps.nl + span.tt.obfuscate + | info@c + span dummy + | amilst + span dummy + | aps.nl p | GPG ID: #[tt: a(href="http://pgp.mit.edu/pks/lookup?op=get&search=0x4A9BFD4F6A415F83") 6A415F83] br diff --git a/resources/sass/style.scss b/resources/sass/style.scss index 1e774a5..cda20c8 100644 --- a/resources/sass/style.scss +++ b/resources/sass/style.scss @@ -76,3 +76,7 @@ span.tt { footer { padding: 1em 0; } + +.obfuscate > span { + display: none; +} |