pocketlang/docs/static/template.html

62 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>{{ TITLE }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="{{ STATIC_DIR }}main.css">
<link rel="stylesheet" type="text/css" href="{{ STATIC_DIR }}pygments.css">
<link rel="stylesheet" type="text/css" href="{{ STATIC_DIR }}rage_font/style.css" />
2021-05-13 03:28:44 +08:00
<!-- Additional javascript css files for wasm try. -->
{{ WASM_SOURCE_FILES }}
</head>
<body>
<!-- Title header. -->
<div class="container">
<div id="header">
<div id="header_content" class="container">
2021-05-13 03:28:44 +08:00
<a href="{{ HOME_URL }}">
<h1>pocketlang</h1>
<h2>A small and fast language</h2>
</a>
</div>
</div>
</div>
<div id="page">
<div id="main-wrapper" class="container">
<div id="main">
<div id="content-wrapper">
<div id="content">
{{ CONTENT }}
</div>
</div>
<div id="sidebar-wrapper">
<div id="sidebar">
<!-- <img src=" $sttaicdir/ icon.png" style="width:120px"> -->
{{ NAVIGATION }}
</div>
</div>
</div>
</div>
</div>
<br>
<div class="container">
<div id="footer">
<p>Made by <a href="https://github.com/ThakeeNathees">Thakee Nathees</a>
on <a href="https://github.com/ThakeeNathees/pocketlang">github</a>.</p>
</div>
</div>
</body>
</html>