From 3e6f0389f0cdac7b90970c49f455205563b48ad6 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 7 Mar 2021 11:29:26 +0700 Subject: Initialize a Franklin site --- _layout/foot.html | 9 +++++++++ _layout/foot_highlight.html | 2 ++ _layout/foot_katex.html | 3 +++ _layout/head.html | 16 ++++++++++++++++ _layout/head_highlight.html | 1 + _layout/head_katex.html | 1 + _layout/header.html | 12 ++++++++++++ _layout/page_foot.html | 5 +++++ _layout/tag.html | 18 ++++++++++++++++++ 9 files changed, 67 insertions(+) create mode 100644 _layout/foot.html create mode 100644 _layout/foot_highlight.html create mode 100644 _layout/foot_katex.html create mode 100644 _layout/head.html create mode 100644 _layout/head_highlight.html create mode 100644 _layout/head_katex.html create mode 100644 _layout/header.html create mode 100644 _layout/page_foot.html create mode 100644 _layout/tag.html (limited to '_layout') diff --git a/_layout/foot.html b/_layout/foot.html new file mode 100644 index 0000000..f87c1a1 --- /dev/null +++ b/_layout/foot.html @@ -0,0 +1,9 @@ + + {{ if hasmath }} + {{ insert foot_katex.html }} + {{ end }} + {{ if hascode }} + {{ insert foot_highlight.html }} + {{ end }} + + diff --git a/_layout/foot_highlight.html b/_layout/foot_highlight.html new file mode 100644 index 0000000..616d9f4 --- /dev/null +++ b/_layout/foot_highlight.html @@ -0,0 +1,2 @@ + + diff --git a/_layout/foot_katex.html b/_layout/foot_katex.html new file mode 100644 index 0000000..6c7e39f --- /dev/null +++ b/_layout/foot_katex.html @@ -0,0 +1,3 @@ + + + diff --git a/_layout/head.html b/_layout/head.html new file mode 100644 index 0000000..079b80d --- /dev/null +++ b/_layout/head.html @@ -0,0 +1,16 @@ + + + + + + {{if hasmath}} {{insert head_katex.html }} {{end}} + {{if hascode}} {{insert head_highlight.html }} {{end}} + + + + {{isdef title}} {{fill title}} {{end}} + + + {{insert header.html}} + + diff --git a/_layout/head_highlight.html b/_layout/head_highlight.html new file mode 100644 index 0000000..b0b9142 --- /dev/null +++ b/_layout/head_highlight.html @@ -0,0 +1 @@ + diff --git a/_layout/head_katex.html b/_layout/head_katex.html new file mode 100644 index 0000000..755f249 --- /dev/null +++ b/_layout/head_katex.html @@ -0,0 +1 @@ + diff --git a/_layout/header.html b/_layout/header.html new file mode 100644 index 0000000..b3d0f94 --- /dev/null +++ b/_layout/header.html @@ -0,0 +1,12 @@ +
+ + +
diff --git a/_layout/page_foot.html b/_layout/page_foot.html new file mode 100644 index 0000000..9562d32 --- /dev/null +++ b/_layout/page_foot.html @@ -0,0 +1,5 @@ +
+ +
diff --git a/_layout/tag.html b/_layout/tag.html new file mode 100644 index 0000000..979b60c --- /dev/null +++ b/_layout/tag.html @@ -0,0 +1,18 @@ + + + + + + + + Tag: {{fill fd_tag}} + + + {{insert header.html}} +
+

Tag: {{fill fd_tag}}

+ {{taglist}} + {{insert page_foot.html}} +
+ + -- cgit 1.4.1