mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 03:15:33 +00:00
This change adds `index.html` to all links that point to test index pages. This will show the index page instead of the directory listing when opening locally, identical to the behavior on TC.
30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<!-- Set the viewport width to match iOS device widths -->
|
|
<!-- <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no" /> -->
|
|
<meta name="viewport" content="width=device-width,user-scalable=no" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<!-- Enable IE9 Standards mode -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<title>KeymanWeb Samples</title>
|
|
<style type='text/css'>
|
|
body {padding-left:20px;margin-left:12px; font-family:Tahoma,Helvetica}
|
|
h1 {color: #800;margin-left:10px;}
|
|
h2 {color: #008;margin-left:20px;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>KeymanWeb Samples</h1>
|
|
<h2><a href="./simplest/index.html">Example 1 - Toggle UI, all resources in same folder as page</a></h2>
|
|
<h2><a href="./subfolder_toggle/index.html">Example 2 - Toggle UI, all resources in a common subfolder</a></h2>
|
|
<h2><a href="./subfolder_toolbar/index.html">Example 3 - Toolbar UI, all resources in a common subfolder</a></h2>
|
|
<h2><a href="./complex/root/pages/index.html">Example 4 - a more complex file-organization setup</a></h2>
|
|
<hr>
|
|
<p><a href="../../index.html">Return to main index</a></p>
|
|
</body>
|
|
</html>
|