diff options
author | HombreLaser <sebastian-440@live.com> | 2023-08-30 20:47:29 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-08-30 20:47:29 -0600 |
commit | 02b32ad3eae374e8ba47103fa9b9bc24f84b8094 (patch) | |
tree | 80678eda3199ecdb10ddceede9f8ff5cdb0743cd /about_me.html | |
parent | 6178efc220a92b040e2793af02af9cd322efc063 (diff) |
Add internationalization
Diffstat (limited to 'about_me.html')
-rw-r--r-- | about_me.html | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/about_me.html b/about_me.html index c6dc7fa..5c7a2ae 100644 --- a/about_me.html +++ b/about_me.html @@ -4,27 +4,26 @@ permalink: /about-me --- <div class="well"> - <h1>Acerca de mí</h1> - <p>Hola, soy actualmente un estudiante de ciencias de la computación.</p> - <p> Mis intereses (y de lo que escribiré mayoritariamente en este blog) son:</p> + <h1>{% t global.about_me %}</h1> + <p>{% t about_me_page.presentation %}</p> + <p>{% t about_me_page.interests %}</p> <ul> - <li>Tecnología</li> - <li>Software libre</li> - <li>Self hosting</li> - <li>Videojuegos</li> + {% for item in site.translations[site.lang].about_me_page.interest_list %} + <li>{{ item["name"] }}</li> + {% endfor %} </ul> - <p>Y demás.</p> + <p>{% t about_me_page.etc %}</p> <div> - <h1>Contacto</h1> - <p>Si quieres charlar o tienes alguna duda de algún post mío, házmelo saber:</p> + <h1>{% t about_me_page.contact %}</h1> + <p>{% t about_me_page.contact_introduction %}</p> <h1><img src="/assets/images/XMPP_logo.svg" type="image/svg+xml" style="width:30px;height:30px;" /> XMPP</h1> - <p><span class="contact-medium">Dirección:</span> hombrelaser@silosneeded.com</p> - <p><span class="contact-medium">Notas:</span> Asegúrate de activar el cifrado punto a punto OMEMO</p> + <p><span class="contact-medium">{% t about_me_page.address %}</span> hombrelaser@silosneeded.com</p> + <p><span class="contact-medium">{% t about_me_page.notes %}</span> {% t about_me_page.xmpp_notes %}</p> <h1><img src="/assets/images/Matrix_logo.svg" type="image/svg+xml" style="width:40px;height:20px;" /> Matrix</h1> - <p><span class="contact-medium">Dirección:</span> @hombrelaser:matrix.silosneeded.com</p> + <p><span class="contact-medium">{% t about_me_page.address %}</span> @hombrelaser:matrix.silosneeded.com</p> <h1><img src="/assets/images/irc.svg" type="image/svg+xml" style="width:40px;height:40px;" /> IRC</h1> - <p><span class="contact-medium">Servidor:</span> libera.chat</p> + <p><span class="contact-medium">{% t about_me_page.server %}</span> libera.chat</p> <p><span class="contact-medium">Nick:</span> hombrelaser</p> - <p>A veces disponible, a veces no, pero no te preocupes, tengo un bouncer configurado. Leeré tu mensaje tarde o temprano.</p> + <p>{% t about_me_page.irc_notes %}</p> </div> </div> |