Fixing footer i18n

This commit is contained in:
Hugo Martin 2020-08-04 20:45:37 +02:00 committed by Emruz Hossain
parent 85ff89be12
commit 1918fbc3fb
3 changed files with 16 additions and 4 deletions

View file

@ -9,4 +9,10 @@ other = "Home"
other = "My resume"
[quotes]
other = "I am a Developer;I am a Devops;I love servers;I work on open-source projects;I love to work with some fun projects" # Split each quote with a ';'
other = "I am a Developer;I am a Devops;I love servers;I work on open-source projects;I love to work with some fun projects" # Split each quote with a ';'
[navigation]
other = "Navigation"
[contact_me]
other = "Contact me:"

View file

@ -9,4 +9,10 @@ other = "Accueil"
other = "Mon Curriculum vitæ"
[quotes]
other = "Je bidouille;Bref je code" # Split each quote with a ';'
other = "Je bidouille;Bref je code" # Split each quote with a ';'
[navigation]
other = "Naviguation"
[contact_me]
other = "Contactez moi :"

View file

@ -2,7 +2,7 @@
<div class="container pt-5">
<div class="row text-left">
<div class="col-md-4 col-sm-12">
<h5>Navigation</h5>
<h5>{{ i18n "navigation" }}</h5>
{{ if (index .Site.Data .Site.Language.Lang).sections }}
<ul>
{{- range sort (index .Site.Data .Site.Language.Lang).sections "section.weight" }}
@ -17,7 +17,7 @@
</div>
<div class="col-md-4 col-sm-12">
<h5>Contact Me</h5>
<h5>{{ i18n "contact_me" }}</h5>
<ul>
{{ range $key,$value:=.Site.Params.author.contactInfo }}
<li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>