Fix e-mail adress

This commit is contained in:
Hanzei 2018-07-20 17:49:28 +02:00
parent 8c258bbd07
commit 80c0c42f93
No known key found for this signature in database
GPG key ID: 69A2DEFD98937BA0
5 changed files with 13 additions and 12 deletions

View file

@ -10,17 +10,18 @@ DefaultContentLanguage = "en" # Default language fo
showRSSButton = false # Show rss button in navigation
fadeIn = true # Turn on/off the fade-in effect
dateFormat = "Jan 2, 2006"
customCSS = ["css/foo.css"] # Include custom css files
email = "youremail@email.com" # E-mail address for contact section
# customCSS = ["foo.css"] # Include custom css files
# Configure the home page
[params.home]
introHeight = "large" # Input either "medium" or "large" or "fullheight"
showLatest = true # Show latest blog post summary
showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
email = "youremail@email.com" # Shows in contact section, or leave blank to omit
localTime = true # Show your current local time in contact section
timeZone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
introHeight = "large" # Input either "medium" or "large" or "fullheight"
showLatest = true # Show latest blog post summary
showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
localTime = true # Show your current local time in contact section
timeZone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# Share buttons on blog post pages
[params.share]

View file

@ -1,7 +1,7 @@
[404_title]
other = "404"
[404_description]
other = "Oop! Endweder hast du einen Fehler gefunden ([dann kontaktiere mich bitte](mailto:{{ .Site.Params.email }})) oder du versucht etwas zu finden, was es nicht gibt. Diese Seite exisiert nicht!"
other = "Oop! Endweder hast du einen Fehler gefunden{{ with .Site.Params.email }} ([dann kontaktiere mich bitte](mailto:{{ . }})) {{ end }} oder du versucht etwas zu finden, was es nicht gibt. Diese Seite exisiert nicht!"
[index_projects_allProjects]
other = "Alle Projekte"
[index_blog_latestPosts]

View file

@ -1,7 +1,7 @@
[404_title]
other = "404"
[404_description]
other = "Oops! Either you've found a bug (in which case, [please tell me](mailto:{{ .Site.Params.email }})) or you're just making things up. This page doesn't exist!"
other = "Oops! Either you've found a bug{{ with .Site.Params.email }} (in which case, [please tell me](mailto:{{ . }})) {{ end }} or you're just making things up. This page doesn't exist!"
[index_projects_allProjects]
other = "All Projects"
[index_blog_latestPosts]

View file

@ -1,7 +1,7 @@
[404_title]
other = "404"
[404_description]
other = "Oops! O bien encontraste un bug (en cuyo caso, [por favor avisame](mailto:{{ .Site.Params.email }})) o simplemente estas inventando cosas. Esta página no existe!"
other = "Oops! O bien encontraste un bug{{ with .Site.Params.email }} (en cuyo caso, [por favor avisame](mailto:{{ . }})) {{ end }} o simplemente estas inventando cosas. Esta página no existe!"
[index_blog_latestPosts]
other = "Últimas Entradas"
[index_blog_allPosts]

View file

@ -86,7 +86,7 @@
{{ if .Site.Params.home.localTime }}
<p>{{ i18n "index_currentTime" . }} <span id='time'></span>.</p>
{{ end }}
{{ with .Site.Params.home.email }}
{{ with .Site.Params.email }}
<h3 class="subtitle is-3 has-text-centered top-pad">
<a href="mailto:{{ . }}">{{ . }}</a>
</h3>