mirror of
http://101.35.51.105:3000/congyu/work_with_codex.git
synced 2026-04-28 06:40:51 +08:00
e84a1b8c78
Add site executable and Haskell modules (site.hs, ChaoDoc.hs, SideNoteHTML.hs, Pangu.hs) to handle Pandoc/Hakyll compilation, theorem/sidenote processing and CJK spacing. Add CSS, font files, favicon, templates, Makefile, and a CSL bibliographic style. Update .gitignore to ignore build artifacts.
24 lines
567 B
HTML
24 lines
567 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
$partial("templates/head.html")$
|
|
</head>
|
|
|
|
<body>
|
|
<div class="toc">
|
|
<div id="contents-big">
|
|
<p class="mini-header">Contents</p>
|
|
<a id="up-arrow" href="#">#</a>
|
|
$toc$
|
|
</div>
|
|
</div>
|
|
<div class="text-space">
|
|
$partial("templates/navbar.html")$
|
|
<main role="main">
|
|
<h1 class="pagetitle">$title$</h1>
|
|
$body$
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|