diff options
author | 2013-08-07 14:02:34 +0000 | |
---|---|---|
committer | 2013-08-07 14:02:34 +0000 | |
commit | 411919feff7cb88f0b85af883ef28ee4f8d096b8 (patch) | |
tree | 6415eb9435f1472b344cb2d8cd6a1976c607eff8 /web/index.html | |
parent | 66b80a3c0a673678c1c6f7bfc24e9f11dd3bf3ff (diff) |
Added sample index page with menu (nw)
Diffstat (limited to 'web/index.html')
-rw-r--r-- | web/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html new file mode 100644 index 00000000000..8dbcce5dd35 --- /dev/null +++ b/web/index.html @@ -0,0 +1,51 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title>MAME</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta http-equiv="pragma" content="no-cache"> + <meta http-equiv="expires" content="-1"> + <link rel="shortcut icon" href="favicon.ico"> + <link href="css/main.css" media="screen" rel="stylesheet" type="text/css" /> + <link href="css/dropdown.css" media="screen" rel="stylesheet" type="text/css" /> + <link href="css/default.ultimate.css" media="screen" rel="stylesheet" type="text/css" /> +</head> +<body> +<div data-role="page"> + <div data-role="header"> + <img src="images/logo-mame-small.png"/> + </div> + +<ul id="nav" class="dropdown dropdown-horizontal"> + <li id="n-home"><a href="./">Home</a></li> + <li id="n-logs"><a href="./" class="dir">Logs</a> + <ul> + <li class="first"><a href="./"><strong>OS log</strong></a></li> + <li><a href="./">Verbose</a></li> + <li><a href="./">Driver log</a></li> + </ul> + </li> + <li id="n-options"><a href="./" class="dir">Options</a> + <ul> + <li class="first"><span class="dir">Video</span> + <ul> + <li class="first"><a href="./">Option 1</a></li> + <li><a href="./">Option 2</a></li> + <li><a href="./">Option 3</a></li> + <li><a href="./">Option 4</a></li> + <li><a href="./">Option 5</a></li> + </ul> + </li> + <li><span class="dir">Sound</span> + <ul> + <li class="first"><a href="./">Option 1</a></li> + <li><a href="./">Option 2</a></li> + </ul> + </li> + </ul> + </li> + <li id="n-debugger"><a href="./">Debugger</a></li> +</ul> +</div> +</body> +</html>
\ No newline at end of file |