From 717160cec807aa35c1b1c9fcf3b9708f9ba0220d Mon Sep 17 00:00:00 2001
From: Abhishek Anil Deshmukh
Date: Tue, 20 Aug 2024 14:18:52 +0200
Subject: [PATCH] setup the basic thing atleast
---
README.md | 16 +
config.toml | 61 +
content/_index.de.md | 8 +
content/_index.md | 8 +
content/about/_index.de.md | 7 +
content/about/_index.md | 7 +
content/archive/_index.de.md | 4 +
content/archive/_index.md | 4 +
content/page/00_test_post.md | 26 +
themes/anatole-zola/.editorconfig | 11 +
themes/anatole-zola/.gitignore | 4 +
themes/anatole-zola/LICENSE | 24 +
themes/anatole-zola/README.md | 230 +++
themes/anatole-zola/config.toml | 98 ++
themes/anatole-zola/content/_index.de.md | 8 +
themes/anatole-zola/content/_index.md | 8 +
themes/anatole-zola/content/_index.sv.md | 8 +
themes/anatole-zola/content/_index.zh.md | 8 +
.../anatole-zola/content/about/_index.de.md | 7 +
themes/anatole-zola/content/about/_index.md | 7 +
.../anatole-zola/content/about/_index.sv.md | 7 +
.../anatole-zola/content/about/_index.zh.md | 7 +
.../anatole-zola/content/archive/_index.de.md | 4 +
themes/anatole-zola/content/archive/_index.md | 4 +
.../anatole-zola/content/archive/_index.sv.md | 4 +
.../anatole-zola/content/archive/_index.zh.md | 4 +
.../anatole-zola/content/links/_index.de.md | 8 +
themes/anatole-zola/content/links/_index.md | 8 +
.../anatole-zola/content/links/_index.sv.md | 8 +
.../anatole-zola/content/links/_index.zh.md | 8 +
themes/anatole-zola/content/post-1.md | 139 ++
themes/anatole-zola/content/post-1.zh.md | 12 +
themes/anatole-zola/content/post-10.md | 7 +
themes/anatole-zola/content/post-11.md | 7 +
themes/anatole-zola/content/post-2.md | 18 +
themes/anatole-zola/content/post-3.md | 7 +
themes/anatole-zola/content/post-4.md | 7 +
themes/anatole-zola/content/post-5.md | 7 +
themes/anatole-zola/content/post-6.md | 7 +
themes/anatole-zola/content/post-7.md | 7 +
themes/anatole-zola/content/post-8.md | 7 +
themes/anatole-zola/content/post-9.md | 7 +
themes/anatole-zola/sass/style.scss | 1441 +++++++++++++++++
themes/anatole-zola/screenshot-dark.png | Bin 0 -> 267037 bytes
.../anatole-zola/screenshot-mobile-dark.png | Bin 0 -> 119750 bytes
themes/anatole-zola/screenshot-mobile.png | Bin 0 -> 120444 bytes
themes/anatole-zola/screenshot.png | Bin 0 -> 153375 bytes
.../images/apple-touch-icon-120x120.png | Bin 0 -> 3373 bytes
.../images/apple-touch-icon-144x144.png | Bin 0 -> 4615 bytes
.../static/images/apple-touch-icon-57x57.png | Bin 0 -> 2363 bytes
.../static/images/apple-touch-icon-72x72.png | Bin 0 -> 2459 bytes
themes/anatole-zola/static/images/avatar.jpg | Bin 0 -> 6974 bytes
themes/anatole-zola/static/images/favicon.png | Bin 0 -> 6047 bytes
themes/anatole-zola/static/images/logo.png | Bin 0 -> 18460 bytes
themes/anatole-zola/static/images/logo@2x.png | Bin 0 -> 31924 bytes
themes/anatole-zola/static/js/tikzjax.js | 1 +
themes/anatole-zola/templates/about.html | 8 +
themes/anatole-zola/templates/archive.html | 32 +
themes/anatole-zola/templates/basic.html | 173 ++
themes/anatole-zola/templates/comments.html | 42 +
themes/anatole-zola/templates/index.html | 60 +
themes/anatole-zola/templates/links.html | 8 +
themes/anatole-zola/templates/page.html | 68 +
.../templates/shortcodes/asciinema.html | 1 +
.../templates/shortcodes/bilibili.html | 1 +
.../templates/shortcodes/mermaid.html | 3 +
.../templates/shortcodes/tikzjax.html | 5 +
.../templates/shortcodes/youtube.html | 5 +
themes/anatole-zola/templates/tags/list.html | 15 +
.../anatole-zola/templates/tags/single.html | 23 +
themes/anatole-zola/theme.toml | 22 +
71 files changed, 2756 insertions(+)
create mode 100644 config.toml
create mode 100644 content/_index.de.md
create mode 100644 content/_index.md
create mode 100644 content/about/_index.de.md
create mode 100644 content/about/_index.md
create mode 100644 content/archive/_index.de.md
create mode 100644 content/archive/_index.md
create mode 100644 content/page/00_test_post.md
create mode 100644 themes/anatole-zola/.editorconfig
create mode 100644 themes/anatole-zola/.gitignore
create mode 100644 themes/anatole-zola/LICENSE
create mode 100644 themes/anatole-zola/README.md
create mode 100644 themes/anatole-zola/config.toml
create mode 100644 themes/anatole-zola/content/_index.de.md
create mode 100644 themes/anatole-zola/content/_index.md
create mode 100644 themes/anatole-zola/content/_index.sv.md
create mode 100644 themes/anatole-zola/content/_index.zh.md
create mode 100644 themes/anatole-zola/content/about/_index.de.md
create mode 100644 themes/anatole-zola/content/about/_index.md
create mode 100644 themes/anatole-zola/content/about/_index.sv.md
create mode 100644 themes/anatole-zola/content/about/_index.zh.md
create mode 100644 themes/anatole-zola/content/archive/_index.de.md
create mode 100644 themes/anatole-zola/content/archive/_index.md
create mode 100644 themes/anatole-zola/content/archive/_index.sv.md
create mode 100644 themes/anatole-zola/content/archive/_index.zh.md
create mode 100644 themes/anatole-zola/content/links/_index.de.md
create mode 100644 themes/anatole-zola/content/links/_index.md
create mode 100644 themes/anatole-zola/content/links/_index.sv.md
create mode 100644 themes/anatole-zola/content/links/_index.zh.md
create mode 100644 themes/anatole-zola/content/post-1.md
create mode 100644 themes/anatole-zola/content/post-1.zh.md
create mode 100644 themes/anatole-zola/content/post-10.md
create mode 100644 themes/anatole-zola/content/post-11.md
create mode 100644 themes/anatole-zola/content/post-2.md
create mode 100644 themes/anatole-zola/content/post-3.md
create mode 100644 themes/anatole-zola/content/post-4.md
create mode 100644 themes/anatole-zola/content/post-5.md
create mode 100644 themes/anatole-zola/content/post-6.md
create mode 100644 themes/anatole-zola/content/post-7.md
create mode 100644 themes/anatole-zola/content/post-8.md
create mode 100644 themes/anatole-zola/content/post-9.md
create mode 100644 themes/anatole-zola/sass/style.scss
create mode 100644 themes/anatole-zola/screenshot-dark.png
create mode 100644 themes/anatole-zola/screenshot-mobile-dark.png
create mode 100644 themes/anatole-zola/screenshot-mobile.png
create mode 100644 themes/anatole-zola/screenshot.png
create mode 100644 themes/anatole-zola/static/images/apple-touch-icon-120x120.png
create mode 100644 themes/anatole-zola/static/images/apple-touch-icon-144x144.png
create mode 100644 themes/anatole-zola/static/images/apple-touch-icon-57x57.png
create mode 100644 themes/anatole-zola/static/images/apple-touch-icon-72x72.png
create mode 100644 themes/anatole-zola/static/images/avatar.jpg
create mode 100644 themes/anatole-zola/static/images/favicon.png
create mode 100644 themes/anatole-zola/static/images/logo.png
create mode 100644 themes/anatole-zola/static/images/logo@2x.png
create mode 100644 themes/anatole-zola/static/js/tikzjax.js
create mode 100644 themes/anatole-zola/templates/about.html
create mode 100644 themes/anatole-zola/templates/archive.html
create mode 100644 themes/anatole-zola/templates/basic.html
create mode 100644 themes/anatole-zola/templates/comments.html
create mode 100644 themes/anatole-zola/templates/index.html
create mode 100644 themes/anatole-zola/templates/links.html
create mode 100644 themes/anatole-zola/templates/page.html
create mode 100644 themes/anatole-zola/templates/shortcodes/asciinema.html
create mode 100644 themes/anatole-zola/templates/shortcodes/bilibili.html
create mode 100644 themes/anatole-zola/templates/shortcodes/mermaid.html
create mode 100644 themes/anatole-zola/templates/shortcodes/tikzjax.html
create mode 100644 themes/anatole-zola/templates/shortcodes/youtube.html
create mode 100644 themes/anatole-zola/templates/tags/list.html
create mode 100644 themes/anatole-zola/templates/tags/single.html
create mode 100644 themes/anatole-zola/theme.toml
diff --git a/README.md b/README.md
index e69de29..eb09d73 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,16 @@
+Uses zola, to convert markdown to the final static site.
+
+For testing
+```
+$ zola serve
+```
+
+- [x] Basic site
+- [ ] Test post
+ - [ ] Images
+ - [ ] Code
+ - [ ] Video
+- [ ] Migrate old posts
+- [ ] Support for indian languages
+- [ ] Automate deployment whenever I push code
+- [ ] Pagination
\ No newline at end of file
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..4f02fac
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,61 @@
+# The URL the site will be built for
+base_url = "https://thoughts.abhishek-home.com"
+
+# The site title
+title = "Abhishek's thoughts"
+description = "A compilation of things I think about in a blog format."
+author = "Abhishek Anil Deshmukh"
+
+# Whether to automatically compile all Sass files in the sass directory
+theme = "anatole-zola"
+compile_sass = false
+minify_html = true
+generate_feeds = false
+
+# Whether to build a search index to be used later on by a JavaScript library
+build_search_index = true
+
+default_language = "en"
+
+[languages.en.translations]
+language_name = "English"
+about = "About"
+home = "Home"
+tags = "Tags"
+archive = "Archive"
+links = "Links"
+date_format = "%Y-%m-%d"
+next_page = "Next Page"
+last_page = "Last Page"
+
+[languages.de.translations]
+language_name = "Deutsch"
+about = "Info"
+home = "Home"
+tags = "Kategorien"
+archive = "Archiv"
+links = "Links"
+date_format = "%d-%m-%Y"
+next_page = "Nächste Seite"
+last_page = "Vorherige Seite"
+
+[markdown]
+# Whether to do syntax highlighting
+# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
+highlight_code = true
+render_emoji = true
+lazy_async_image = true
+bottom_footnotes = true
+
+[slugify]
+path_keep_dates = true
+
+# [search]
+# include_path = true
+# include_date = true
+# include_description = true
+# include_content = true
+# index_format = "fuse_json"
+
+[extra]
+# Put all your custom variables here
diff --git a/content/_index.de.md b/content/_index.de.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/content/_index.de.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/content/about/_index.de.md b/content/about/_index.de.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/content/about/_index.de.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/content/about/_index.md b/content/about/_index.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/content/about/_index.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/content/archive/_index.de.md b/content/archive/_index.de.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/content/archive/_index.de.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/content/archive/_index.md b/content/archive/_index.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/content/archive/_index.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/content/page/00_test_post.md b/content/page/00_test_post.md
new file mode 100644
index 0000000..03abf88
--- /dev/null
+++ b/content/page/00_test_post.md
@@ -0,0 +1,26 @@
++++
+title = "Test post"
+template = "page.html"
+date = 2020-05-09
++++
+
+# Test post
+
+The content of the post
+
+There should be a image below this.
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
+do eiusmod tempor incididunt ut labore et dolore magna
+aliqua. Ut enim ad minim veniam, quis nostrud exercitation
+ullamco laboris nisi ut aliquip ex ea commodo consequat.
+Duis aute irure dolor in reprehenderit in voluptate velit
+esse cillum dolore eu fugiat nulla pariatur. Excepteur
+sint occaecat cupidatat non proident, sunt in culpa qui
+officia deserunt mollit anim id est laborum.
+
+```cpp
+void main (int[] args) {
+ cout << "Checking code syntax" << endl;
+}
+```
\ No newline at end of file
diff --git a/themes/anatole-zola/.editorconfig b/themes/anatole-zola/.editorconfig
new file mode 100644
index 0000000..e68ab27
--- /dev/null
+++ b/themes/anatole-zola/.editorconfig
@@ -0,0 +1,11 @@
+; http://editorconfig.org
+
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
diff --git a/themes/anatole-zola/.gitignore b/themes/anatole-zola/.gitignore
new file mode 100644
index 0000000..1fbf78f
--- /dev/null
+++ b/themes/anatole-zola/.gitignore
@@ -0,0 +1,4 @@
+public/
+.idea
+.DS_Store
+./**/.DS_Store
diff --git a/themes/anatole-zola/LICENSE b/themes/anatole-zola/LICENSE
new file mode 100644
index 0000000..fdddb29
--- /dev/null
+++ b/themes/anatole-zola/LICENSE
@@ -0,0 +1,24 @@
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
+
+For more information, please refer to
diff --git a/themes/anatole-zola/README.md b/themes/anatole-zola/README.md
new file mode 100644
index 0000000..0ad33b2
--- /dev/null
+++ b/themes/anatole-zola/README.md
@@ -0,0 +1,230 @@
+# Anatole Theme for Zola
+
+*[Anatole theme for Farbox](https://github.com/hi-caicai/farbox-theme-Anatole) ported to Zola*
+___
+[Zola Homepage](https://www.getzola.org/themes/anatole-zola/) | [Demo with customizations](https://longfangsong.github.io/)
+___
+
+
+
+
+
+
+
+
+## Installation
+
+First download this theme to your `themes` directory:
+
+```bash
+$ cd themes
+$ git clone https://github.com/longfangsong/anatole-zola.git
+```
+and then enable it in your `config.toml`:
+
+```toml
+theme = "anatole-zola"
+```
+
+And copy the `content/about`, `content/archive`, `content/_index.md` in the theme folder to your own content folder. And edit the `_index.md` in `about` folder to edit the content of your `about` page.
+
+## Options
+
+### Basic
+
+Add `title`, `description` and `base_url`:
+
+```toml
+title = "Anatole"
+description = "A other zola theme"
+base_url = "https://example.com"
+```
+
+### Mode
+
+Though the origin theme only support light mode, we added a dark mode option here.
+
+You can either
+- set the `extra.mode` field in `config.toml` to use the dark/light mode
+- or set the `extra.default_mode` field in `config.toml` to read the dark/light mode from `localStorage` (the key is `'mode'`), and use some Javascript to control the theme each reader is using
+- or do nothing, we'll use light mode by default
+
+### Language
+
+Currently, we have English, Chinese, German and Swedish translations, set the `default_language` if necessary:
+
+```toml
+# 如果你想要中文
+default_language = "zh"
+```
+
+If there are complications, you can copy this snippet to your `config.toml`:
+
+```toml
+[languages.en.translations]
+language_name = "English"
+about = "About"
+home = "Home"
+tags = "Tags"
+archive = "Archive"
+links = "Links"
+date_format = "%Y-%m-%d"
+next_page = "Next Page"
+last_page = "Last Page"
+
+[languages.zh.translations]
+language_name = "中文"
+home = "首页"
+about = "关于"
+tags = "标签"
+archive = "归档"
+links = "友链"
+date_format = "%Y-%m-%d"
+next_page = "下一页"
+last_page = "上一页"
+
+[languages.de.translations]
+language_name = "Deutsch"
+about = "Info"
+home = "Home"
+tags = "Kategorien"
+archive = "Archiv"
+links = "Links"
+date_format = "%d-%m-%Y"
+next_page = "Nächste Seite"
+last_page = "Vorherige Seite"
+
+[languages.sv.translations]
+language_name = "Svenska"
+about = "Info"
+home = "Hem"
+tags = "Etiketter"
+archive = "Arkiv"
+links = "Länkar"
+date_format = "%Y-%m-%d"
+next_page = "Nästa Sidan"
+last_page = "Sista Sidan"
+```
+
+Feel free to create a pull request if you want to translate the theme into other languages!
+#### Multilingual
+
+The theme will become multilingual automatically if you specify another language except `default_language`.
+
+You'll see a language-switching button on top right.
+
+
+### Sections
+
+Tags and links sections are optional.
+
+- If you want to enable the tags page, add
+ ```toml
+ taxonomies = [
+ {name = "tags"},
+ ]
+
+ [extra.show]
+ tags = true
+ ```
+ To your `config.toml`
+
+- If you want to enable the links page, add
+
+ ```toml
+ [extra.show]
+ links = true
+ ```
+
+ and copy `content/links` to your own `content` library. And edit the `_index.md` in it to modify its content.
+
+- If you want to add the author's name on each page, add:
+
+ ```toml
+ [extra]
+ author = "John Doe"
+ ```
+
+### Sidebar menu
+
+We support a bunch of social links:
+
+```toml
+[extra.social]
+github = ""
+gitlab = ""
+stackoverflow = "" # use user_id
+twitter = ""
+mastodon = "" # use hostname/@username
+facebook = ""
+instagram = ""
+dribbble = ""
+weibo = ""
+linkedin = ""
+flickr = ""
+```
+
+Fill in your username if you want! And the logo won't appear if you leave it empty.
+
+
+
+### Comment system
+
+We currently support...
+
+- [Valine](https://valine.js.org/quickstart.html):
+
+```toml
+[extra.comment.valine]
+appid = "Your appid goes here"
+appkey = "Your appkey goes here"
+notify = false # true/false: mail notify https://github.com/xCss/Valine/wiki/Valine-%E8%AF%84%E8%AE%BA%E7%B3%BB%E7%BB%9F%E4%B8%AD%E7%9A%84%E9%82%AE%E4%BB%B6%E6%8F%90%E9%86%92%E8%AE%BE%E7%BD%AE
+verify = false # true/false: verify code
+avatar = "mm" # avatar style https://github.com/xCss/Valine/wiki/avatar-setting-for-valine
+placeholder = "Say something here"
+```
+
+- [Disqus](https://disqus.com/admin/create/), note that Disqus does not work in Mainland China:
+
+```toml
+[extra.comment.disqus]
+name = "longfangsong"
+```
+
+- [Utterances](https://utteranc.es/):
+
+```toml
+[extra.comment.utterances]
+repo = "Your repo for comments"
+issue_term = "pathname"
+theme = "github-light"
+```
+
+
+## Customize
+
+There are several options I left in the origin templates for you to customize your site.
+
+### More style
+
+You can create a `blog.scss` or something similiar in the your `sass` folder, add a `templates.html` with following content:
+
+```html
+{% extends "anatole-zola/templates/basic.html" %}
+{% block extra_head %}
+
+{% endblock %}
+```
+
+### More social links
+
+You can add more social links by adding a `templates.html` with some content added to `more_social_link` block:
+
+```html
+{% extends "anatole-zola/templates/basic.html" %}
+{% block more_social_link %}
+
+{% endblock %}
+```
+
+If you want to use some awesome logos, [FontAwesome icons](https://fontawesome.com/icons?d=gallery) are already available.
diff --git a/themes/anatole-zola/config.toml b/themes/anatole-zola/config.toml
new file mode 100644
index 0000000..661db0a
--- /dev/null
+++ b/themes/anatole-zola/config.toml
@@ -0,0 +1,98 @@
+title = "Anatole"
+description = "A other zola theme"
+base_url = "https://example.com"
+compile_sass = true
+highlight_code = true
+build_search_index = false
+generate_feed = true
+highlight_theme = "base16-ocean-light"
+default_language = "en"
+
+taxonomies = [
+ {name = "tags"},
+]
+
+[languages.en]
+title = "Anatole"
+description = "A other zola theme"
+generate_feed = true
+taxonomies = [
+ {name = "tags"},
+]
+
+[languages.zh]
+title = "Anatole"
+description = "A other zola theme"
+generate_feed = true
+taxonomies = [
+ {name = "tags"},
+]
+
+[languages.en.translations]
+language_name = "English"
+about = "About"
+home = "Home"
+tags = "Tags"
+archive = "Archive"
+links = "Links"
+date_format = "%Y-%m-%d"
+next_page = "Next Page"
+last_page = "Last Page"
+
+[languages.zh.translations]
+language_name = "中文"
+home = "首页"
+about = "关于"
+tags = "标签"
+archive = "归档"
+links = "友链"
+date_format = "%Y-%m-%d"
+next_page = "下一页"
+last_page = "上一页"
+
+[languages.de.translations]
+language_name = "Deutsch"
+about = "Info"
+home = "Home"
+tags = "Kategorien"
+archive = "Archiv"
+links = "Links"
+date_format = "%d-%m-%Y"
+next_page = "Nächste Seite"
+last_page = "Vorherige Seite"
+
+[languages.sv.translations]
+language_name = "Svenska"
+about = "Info"
+home = "Hem"
+tags = "Etiketter"
+archive = "Arkiv"
+links = "Länkar"
+date_format = "%Y-%m-%d"
+next_page = "Nästa Sidan"
+last_page = "Sista Sidan"
+
+[languages.ja.translations]
+language_name = "日本語"
+about = "About"
+home = "Home"
+tags = "タグ"
+archive = "アーカイブ"
+links = "リンク"
+date_format = "%Y-%m-%d"
+next_page = "次頁"
+last_page = "前頁"
+
+[extra.social]
+github = ""
+twitter = "w"
+facebook = ""
+instagram = "r"
+dribbble = "t"
+weibo = "y"
+linkedin = ""
+flickr = ""
+
+[extra.show]
+tags = true
+links = true
diff --git a/themes/anatole-zola/content/_index.de.md b/themes/anatole-zola/content/_index.de.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/themes/anatole-zola/content/_index.de.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/themes/anatole-zola/content/_index.md b/themes/anatole-zola/content/_index.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/themes/anatole-zola/content/_index.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/themes/anatole-zola/content/_index.sv.md b/themes/anatole-zola/content/_index.sv.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/themes/anatole-zola/content/_index.sv.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/themes/anatole-zola/content/_index.zh.md b/themes/anatole-zola/content/_index.zh.md
new file mode 100644
index 0000000..604b485
--- /dev/null
+++ b/themes/anatole-zola/content/_index.zh.md
@@ -0,0 +1,8 @@
++++
+title = "index"
+template = "index.html"
+transparent = true
+sort_by = "date"
+paginate_by = 10
++++
+
diff --git a/themes/anatole-zola/content/about/_index.de.md b/themes/anatole-zola/content/about/_index.de.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/themes/anatole-zola/content/about/_index.de.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/themes/anatole-zola/content/about/_index.md b/themes/anatole-zola/content/about/_index.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/themes/anatole-zola/content/about/_index.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/themes/anatole-zola/content/about/_index.sv.md b/themes/anatole-zola/content/about/_index.sv.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/themes/anatole-zola/content/about/_index.sv.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/themes/anatole-zola/content/about/_index.zh.md b/themes/anatole-zola/content/about/_index.zh.md
new file mode 100644
index 0000000..52f671f
--- /dev/null
+++ b/themes/anatole-zola/content/about/_index.zh.md
@@ -0,0 +1,7 @@
++++
+title = "About"
+template = "about.html"
+paginate_by = 0
++++
+
+About this site
\ No newline at end of file
diff --git a/themes/anatole-zola/content/archive/_index.de.md b/themes/anatole-zola/content/archive/_index.de.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/themes/anatole-zola/content/archive/_index.de.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/themes/anatole-zola/content/archive/_index.md b/themes/anatole-zola/content/archive/_index.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/themes/anatole-zola/content/archive/_index.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/themes/anatole-zola/content/archive/_index.sv.md b/themes/anatole-zola/content/archive/_index.sv.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/themes/anatole-zola/content/archive/_index.sv.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/themes/anatole-zola/content/archive/_index.zh.md b/themes/anatole-zola/content/archive/_index.zh.md
new file mode 100644
index 0000000..5bc9a67
--- /dev/null
+++ b/themes/anatole-zola/content/archive/_index.zh.md
@@ -0,0 +1,4 @@
++++
+title = "archive"
+template = "archive.html"
++++
diff --git a/themes/anatole-zola/content/links/_index.de.md b/themes/anatole-zola/content/links/_index.de.md
new file mode 100644
index 0000000..27aa6a5
--- /dev/null
+++ b/themes/anatole-zola/content/links/_index.de.md
@@ -0,0 +1,8 @@
++++
+title = "Links"
+template = "links.html"
+paginate_by = 0
++++
+
+Extern links:
+- [Origin theme demo](http://anatole.cai-cai.me)
diff --git a/themes/anatole-zola/content/links/_index.md b/themes/anatole-zola/content/links/_index.md
new file mode 100644
index 0000000..27aa6a5
--- /dev/null
+++ b/themes/anatole-zola/content/links/_index.md
@@ -0,0 +1,8 @@
++++
+title = "Links"
+template = "links.html"
+paginate_by = 0
++++
+
+Extern links:
+- [Origin theme demo](http://anatole.cai-cai.me)
diff --git a/themes/anatole-zola/content/links/_index.sv.md b/themes/anatole-zola/content/links/_index.sv.md
new file mode 100644
index 0000000..27aa6a5
--- /dev/null
+++ b/themes/anatole-zola/content/links/_index.sv.md
@@ -0,0 +1,8 @@
++++
+title = "Links"
+template = "links.html"
+paginate_by = 0
++++
+
+Extern links:
+- [Origin theme demo](http://anatole.cai-cai.me)
diff --git a/themes/anatole-zola/content/links/_index.zh.md b/themes/anatole-zola/content/links/_index.zh.md
new file mode 100644
index 0000000..27aa6a5
--- /dev/null
+++ b/themes/anatole-zola/content/links/_index.zh.md
@@ -0,0 +1,8 @@
++++
+title = "Links"
+template = "links.html"
+paginate_by = 0
++++
+
+Extern links:
+- [Origin theme demo](http://anatole.cai-cai.me)
diff --git a/themes/anatole-zola/content/post-1.md b/themes/anatole-zola/content/post-1.md
new file mode 100644
index 0000000..e20b572
--- /dev/null
+++ b/themes/anatole-zola/content/post-1.md
@@ -0,0 +1,139 @@
++++
+title = "Basic Markdown syntax"
+template = "page.html"
+date = 2020-01-02T15:00:00Z
+[taxonomies]
+tags = ["markdown", "demo"]
+[extra]
+summary = "Shows how basic Markdown syntax are rendered"
+mathjax = "tex-mml"
++++
+
+
+
+## Headings
+
+The following HTML `
`—`
` elements represent six levels of section headings. `
` is the highest section level while `
` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+#### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1]
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+#### Inline Markdown within tables
+
+| Inline | Markdown | In | Table |
+| ---------- | --------- | ----------------- | ---------- |
+| *italics* | **bold** | ~~strikethrough~~ | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+```html
+
+
+
+
+ Example HTML5 Document
+
+
+
Test
+
+
+```
+#### Code block indented with four spaces
+
+
+
+
+
+ Example HTML5 Document
+
+
+