aboutsummaryrefslogtreecommitdiff
path: root/wwwroot
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-10-25 14:35:32 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-10-25 14:41:11 +0200
commit8c2089dd8117835cfbfaed2c8f50cd34e666487f (patch)
tree5954b63122b1f71903469907a76ac74e36f81ec7 /wwwroot
parent47a838f292439b9d1ce921a79341e4a7170d0810 (diff)
Added CMake install targets and reworked wwwroot folder structure.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'wwwroot')
-rw-r--r--wwwroot/blog/my-second-blog-entry.json8
-rw-r--r--wwwroot/blog/my-second-blog-entry.md5
-rw-r--r--wwwroot/blog/my-third-blog-entry.json8
-rw-r--r--wwwroot/blog/my-third-blog-entry.md2
-rw-r--r--wwwroot/blog/my-very-first-blog-entry.json8
-rw-r--r--wwwroot/blog/my-very-first-blog-entry.md8
-rw-r--r--wwwroot/pages/index.md2
-rw-r--r--wwwroot/static/test.txt1
8 files changed, 42 insertions, 0 deletions
diff --git a/wwwroot/blog/my-second-blog-entry.json b/wwwroot/blog/my-second-blog-entry.json
new file mode 100644
index 0000000..ecb2b8b
--- /dev/null
+++ b/wwwroot/blog/my-second-blog-entry.json
@@ -0,0 +1,8 @@
+{
+ "title": "Second blog entry.",
+ "tags": [ "bla" ],
+ "author": "lns",
+ "createDate": "23.02.1989 23:59",
+ "publishDate": "30.12.2020 1:00",
+ "published": true
+}
diff --git a/wwwroot/blog/my-second-blog-entry.md b/wwwroot/blog/my-second-blog-entry.md
new file mode 100644
index 0000000..054046a
--- /dev/null
+++ b/wwwroot/blog/my-second-blog-entry.md
@@ -0,0 +1,5 @@
+Text
+=======
+
+*lorem* **ipsum**
+~~striked~~
diff --git a/wwwroot/blog/my-third-blog-entry.json b/wwwroot/blog/my-third-blog-entry.json
new file mode 100644
index 0000000..9682cd2
--- /dev/null
+++ b/wwwroot/blog/my-third-blog-entry.json
@@ -0,0 +1,8 @@
+{
+ "title": "Third.",
+ "tags": [ "test" ],
+ "author": "lns",
+ "createDate": "24.02.1989 23:59",
+ "publishDate": "31.12.2020 1:00",
+ "published": false
+}
diff --git a/wwwroot/blog/my-third-blog-entry.md b/wwwroot/blog/my-third-blog-entry.md
new file mode 100644
index 0000000..292b1e1
--- /dev/null
+++ b/wwwroot/blog/my-third-blog-entry.md
@@ -0,0 +1,2 @@
+Text
+=======
diff --git a/wwwroot/blog/my-very-first-blog-entry.json b/wwwroot/blog/my-very-first-blog-entry.json
new file mode 100644
index 0000000..52f52f7
--- /dev/null
+++ b/wwwroot/blog/my-very-first-blog-entry.json
@@ -0,0 +1,8 @@
+{
+ "title": "My first blog entry!",
+ "tags": [ "test", "bla" ],
+ "author": "lns",
+ "createDate": "22.02.1989 23:59",
+ "publishDate": "31.12.2020 1:00",
+ "published": true
+}
diff --git a/wwwroot/blog/my-very-first-blog-entry.md b/wwwroot/blog/my-very-first-blog-entry.md
new file mode 100644
index 0000000..017cbfc
--- /dev/null
+++ b/wwwroot/blog/my-very-first-blog-entry.md
@@ -0,0 +1,8 @@
+Text
+=======
+
+`test`
+
+```
+some code...
+```
diff --git a/wwwroot/pages/index.md b/wwwroot/pages/index.md
new file mode 100644
index 0000000..99bd385
--- /dev/null
+++ b/wwwroot/pages/index.md
@@ -0,0 +1,2 @@
+*Just HTML*
+~~plaintext~~
diff --git a/wwwroot/static/test.txt b/wwwroot/static/test.txt
new file mode 100644
index 0000000..50bb49a
--- /dev/null
+++ b/wwwroot/static/test.txt
@@ -0,0 +1 @@
+This is a static text file.