mirror of
https://github.com/seigler/dash-docs
synced 2025-07-26 01:06:13 +00:00
20 lines
621 B
HTML
20 lines
621 B
HTML
---
|
|
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
layout: base
|
|
lang: en
|
|
id: index
|
|
title: Bitcoin
|
|
---
|
|
<script>
|
|
//Auto redirect to the appropriate language
|
|
var langs={};{% for lang in site.langs %}{% if lang[0] != page.lang %}langs['{{ lang[0] }}']=true;{% endif %}{% endfor %}
|
|
var lang=(navigator.language)?navigator.language:navigator.userLanguage;
|
|
lang=lang.split('_')[0];
|
|
if(!langs[lang])lang='en';
|
|
window.location.href='/'+lang+'/';
|
|
</script>
|
|
<!--Fallback page, don't allow indexing-->
|
|
<meta name="robots" content="noindex">
|
|
{% include templates/index.html %}
|