diff options
author | Yuchen Pei <me@ypei.me> | 2018-04-06 17:43:24 +0200 |
---|---|---|
committer | Yuchen Pei <me@ypei.me> | 2018-04-06 17:43:24 +0200 |
commit | 2a2c61de0e44adad26c0034dfda6594c34f0d834 (patch) | |
tree | 75d8d3960b552cf3b8b56e0abf11e78ca28f8776 /templates/default.html | |
parent | 76ab6c66b3c65f16c8d19a6d16c100cf45ec9e57 (diff) |
second commit
Diffstat (limited to 'templates/default.html')
-rw-r--r-- | templates/default.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..7cd66f1 --- /dev/null +++ b/templates/default.html @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>$title$</title> + <link rel="stylesheet" href="../assets/css/default.css" /> + <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script> + </head> + <body> + <header> + <span class="logo"> + <a href="index.html">Yuchen Pei</a> + </span> + <nav> + <a href="blog.html">Blog</a><a href="microblog.html">Microblog</a><a href="links.html">Links</a> + </nav> + </header> + + <div class="main"> + <div class="bodyitem"> + $body$ + </div> + </div> + + </body> +</html> |