commit cdd523a27b233f4b9b17d6d7e5a9eeb50ce5f959 Author: tastytea Date: Thu Nov 21 00:03:27 2019 +0100 Initial commit. diff --git a/archetypes/default.adoc b/archetypes/default.adoc new file mode 100644 index 0000000..6d960f5 --- /dev/null +++ b/archetypes/default.adoc @@ -0,0 +1,8 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +description: "" +date: "{{ .Date }}" +draft: true +tags: [""] +--- + diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..7f8f0ea --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +description: "" +date: {{ .Date }} +draft: true +tags: +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..04a6dc1 --- /dev/null +++ b/config.toml @@ -0,0 +1,62 @@ +baseURL = "http://text-en.tastytea.de/" +languageCode = "en" +title = "tastytea's text dump." +theme = [ "nocolor" ] +copyright = "CC BY-NC 4.0" + +pygmentsCodefences = true +pygmentsCodeFencesGuessSyntax = false +pygmentsUseClasses = true + +canonifyURLs = false +Paginate = 5 +PaginatePath = "page" + +# enableGitInfo = true + +[params] + subtitle = "Translations and other stuff." + favicon = "favicon.png" + datefmt = "2006-01-02" + showfullcontent = false + opengraph = true + schema = true + + [params.comtodon] + domain = "likeable.space" + +[taxonomies] + tags = "tags" + +[author] + name = "tastytea" + email = "tastytea@tastytea.de" + +[menu] + [[menu.main]] + identifier = "post" + name = "Posts" + url = "/posts/" + weight = 1 + + [[menu.main]] + identifier = "tags" + name = "Tags" + url = "/tags/" + weight = 2 + + [[menu.main]] + identifier = "rss" + name = "RSS" + url = "/index.xml" + weight = 3 + + [[menu.footer]] + name = "Contact" + url = "https://tastytea.de/" + weight = 1 + + [[menu.footer]] + name = "Sourcecode" + url = "https://schlomp.space/tastytea/text-en" + weight = 2 diff --git a/content/posts/test.adoc b/content/posts/test.adoc new file mode 100644 index 0000000..d670e67 --- /dev/null +++ b/content/posts/test.adoc @@ -0,0 +1,21 @@ +--- +title: "Test" +description: "" +date: "2019-11-20T22:49:07+01:00" +draft: true +tags: ["one", "two", "three"] +--- + +== Lala + +* Nunc rutrum turpis sed pede. +* Donec posuere augue in quam. + +Suspendisse potenti. Proin quam nisl, tincidunt et, mattis eget, convallis nec, +purus. Aliquam erat volutpat. Nunc eleifend leo vitae magna. In id erat non +orci commodo lobortis. Proin neque massa, cursus ut, gravida ut, lobortis eget, +lacus. Sed diam. Praesent fermentum tempor tellus. Nullam tempus. Mauris ac +felis vel velit tristique imperdiet. Donec at pede. Etiam vel neque nec dui +dignissim bibendum. Vivamus id enim. Phasellus neque orci, porta a, aliquet +quis, semper a, massa. Phasellus purus. Pellentesque tristique imperdiet +tortor. Nam euismod tellus id erat. diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..260de8f Binary files /dev/null and b/static/favicon.png differ diff --git a/themes/nocolor b/themes/nocolor new file mode 120000 index 0000000..e2ed979 --- /dev/null +++ b/themes/nocolor @@ -0,0 +1 @@ +/home/tastytea/Projekte/theme-hugo-nocolor \ No newline at end of file