Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
---

<h2 class="go-home">
¡Ups! No hemos encontrado la página que has solicitado :(
{% t messages.error.not_found %}
</h2>
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ gem "minima", "~> 2.0"

# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", group: :jekyll_plugins
gem "github-pages", :group => :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
gem "jekyll-feed", "~> 0.6"
gem 'jekyll-multiple-languages-plugin'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'tzinfo-data', :platforms => %i(mingw mswin x64_mingw jruby)
5 changes: 4 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ GEM
activesupport (~> 4.0)
html-pipeline (~> 2.3)
jekyll (~> 3.0)
jekyll-multiple-languages-plugin (1.5.1)
jekyll (>= 2.0, < 4.0)
jekyll-optional-front-matter (0.2.0)
jekyll (~> 3.0)
jekyll-paginate (1.1.0)
Expand Down Expand Up @@ -213,8 +215,9 @@ PLATFORMS
DEPENDENCIES
github-pages
jekyll-feed (~> 0.6)
jekyll-multiple-languages-plugin
minima (~> 2.0)
tzinfo-data

BUNDLED WITH
1.14.6
1.15.1
6 changes: 6 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ exclude: ["README.md"]
# Build settings
highlighter: null
markdown: kramdown

gems:
- jekyll-multiple-languages-plugin

languages: ["es", "en"]
exclude_from_localizations: ["javascript", "images", "css"]
4 changes: 4 additions & 0 deletions _i18n/en.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
messages:
empty: Looks like we don't have any posts in this category. Please return to the <a href="/en">homepage</a> to see the complete list of posts.
error:
not_found: Whoops! We couldn't find the page you requested :(
1 change: 1 addition & 0 deletions _i18n/en/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Coming soon...
4 changes: 4 additions & 0 deletions _i18n/es.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
messages:
empty: Parece que no tenemos artículos en esta categoría. Por favor, vuelve a la <a href="/">home</a> para ver la lista completa de artículos.
error:
not_found: ¡Ups! No hemos encontrado la página que has solicitado :(
5 changes: 5 additions & 0 deletions _i18n/es/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
**Folks Who Code** es una organización que nace como respuesta a la inquietud de una comunidad de personas por hacer de la tecnología un espacio más **seguro e inclusivo**.

El centro neurálgico de nuestra organización se encuentra en [Github](https://github.com/folkswhocode), donde se alojan nuestros distintos proyectos e iniciativas.

También nos puedes seguir en [Twitter](https://twitter.com/folkswhocode), para estar al tanto de las novedades que se vayan generando dentro de la organización.
6 changes: 5 additions & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<header class="header">
<div class="navigation">
<a href="/" class="logo">{{ site.title }}</a>
{% if site.lang == "en" %}
<a href="/en" class="logo">{{ site.title }}</a>
{% else %}
<a href="/" class="logo">{{ site.title }}</a>
{% endif %}

<ul class="menu">
<li class="menu__entry"><a href="{{ '/blog' | prepend: site.baseurl }}">Blog</a></li>
Expand Down
3 changes: 1 addition & 2 deletions _layouts/category.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@

{% if empty_category %}
<li class="empty-post-list">
Parece que no tenemos artículos en esta categoría. Por favor, vuelve a
la <a href="/">home</a> para ver la lista completa de artículos.
{% t messages.empty %}
</li>
{% endif %}
</ul>
Expand Down
8 changes: 2 additions & 6 deletions about.md
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
---
layout: page
layout: default
title: About
subtitle: ¿Quiénes somos?
permalink: /about/
---

**Folks Who Code** es una organización que nace como respuesta a la inquietud de una comunidad de personas por hacer de la tecnología un espacio más **seguro e inclusivo**.

El centro neurálgico de nuestra organización se encuentra en [Github](https://github.com/folkswhocode), donde se alojan nuestros distintos proyectos e iniciativas.

También nos puedes seguir en [Twitter](https://twitter.com/folkswhocode), para estar al tanto de las novedades que se vayan generando dentro de la organización.
{% tf about.md %}
3 changes: 1 addition & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ category: blog

{% if empty_category %}
<li class="empty-post-list">
Parece que no tenemos artículos en esta categoría. Por favor, vuelve a
la <a href="/">home</a> para ver la lista completa de artículos.
{% t messages.empty %}
</li>
{% endif %}
</ul>
Expand Down