mirror of
https://github.com/poem-web/poem.git
synced 2026-01-25 04:18:25 +00:00
31 lines
690 B
HTML
31 lines
690 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Poem Book</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<style>
|
|
div {
|
|
margin: 18pt;
|
|
font-size: 24pt;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
if (/^zh\b/.test(navigator.language)) {
|
|
location.href="/zh-CN/index.html"
|
|
} else {
|
|
location.href="/en/index.html"
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<h1>Poem Book</h1>
|
|
<p>This book is available in multiple languages:</p>
|
|
<ul>
|
|
<li><a href="en/index.html">English</a></li>
|
|
<li><a href="zh-CN/index.html">简体中文</a></li>
|
|
</ul>
|
|
</body>
|
|
</html> |