mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 14:59:45 +00:00
Fix e-mail adress
This commit is contained in:
parent
8c258bbd07
commit
80c0c42f93
5 changed files with 13 additions and 12 deletions
|
@ -10,7 +10,8 @@ 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]
|
||||
|
@ -18,7 +19,7 @@ DefaultContentLanguage = "en" # Default language fo
|
|||
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
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue