From dc66bc1a05243e2f96197cb42f3433005234d90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=87=A1=E6=A2=A6=E6=98=9F=E5=B0=98?= Date: Sun, 11 Sep 2022 09:06:05 +0800 Subject: [PATCH] :lipstick: Make a sample demo of custom files, close #33 --- .gitignore | 3 +++ exampleSite/layouts/partials/custom_footer.html | 3 +++ exampleSite/layouts/partials/custom_sidebar.html | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 exampleSite/layouts/partials/custom_footer.html create mode 100644 exampleSite/layouts/partials/custom_sidebar.html diff --git a/.gitignore b/.gitignore index 7c578ae..79be2e0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,9 @@ exampleSite/content/**/ # Exclude special files in data folder !exampleSite/data +# Exclude special files in layouts folder +!exampleSite/layouts + # Exclude special files in static folder !exampleSite/static diff --git a/exampleSite/layouts/partials/custom_footer.html b/exampleSite/layouts/partials/custom_footer.html new file mode 100644 index 0000000..a860d83 --- /dev/null +++ b/exampleSite/layouts/partials/custom_footer.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/exampleSite/layouts/partials/custom_sidebar.html b/exampleSite/layouts/partials/custom_sidebar.html new file mode 100644 index 0000000..e8f747e --- /dev/null +++ b/exampleSite/layouts/partials/custom_sidebar.html @@ -0,0 +1,3 @@ +
+ 支持自定义CSS和Sidebar布局啦💄💄💄 +
\ No newline at end of file