--- /dev/null
+# Multilingual website with Hugo
+
+This example was kindly contributed by Egon Elbre in November 2013
+as a wonderful proof-of-concept for internationalization (i18n)
+and multilingualization (m17n) in Hugo-generated websites.
+
+The example works well for the most part, though some minor issues remain.
+Please see relevant discussions below:
+
+* https://github.com/spf13/hugo/issues/129 Multiple languages
+* https://github.com/spf13/hugo/issues/134 Example of a multilingual site
+
+All contributions are welcome!
--- /dev/null
+baseurl = ""
+
+[indexes]
+tag = "tags"
+group = "groups"
+menu = "menu"
+++ /dev/null
-indexes:\r
- tag: 'tags'\r
- group: 'groups'\r
- menu: 'menu'\r
-baseurl: ''\r
-{{ template "chrome/head.html" . }}\r
-{{ template "chrome/header.html" . }}\r
-{{ .Content }}\r
-{{ template "chrome/footer.html" . }}
\ No newline at end of file
+{{ partial "head.html" . }}\r
+{{ partial "header.html" . }}\r
+{{ if .IsPage }}{{ .Content }}{{ end }}\r
+{{ partial "footer.html" . }}\r
+++ /dev/null
- <footer>(Ↄ) 2013 Egon Elbre</footer>\r
-</body>\r
-</html>
\ No newline at end of file
+++ /dev/null
-<!doctype html>\r
-<html lang="{{ .Params.lang }}">\r
-<head>\r
- <meta charset="utf-8">\r
- {{ if .Title }}\r
- {{ if (eq .Params.lang "et") }}\r
- <title>Mitmekeelne - {{ .Title }}</title>\r
- {{ else }}\r
- <title>Multilingual - {{ .Title }}</title>\r
- {{ end }}\r
- {{ end }}\r
- <meta name="viewport" content="width=device-width, initial-scale=1">\r
- <link rel="stylesheet" href="/static/main.css">\r
-</head>\r
-<body>
\ No newline at end of file
+++ /dev/null
-<header>\r
- <nav class="menu language-menu">\r
- <ul>\r
- <li><a href="/">English</a></li>\r
- <li><a href="/kodu">Eesti</a></li>\r
- </ul>\r
- <div class="clear"></div>\r
- </nav>\r
-\r
- {{ if (eq .Params.lang "et") }}\r
- <h1 class="title">Minu mitmekeelne leht</h1>\r
- {{ else }}\r
- <h1 class="title">My multilingual site</h1>\r
- {{ end }}\r
- \r
- <nav class="menu main-menu">\r
- <ul>\r
- {{ range (index .Site.Indexes.menu .Params.lang).Pages }}\r
- <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>\r
- {{ end }}\r
- </ul>\r
- </nav>\r
-</header>\r
-\r
-<h2 class="subtitle">{{ .Title }}</h2>
\ No newline at end of file
--- /dev/null
+ <footer>(Ↄ) 2013 Egon Elbre</footer>\r
+</body>\r
+</html>
\ No newline at end of file
--- /dev/null
+<!DOCTYPE html>\r
+<html lang="{{ .Params.lang }}">\r
+<head>\r
+ <meta charset="utf-8">\r
+ {{ if .Title }}\r
+ {{ if (eq .Params.lang "et") }}\r
+ <title>Mitmekeelne - {{ .Title }}</title>\r
+ {{ else }}\r
+ <title>Multilingual - {{ .Title }}</title>\r
+ {{ end }}\r
+ {{ end }}\r
+ <meta name="viewport" content="width=device-width, initial-scale=1">\r
+ <link rel="stylesheet" href="/static/main.css">\r
+</head>\r
+<body>
\ No newline at end of file
--- /dev/null
+<header>\r
+ <nav class="menu language-menu">\r
+ <ul>\r
+ <li><a href="/">English</a></li>\r
+ <li><a href="/kodu">Eesti</a></li>\r
+ </ul>\r
+ <div class="clear"></div>\r
+ </nav>\r
+\r
+ {{ if (eq .Params.lang "et") }}\r
+ <h1 class="title">Minu mitmekeelne leht</h1>\r
+ {{ else }}\r
+ <h1 class="title">My multilingual site</h1>\r
+ {{ end }}\r
+\r
+ <nav class="menu main-menu">\r
+ <ul>\r
+ {{ range (index .Site.Indexes.menu .Params.lang).Pages }}\r
+ <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>\r
+ {{ end }}\r
+ </ul>\r
+ </nav>\r
+</header>\r
+\r
+<h2 class="subtitle">{{ .Title }}</h2>\r
-{{ template "chrome/head.html" . }}\r
-{{ template "chrome/header.html" . }}\r
+{{ partial "head.html" . }}\r
+{{ partial "header.html" . }}\r
{{ range .Site.Indexes.groups.news.Pages }}\r
<article class="post">\r
<header>\r
</footer>\r
</article>\r
{{ end }}\r
-{{ template "chrome/footer.html" . }}
\ No newline at end of file
+{{ partial "footer.html" . }}\r
-{{ template "chrome/head.html" . }}\r
-{{ template "chrome/header.html" . }}\r
+{{ partial "head.html" . }}\r
+{{ partial "header.html" . }}\r
{{ range .Site.Indexes.groups.uudised.Pages }}\r
<article class="post">\r
<header>\r
</footer>\r
</article>\r
{{ end }}\r
-{{ template "chrome/footer.html" . }}
\ No newline at end of file
+{{ partial "footer.html" . }}\r