mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 04:37:47 +08:00
c58159b63d
* fixed typos in src/ * fixed typos in docs/ * fixed typos in README and tests/ * rename INITALIZE to INITIALIZE * rename PRIMITE to PRIMITIVE * rename moudle to module Co-authored-by: Alexander Patel <acpatel@andrew.cmu.edu>
62 lines
1.3 KiB
HTML
62 lines
1.3 KiB
HTML
<!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" />
|
|
|
|
<!-- 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">
|
|
<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>
|