From 6f51927e180fe6c6ea88806d245bd886df23f53a Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sun, 3 Mar 2024 20:56:15 +0200 Subject: Made changes regarding the styling, config and added content and a shortcode for youtube embeds. Changes to be committed: modified: config.toml modified: content/about.md modified: content/posts/How I made this Blog with Zola.md new file: content/posts/some_cool_stuff.md modified: content/posts/typography.md modified: sass/_normalize.scss modified: sass/_predefined.scss modified: sass/style.scss modified: templates/index.html new file: templates/shortcodes/youtube.html --- content/posts/some_cool_stuff.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 content/posts/some_cool_stuff.md (limited to 'content/posts/some_cool_stuff.md') 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. -- cgit v1.2.3