My Awesome Post from template

A sample template with a very long text to test if it wraps correctly. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Markdown Content Examples

Here's a mix of common Markdown elements to show you how they look:

Lists

  1. An ordered list
  2. Second item
    1. Nested ordered list

Code

You can include code blocks with syntax highlighting:

Go example:

package main

import "fmt"

func main() {
    fmt.Println("Hello, DSBG!")
}

Rust example:

fn main() {
    println!("Hello, DSBG!");
}

Python example:

def main():
    print("Hello, DSBG!")

if __name__ == "__main__":
    main()

JavaScript example:

function main() {
  console.log("Hello, DSBG!");
}

main();

Images

Images are automatically copied to the output directory:

A Butterfly

Text Formatting

Here's some bold and italic text, and some inline code.

Check out this example link.

This is a block quote. Useful for citing resources.