Skip to content

Commit

Permalink
Merge branch 'master' into i18n-support
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Oct 14, 2017
2 parents bac51f5 + 5f5f149 commit c9fa023
Show file tree
Hide file tree
Showing 5 changed files with 419 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -7,7 +7,7 @@ gem 'rouge', '1.11.1'
gem 'jekyll-feed', '0.9.2'
gem 'scss_lint', require: false
gem 'elevenlabs-amp-jekyll', '1.1'
gem 'jekyll-multiple-languages-plugin', '1.5.1'
gem 'jekyll-multiple-languages-plugin', :git => "git://github.com/eko/jekyll-multiple-languages-plugin.git"

group :test do
gem 'rake'
Expand Down
4 changes: 2 additions & 2 deletions _includes/header.html
Expand Up @@ -18,8 +18,8 @@ <h1 class="site-title visually-hidden">
{% assign link = language %}
{% endif %}
<li>
<a class="page-link no-link-style" href="/{{ link }}">
<img src="/img/flags/{{ language }}.png" alt="{{ language }}" title="{{ language }}" />
<a class="page-link no-link-style" href="{{ site.baseurl_root }}/{{ link }}">
<img src="{{ site.baseurl_root }}/img/flags/{{ language }}.png" alt="{{ language }}" title="{{ language }}" />
</a>
</li>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html class="no-js">
<html class="no-js" lang="{{ site.lang }}">
<script type="text/javascript">
window.site = {
lang: '{{ site.lang }}',
Expand Down

0 comments on commit c9fa023

Please sign in to comment.