first commit
authorMauro Scomparin <scompo@gmail.com>
Sun, 6 Sep 2020 16:49:58 +0000 (18:49 +0200)
committerMauro Scomparin <scompo@gmail.com>
Sun, 6 Sep 2020 16:49:58 +0000 (18:49 +0200)
.gitmodules [new file with mode: 0644]
archetypes/default.md [new file with mode: 0644]
archetypes/posts.md [new file with mode: 0644]
config.toml [new file with mode: 0644]
content/posts/my-first-post.md [new file with mode: 0644]
static/images/venice.jpg [new file with mode: 0644]
static/venice.jpg [new file with mode: 0644]
themes/kiss [new submodule]

diff --git a/.gitmodules b/.gitmodules
new file mode 100644 (file)
index 0000000..e77a43e
--- /dev/null
@@ -0,0 +1,3 @@
+[submodule "themes/kiss"]
+       path = themes/kiss
+       url = https://github.com/ribice/kiss.git
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644 (file)
index 0000000..00e77bd
--- /dev/null
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/archetypes/posts.md b/archetypes/posts.md
new file mode 100644 (file)
index 0000000..ae0f831
--- /dev/null
@@ -0,0 +1,7 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+tags: [blog]
+---
+
diff --git a/config.toml b/config.toml
new file mode 100644 (file)
index 0000000..7b2a257
--- /dev/null
@@ -0,0 +1,40 @@
+baseURL = "https://blog.scompo.it/"
+languageCode = "en-us"
+title = "scompo blog"
+theme = "kiss"
+copyright = "&copy; <a href=\"https://blog.scompo.it/\">Mauro Scomparin</a> 2020"
+Paginate = 5
+enableRobotsTXT = true
+
+[params.rss] # Adding this tag enables RSS feed
+includeContent = true
+authorName = "Mauro Scomparin"
+authorEmail = "scompo@gmail.com"
+
+[params.info]
+homeTitle = "Home" # Title for home page
+poweredby = true
+related = true
+codeCopy = true
+taxonomiesCount = true
+
+[params.social]
+twitter = "scommpo"
+github = "scompo"
+email = "scompo@gmail.com"
+linkedin = "scompo"
+facebook = ""
+instagram = "mscompo"
+codepen = ""
+rss = "index.xml"
+
+[params.social.config]
+platforms = ["github","twitter","instagram","email","linkedin","instagram"]
+
+[taxonomies]
+tag ="tags"
+
+
+[blackfriday]
+hrefTargetBlank = true
+
diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md
new file mode 100644 (file)
index 0000000..83c4e9c
--- /dev/null
@@ -0,0 +1,17 @@
+---
+title: "My First Post"
+date: 2020-09-06T18:25:57+02:00
+draft: false
+tags: [blog, first, venice]
+---
+
+This is the first post of the new blog.
+
+More to come hopefully.
+
+Let's post an image of venice.
+
+![Venice](/images/venice.jpg)
+
+Have a nice day :)
+
diff --git a/static/images/venice.jpg b/static/images/venice.jpg
new file mode 100644 (file)
index 0000000..ff34c0d
Binary files /dev/null and b/static/images/venice.jpg differ
diff --git a/static/venice.jpg b/static/venice.jpg
new file mode 100644 (file)
index 0000000..ff34c0d
Binary files /dev/null and b/static/venice.jpg differ
diff --git a/themes/kiss b/themes/kiss
new file mode 160000 (submodule)
index 0000000..f6b1406
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit f6b14065ab0afeb36af368d08bdbcab6d7282143