27 lines
304 B
Markdown
27 lines
304 B
Markdown
+++
|
|
title = 'My First Post'
|
|
date = 2024-08-10T17:25:00-06:00
|
|
draft = true
|
|
+++
|
|
# Introduction
|
|
|
|
Hello, I am trying out this new [Hugo](https://gohugo.io) template for my *tech blog*.
|
|
|
|
# Test
|
|
|
|
- Equation 1:
|
|
|
|
$$O(n^2)$$
|
|
|
|
More text
|
|
|
|
## Code block
|
|
```cpp
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
|
|
return 0;
|
|
}
|
|
```
|