Fixing footer i18n
This commit is contained in:
parent
85ff89be12
commit
1918fbc3fb
3 changed files with 16 additions and 4 deletions
|
@ -9,4 +9,10 @@ other = "Home"
|
||||||
other = "My resume"
|
other = "My resume"
|
||||||
|
|
||||||
[quotes]
|
[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:"
|
|
@ -9,4 +9,10 @@ other = "Accueil"
|
||||||
other = "Mon Curriculum vitæ"
|
other = "Mon Curriculum vitæ"
|
||||||
|
|
||||||
[quotes]
|
[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 :"
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="container pt-5">
|
<div class="container pt-5">
|
||||||
<div class="row text-left">
|
<div class="row text-left">
|
||||||
<div class="col-md-4 col-sm-12">
|
<div class="col-md-4 col-sm-12">
|
||||||
<h5>Navigation</h5>
|
<h5>{{ i18n "navigation" }}</h5>
|
||||||
{{ if (index .Site.Data .Site.Language.Lang).sections }}
|
{{ if (index .Site.Data .Site.Language.Lang).sections }}
|
||||||
<ul>
|
<ul>
|
||||||
{{- range sort (index .Site.Data .Site.Language.Lang).sections "section.weight" }}
|
{{- range sort (index .Site.Data .Site.Language.Lang).sections "section.weight" }}
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-sm-12">
|
<div class="col-md-4 col-sm-12">
|
||||||
<h5>Contact Me</h5>
|
<h5>{{ i18n "contact_me" }}</h5>
|
||||||
<ul>
|
<ul>
|
||||||
{{ range $key,$value:=.Site.Params.author.contactInfo }}
|
{{ range $key,$value:=.Site.Params.author.contactInfo }}
|
||||||
<li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>
|
<li><span>{{ title $key }}: </span> <span>{{ $value }}</span></li>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue