first commit

This commit is contained in:
Dave Umrysh
2021-04-12 15:34:26 -06:00
commit 365a87299a
79 changed files with 14658 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"
theme = "dimension"

View File

@@ -0,0 +1,6 @@
---
title: Your Name
description: A great human
background: "images/bg.jpg"
logo: "https://upload.wikimedia.org/wikipedia/commons/8/8e/Font_Awesome_5_regular_gem.svg"
---

View File

@@ -0,0 +1,52 @@
---
title: elements
---
## Table of contents
- [Table of contents](#table-of-contents)
- [Text](#text)
- [Code](#code)
- [Python](#python)
- [C/C++](#cc)
- [Bash](#bash)
- [Tables](#tables)
## Text
Some example text
## Code
### Python
```python
def foo():
print ("This is a python function")
```
### C/C++
```C
void foo(){
prinf("%s\n", "This is a C function")
}
```
### Bash
```bash
# This is a bash command
cd dir && echo $PWD;
# Return
exit 0;
```
## Tables
| Pages | Elements |
| ----- | -------- |
| 1 | Text |
| 2 | Code |
| 3 | Tables |

View File

@@ -0,0 +1,6 @@
---
title: "Posts"
description: "A collection of posts"
icon: "flag"
---