42 lines
1.5 KiB
Text
42 lines
1.5 KiB
Text
<rml>
|
|
<!--
|
|
Singe 3
|
|
Copyright (C) 2006-2026 Scott Duensing <scott@kangaroopunch.com>
|
|
|
|
The bundled game menu: the document Singe/Menu.singe fills and drives. Every region is placed
|
|
by the script (it owns the geometry so the attract video, drawn into the overlay underneath,
|
|
lands exactly in the #video hole); Singe/menu.rcss only says what the regions look like.
|
|
Licensed under the GNU General Public License, version 3 or later.
|
|
-->
|
|
<head>
|
|
<title>Menu</title>
|
|
<link type="text/rcss" href="Singe/gui.rcss"/>
|
|
<link type="text/rcss" href="Singe/menu.rcss"/>
|
|
</head>
|
|
<body id="menu">
|
|
<div id="games">
|
|
<div id="list" class="list"></div>
|
|
<div id="poster" class="art"></div>
|
|
<div id="marquee" class="art"></div>
|
|
<div id="video"></div>
|
|
<div id="info" class="panel">
|
|
<div id="title"></div>
|
|
<div id="credits" class="line"></div>
|
|
<div id="developer" class="line"></div>
|
|
<div id="publisher" class="line"></div>
|
|
<div id="port" class="line"></div>
|
|
<div id="description"></div>
|
|
</div>
|
|
<div id="footer">
|
|
<div id="hints">Up / Down: select Left / Right: page Start or button: play Service: tools</div>
|
|
<button id="start">Start</button>
|
|
</div>
|
|
</div>
|
|
<!-- Every service tool draws through this one page: Singe/Tools.singe hands the menu a list of
|
|
rows and Singe/MenuDocument.singe turns them into the divs below it. -->
|
|
<div id="tool" class="tool hidden">
|
|
<h1 id="toolTitle"></h1>
|
|
<div id="toolBody"></div>
|
|
</div>
|
|
</body>
|
|
</rml>
|