From: Mauro Scomparin Date: Sun, 6 Sep 2020 16:49:58 +0000 (+0200) Subject: first commit X-Git-Url: https://git.scompo.it/?a=commitdiff_plain;h=bef4e937e8fa9408e00a16366350265b5f978974;p=blog.scompo.it.git first commit --- bef4e937e8fa9408e00a16366350265b5f978974 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e77a43e --- /dev/null +++ b/.gitmodules @@ -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 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -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 index 0000000..ae0f831 --- /dev/null +++ b/archetypes/posts.md @@ -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 index 0000000..7b2a257 --- /dev/null +++ b/config.toml @@ -0,0 +1,40 @@ +baseURL = "https://blog.scompo.it/" +languageCode = "en-us" +title = "scompo blog" +theme = "kiss" +copyright = "© Mauro Scomparin 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 index 0000000..83c4e9c --- /dev/null +++ b/content/posts/my-first-post.md @@ -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 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 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 index 0000000..f6b1406 --- /dev/null +++ b/themes/kiss @@ -0,0 +1 @@ +Subproject commit f6b14065ab0afeb36af368d08bdbcab6d7282143