20 lines
592 B
HTML
20 lines
592 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title> {{ page.title }} </title>
|
|
<link rel="stylesheet" type="text/css" href="{{ page.css }}.css" />
|
|
</head>
|
|
<body>
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
messageStyle: "none",
|
|
tex2jax: {inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true}
|
|
});
|
|
</script>
|
|
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
|
|
<div id="container"> {{ content }} </div>
|
|
<footer>
|
|
<a href="https://github.com/Rnhmjoj">@Rnhmjoj</a>
|
|
</footer>
|
|
</body>
|
|
</html> |