homepage translations
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mauro Torrez 2020-05-10 17:49:05 -03:00
parent 103d90e994
commit fbd1f78454
5 changed files with 30 additions and 6 deletions

7
data/en/home.yml Normal file
View File

@ -0,0 +1,7 @@
---
content:
- I'm **Mauro Torrez**, a system administrator.
- I'm into everything DevOps, delivery automation, and infrastructure.
# - Have a look at some of my working [projects](/projects/)
- Check out my [résumé](/cv/).
# - Contact me at [@tw](https://twitter.com/) or by [email](mailto:).

View File

@ -7,4 +7,4 @@ source:
type: Proyecto final (en curso) type: Proyecto final (en curso)
description: Implementación de prácticas DevOps para el desarrollo description: Implementación de prácticas DevOps para el desarrollo
de software de software

8
data/es/home.yml Normal file
View File

@ -0,0 +1,8 @@
---
content:
- Soy **Mauro Torrez**, administrador de sistemas.
- Actualmente mi trabajo se centra en DevOps, entrega continua, e
infraestructura.
# - Have a look at some of my working [projects](/projects/)
- Este es mi [cv](/es/cv/).
# - Contact me at [@tw](https://twitter.com/) or by [email](mailto:).

7
data/fr/home.yml Normal file
View File

@ -0,0 +1,7 @@
---
content:
- Je suis **Mauro Torrez**, administrateur systèmes.
- Interessé par tout ce qu'il soit DevOps, livraison continue et infrastructure.
# - Have a look at some of my working [projects](/projects/)
- Voici mon [CV](/fr/cv/).
# - Contact me at [@tw](https://twitter.com/) or by [email](mailto:).

View File

@ -7,11 +7,13 @@
<div class="avatar"> <div class="avatar">
<img class="rounded-circle" src="{{ .Sites.First.BaseURL }}img/{{ .Site.Params.avatar }}" alt="Responsive image"> <img class="rounded-circle" src="{{ .Sites.First.BaseURL }}img/{{ .Site.Params.avatar }}" alt="Responsive image">
</div> </div>
<h3>I'm <strong>{{ .Site.Params.author }}</strong>, a system administrator.</h3> {{ $site := .Site }}
<h3>I'm into everything DevOps, delivery automation, and infrastructure.</h3> {{ $data := index .Site.Data .Site.Language.Lang }}
<!-- <h3>Have a look at some of my working <a href="{{ .Site.BaseURL }}projects/"> projects</a>.</h3> --> {{ with $data.home }}
<h3>Check out my <a href="{{ .Site.BaseURL }}cv/">resume</a>.</h3> {{ range .content }}
<!-- <h3>Contact me at <a href="http://twitter.com/{{ .Site.Params.Social.Twitter }}">@{{ .Site.Params.Social.Twitter }}</a> or by <a href="mailto:{{ .Site.Params.Social.Email }}">email</a>.</h3> --> <h3>{{ . | markdownify }}</h3>
{{ end }}
{{ end }}
{{ partial "social.html" . }} {{ partial "social.html" . }}
</div> </div>
</section> </section>