From 8628a4ae2e7c8998c8d2ffe2ecc51f2624aa66b1 Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sat, 18 Nov 2023 12:15:16 +0200 Subject: Massive changes - migrating to Hermit with a few tweaks. Changes to be committed: new file: .gitignore modified: .gitmodules modified: config.toml new file: content/about.md deleted: content/blog/_index.md deleted: content/blog/first.md deleted: content/blog/second.md new file: content/posts/_index.md new file: content/posts/code_test.md new file: content/posts/good_first_post.md new file: content/posts/later_posts.md new file: content/posts/typography.md deleted: description deleted: index.html deleted: public/blog/first/index.html deleted: public/blog/index.html deleted: public/blog/second/index.html deleted: public/elasticlunr.min.js deleted: public/search_index.en.js deleted: public/typography.css new file: sass/_animate.scss new file: sass/_icons.scss new file: sass/_normalize.scss new file: sass/_predefined.scss new file: sass/_syntax.scss new file: sass/style.scss new file: static/favicon-32x32.png new file: static/favicon.ico new file: static/js/main.js modified: templates/404.html deleted: templates/base.html deleted: templates/blog-page.html deleted: templates/blog.html new file: templates/index.html new file: templates/macros.html new file: templates/page.html new file: templates/section.html new file: templates/tags/list.html new file: templates/tags/single.html new file: themes/404.html new file: themes/config.toml deleted: themes/hermit_zola --- content/posts/good_first_post.md | 52 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 content/posts/good_first_post.md (limited to 'content/posts/good_first_post.md') diff --git a/content/posts/good_first_post.md b/content/posts/good_first_post.md new file mode 100644 index 0000000..7d37ee5 --- /dev/null +++ b/content/posts/good_first_post.md @@ -0,0 +1,52 @@ ++++ +title="This is a good first post" +date=2019-08-23 +draft=false +[taxonomies] +tags=["hello", "blog", "first"] ++++ + +So i went there and did all that but as you know: +* This point was important +* This as well... +* And not to mention this one + + +So i did those other things but: +1. The first thing +2. And the second thing +3. But the third was the `best` + +And then the guy said: +> Man, i'm not gonna be the part of the system + +And showed me this: + + + + +I said factorial this... + +```rust +fn factorial(n: u64) -> u64 { + match n { + 0 => 1, + _ => n * factorial(n-1) + } +} +``` + +Then i shouted + +# Hello + +... and the echo answered: + +## Hello + +### Hello + +#### Hello +[zola!!!][1] + +[1]: https://www.getzola.org/ -- cgit v1.2.3