And: - some basic stylesheet i found for basic html elements - a global lua method for navigating pages
17 lines
467 B
Plaintext
17 lines
467 B
Plaintext
<rml>
|
|
<head>
|
|
<title>RmlUi Temaplate</title>
|
|
<link type="text/rcss" href="styles/main.rcss" />
|
|
</head>
|
|
<body>
|
|
<div id="navbar">
|
|
<h1>Navigation</h1>
|
|
<div class="nav-buttons">
|
|
<button id="nav-test">Test Page</button>
|
|
<button id="nav-about">About</button>
|
|
<button id="nav-lua-test" onclick="NavigateTo('lua-test')">Lua Test</button>
|
|
</div>
|
|
</div>
|
|
<div id="page-content"></div>
|
|
</body>
|
|
</rml> |