commit 2c783134db79d247039c46e0d378429a9ffb60a6 Author: Aloïs Micard Date: Wed May 20 08:42:51 2020 +0200 Initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..a6851ba --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/terminal"] + path = themes/terminal + url = https://github.com/panr/hugo-theme-terminal.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/config.toml b/config.toml new file mode 100644 index 0000000..9d503b6 --- /dev/null +++ b/config.toml @@ -0,0 +1,35 @@ +baseURL = "https://blog-beta.creekorful.com" +languageCode = "en-us" +title = "Aloïs Micard | Tech blog" +theme = "terminal" + +[params] + fullWidthTheme = false + centerTheme = true + themeColor = "blue" + +[languages] + [languages.en] + languageName = "English" + title = "Aloïs Micard" + subtitle = "Tech Blog" + owner = "Aloïs Micard" + keywords = "" + copyright = "" + menuMore = "Show more" + readMore = "Read more" + readOtherPosts = "Read other posts" + + [languages.en.params.logo] + logoText = "Aloïs Micard | Tech blog" + logoHomeLink = "/" + + [languages.en.menu] + [[languages.en.menu.main]] + identifier = "about" + name = "About" + url = "/about" + [[languages.en.menu.main]] + identifier = "showcase" + name = "Showcase" + url = "/showcase" diff --git a/content/posts/hello-world.md b/content/posts/hello-world.md new file mode 100644 index 0000000..4416048 --- /dev/null +++ b/content/posts/hello-world.md @@ -0,0 +1,10 @@ ++++ +title = "Hello world" +date = "" +author = "" +cover = "" +tags = ["", ""] +keywords = ["", ""] +description = "This is my first post using Hugo" +showFullContent = false ++++ diff --git a/themes/terminal b/themes/terminal new file mode 160000 index 0000000..58ba445 --- /dev/null +++ b/themes/terminal @@ -0,0 +1 @@ +Subproject commit 58ba445c9f9eef283f6c1659e0e2364e9652aa9a