diff --git a/data/en/home.yml b/data/en/home.yml new file mode 100644 index 0000000..1e348f7 --- /dev/null +++ b/data/en/home.yml @@ -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:). diff --git a/data/es/education.yml b/data/es/education.yml index ecf252e..b9bd3e7 100644 --- a/data/es/education.yml +++ b/data/es/education.yml @@ -7,4 +7,4 @@ source: type: Proyecto final (en curso) description: Implementación de prácticas DevOps para el desarrollo de software - + diff --git a/data/es/home.yml b/data/es/home.yml new file mode 100644 index 0000000..47a64b3 --- /dev/null +++ b/data/es/home.yml @@ -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:). diff --git a/data/fr/home.yml b/data/fr/home.yml new file mode 100644 index 0000000..3ff2f4f --- /dev/null +++ b/data/fr/home.yml @@ -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:). diff --git a/themes/mauro/layouts/index.html b/themes/mauro/layouts/index.html index 5290ecb..d6f221d 100644 --- a/themes/mauro/layouts/index.html +++ b/themes/mauro/layouts/index.html @@ -7,11 +7,13 @@
Responsive image
-

I'm {{ .Site.Params.author }}, a system administrator.

-

I'm into everything DevOps, delivery automation, and infrastructure.

- -

Check out my resume.

- + {{ $site := .Site }} + {{ $data := index .Site.Data .Site.Language.Lang }} + {{ with $data.home }} + {{ range .content }} +

{{ . | markdownify }}

+ {{ end }} + {{ end }} {{ partial "social.html" . }}