diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | config.toml | 2 | ||||
-rw-r--r-- | content/_index.md | 5 | ||||
-rw-r--r-- | themes/bare/layouts/index.html | 9 | ||||
-rw-r--r-- | themes/bare/theme.toml | 2 |
5 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..09d1dad --- /dev/null +++ b/config.toml @@ -0,0 +1,2 @@ +baseURL = "https://xengineering.eu/" +theme = "bare" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..015e283 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,5 @@ ++++ +title = "Home sweet home" ++++ + +This page has **bold** and *italics* formatting. diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html new file mode 100644 index 0000000..8dfbda8 --- /dev/null +++ b/themes/bare/layouts/index.html @@ -0,0 +1,9 @@ +<html> + <body> + <h1>Welcome!</h1> + + <h2>{{ .Title }}</h2> + {{ .Content }} + + </body> +</html> diff --git a/themes/bare/theme.toml b/themes/bare/theme.toml new file mode 100644 index 0000000..e1bb4c0 --- /dev/null +++ b/themes/bare/theme.toml @@ -0,0 +1,2 @@ +name = "bare" +license = "AGPLv3" |