First post

· 1min · Nick, Ann

This is my first blog post.
This is second sentence.

TODO:

  • add visible RSS link somewhere on site
  • add picture on about-me page
  • figure out operations on pictures you can do with zola
  • figure out a how to use relative path for all links when building blog

as filename.txt

let hello = "world";
test = "some string"
my_bool = True
print("hello world")

class Person(object):
    def __init__(self, name):
        self.name = name
    def print_name(self):
        print(self.name)