first commit
This commit is contained in:
40
assets/templates/default.html
Normal file
40
assets/templates/default.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="googlebot" content="noindex" />
|
||||
<title>$title$</title>
|
||||
<link rel="stylesheet" href="/css/fonts.css" />
|
||||
<link rel="stylesheet" href="/css/default.css" />
|
||||
<link rel="stylesheet" href="/css/pygentize.css" />
|
||||
<link rel="stylesheet" href="/css/chao-theorems.css" />
|
||||
<link rel="stylesheet" href="/css/sidenotes.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="toc">
|
||||
<div id="contents-big">
|
||||
<a href="#">
|
||||
<p class="mini-header">Contents</p>
|
||||
</a>
|
||||
$toc$
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-space">
|
||||
<header class="no-print">
|
||||
<nav>
|
||||
<a href="/">Home</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main role="main">
|
||||
<h1 class="pagetitle">$title$</h1>
|
||||
$body$
|
||||
</main>
|
||||
<footer></footer>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
5
assets/templates/post-list.html
Normal file
5
assets/templates/post-list.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<ul class="post-list">
|
||||
$for(posts)$
|
||||
<li><a href="$url$">$title$</a></li>
|
||||
$endfor$
|
||||
</ul>
|
||||
5
assets/templates/post.html
Normal file
5
assets/templates/post.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<article>
|
||||
<section class="body">
|
||||
$body$
|
||||
</section>
|
||||
</article>
|
||||
Reference in New Issue
Block a user