diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md index 7652ee2..c69a345 100644 --- a/content/posts/my-first-post.md +++ b/content/posts/my-first-post.md @@ -1,5 +1,25 @@ +++ -title = 'My First Post' +title = 'Hi Jakob' date = 2024-05-02T10:06:07+10:00 draft = false + +# This is heading 1 +hey there, this is some text + +## this is a heading 2 + +```python +# this is some python code +# Import necessary libraries/modules +import os +import sys + +# Define main function +def main(): + # Your code here + +# Entry point of the program +if __name__ == "__main__": + main() +``` +++