diff options
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/How I made this Blog with Zola.md | 8 | ||||
-rw-r--r-- | content/posts/some_cool_stuff.md | 40 | ||||
-rw-r--r-- | content/posts/typography.md | 3 |
3 files changed, 49 insertions, 2 deletions
diff --git a/content/posts/How I made this Blog with Zola.md b/content/posts/How I made this Blog with Zola.md index b5aa84a..520ee1c 100644 --- a/content/posts/How I made this Blog with Zola.md +++ b/content/posts/How I made this Blog with Zola.md @@ -11,4 +11,10 @@ disable_comments = true toc = false +++ -LOLZ +Hello, World! This is my first post on my new blog. I'm excited to share my thoughts with you. + +First off, how did I make this? I used Zola - a static site generator written in Rust. It's fast, easy to use, and has lots of features. + +Design : markdown rendered pages ; css-only animations and eyecandy ; minimal js ; must have atom rss + +You can find the source code for this blog on my GitHub as well as on [my own git instance](https://git.alphara.art/blog). diff --git a/content/posts/some_cool_stuff.md b/content/posts/some_cool_stuff.md new file mode 100644 index 0000000..e8d24a4 --- /dev/null +++ b/content/posts/some_cool_stuff.md @@ -0,0 +1,40 @@ ++++ +title = "Some cool stuff" +date = 2024-03-02T00:00:00+03:00 +draft = false + +[taxonomies] +tags = ["test"] + +[extra] +disable_comments = true +toc = true ++++ + +Let's test manual anchor link declaration: + +# Heading 1 {#h1} + +## Heading 2 + +Nice, let's test internal linking now: [my link](@/posts/typography.md#h1) + +--- + +Nice! Now let's test shortcodes with a youtube iframe embed video: + +{{ youtube(id="dCKeXuVHl1o") }} + +--- + +{{ youtube(id="dCKeXuVHl1o", autoplay=true) }} + +--- + +{{ youtube(id="dCKeXuVHl1o", autoplay=true) }} + +--- + +{{ youtube(id="9h2Z0I2jxRU", autoplay=true) }} + +Cool! All these features should be plenty enough for now. I will add some others as we go. diff --git a/content/posts/typography.md b/content/posts/typography.md index 3b554cd..9a7d074 100644 --- a/content/posts/typography.md +++ b/content/posts/typography.md @@ -7,6 +7,7 @@ draft = false tags = ["test", "original_post"] [extra] +math = true disable_comments = true toc = true +++ @@ -27,7 +28,7 @@ Inline styles to test: --- -# Heading 1 +# Heading 1 {#h1} ## Heading 2 |