├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _layouts └── default.html ├── about.md ├── de ├── about.md └── index.md ├── index.md ├── it ├── about.md └── index.md └── preview.png /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/about.md -------------------------------------------------------------------------------- /de/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/de/about.md -------------------------------------------------------------------------------- /de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/de/index.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/index.md -------------------------------------------------------------------------------- /it/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/it/about.md -------------------------------------------------------------------------------- /it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/it/index.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzool/polyglot-jekyll/HEAD/preview.png --------------------------------------------------------------------------------