Skip to content

Instantly share code, notes, and snippets.

@besolov
Created April 28, 2014 19:49
Show Gist options
  • Select an option

  • Save besolov/11382204 to your computer and use it in GitHub Desktop.

Select an option

Save besolov/11382204 to your computer and use it in GitHub Desktop.
Octopress multilanguage header
{% if site.lang == "ru" %}
{% capture link1 %}{{ site.baseurl_root }}/en{{ page.url}}{% endcapture %}
<a href="{{ link1 }}" >{% t global.english %}</a>
{% else if site.lang == "en" %}
{% capture link2 %}{{ site.baseurl_root }}{{ page.url }}{% endcapture %}
<a href="{{ link2 }}" >{% t global.russian %}</a>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment