2021-05-12 15:57:51 +08:00
|
|
|
<!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 }}
|
2021-05-12 15:57:51 +08:00
|
|
|
|
|
|
|
</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 }}">
|
2021-05-12 15:57:51 +08:00
|
|
|
<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"> -->
|
2021-06-15 15:37:49 +08:00
|
|
|
{{ NAVIGATION }}
|
2021-05-12 15:57:51 +08:00
|
|
|
</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>
|