first commit
This commit is contained in:
4
themes/dimension/exampleSite/config.toml
Normal file
4
themes/dimension/exampleSite/config.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
baseURL = "http://example.org/"
|
||||
languageCode = "en-us"
|
||||
title = "My New Hugo Site"
|
||||
theme = "dimension"
|
||||
6
themes/dimension/exampleSite/content/_index.md
Normal file
6
themes/dimension/exampleSite/content/_index.md
Normal 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"
|
||||
---
|
||||
52
themes/dimension/exampleSite/content/elements.md
Normal file
52
themes/dimension/exampleSite/content/elements.md
Normal 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 |
|
||||
6
themes/dimension/exampleSite/content/posts/_index.md
Normal file
6
themes/dimension/exampleSite/content/posts/_index.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "Posts"
|
||||
description: "A collection of posts"
|
||||
icon: "flag"
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user