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/about.md | 6 ++-- content/posts/How I made this Blog with Zola.md | 8 ++++- content/posts/some_cool_stuff.md | 40 +++++++++++++++++++++++++ content/posts/typography.md | 3 +- 4 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 content/posts/some_cool_stuff.md (limited to 'content') diff --git a/content/about.md b/content/about.md index d96d597..0e956dd 100644 --- a/content/about.md +++ b/content/about.md @@ -2,6 +2,8 @@ title = "About" +++ -Just a big section that needs updated. +Hi there! My name is Iustin. I'm a math student with a background in AI development and research. This blog represents my attempt at sharing my personal thoughts and experiences as a follow-through venture in AI research, mathematics, philosophy and Linux related things, as well as a bunch of other things that define my interests. -Welp, see you soon. +I hope to make interesting, qualitative, useful and fun content for you to read and learn from. I hope you will enjoy it! + +Welcome to my corner of organised anarchy on the internet! Feel free to reach out to me if you have any questions or comments or would like to chat. I am always happy and open to meet passionate people. 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 -- cgit v1.2.3