aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts/default.html
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-12-03 04:34:10 +0800
committer简律纯 <i@jyunko.cn>2023-12-03 04:34:10 +0800
commitc6a085edd4a4206918c8d9470c8b389b90679fb0 (patch)
tree08613502ac6553a8ecd0642d465c8d778aad7843 /_layouts/default.html
parentaab1125476bae9e058ca06971449cb0dc28419e5 (diff)
downloadconference-c6a085edd4a4206918c8d9470c8b389b90679fb0.tar.gz
conference-c6a085edd4a4206918c8d9470c8b389b90679fb0.zip
feat: add LaTeX
Diffstat (limited to '_layouts/default.html')
-rw-r--r--_layouts/default.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..2e75750
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,34 @@
+---
+---
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href="./assets/css/style.css">
+ <meta charset="utf-8">
+ <title>{{ page.title }}</title>
+ <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
+ <script id="MathJax-script" async
+ src="https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-mml-chtml.js">
+ </script>
+ </head>
+ <body>
+ <div class="Margins">
+ <p class="LatexTitle">{{ page.title }}</p>
+ {% if page.author %} <p class="LatexName">{{ page.author }}</p> {% endif %}
+ {% if page.date %} <p class="LatexDate">{{ page.date }}</p> {% endif %}
+
+ {% if page.abstract %}<div class="AbstractMargins">
+ <p class="LatexAbstract">Abstract</p>
+ <p class="LatexAbstractText">{{ page.abstract }}</p>
+ </div>{% endif %}
+
+
+ {{ content }}
+
+
+ </div>
+ </body>
+ <footer class="footerSize">
+
+ </footer>
+</html> \ No newline at end of file