commit 49f9a7b10b7b2f3674aeb952d1605516b2edf04d Author: Thomas Dehaeze Date: Mon Apr 20 18:27:10 2020 +0200 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..709ae90 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +nohup.out + diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..01a7627 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/clean-even"] + path = themes/clean-even + url = https://github.com/tdehaeze/clean-even 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..dc4bf0b --- /dev/null +++ b/config.toml @@ -0,0 +1,155 @@ +baseURL = "http://localhost:1313/" +languageCode = "en" +defaultContentLanguage = "en" +title = "My digital brain" +preserveTaxonomyNames = true +enableRobotsTXT = true +enableEmoji = true +theme = "clean-even" +enableGitInfo = false + +# Syntax highlighting by Chroma. NOTE: Don't enable `highlightInClient` and `chroma` at the same time! +pygmentsOptions = "linenos=table" +pygmentsCodefences = true +pygmentsUseClasses = true +pygmentsCodefencesGuessSyntax = true + +hasCJKLanguage = false +paginate = 5 +copyright = "" + +[author] +name = "Thomas Dehaeze" + +[sitemap] +changefreq = "weekly" +priority = 0.5 +filename = "sitemap.xml" + +[[menu.main]] +name = "Home" +weight = 10 +identifier = "home" +url = "/" +# [[menu.main]] +# name = "Blog" +# weight = 20 +# identifier = "posts" +# url = "/posts/" +[[menu.main]] +name = "Zettels" +weight = 30 +identifier = "zettels" +url = "/zettels/" + +[[menu.main]] +name = "Books" +weight = 40 +identifier = "book" +url = "/book/" + +[[menu.main]] +name = "Papers" +weight = 50 +identifier = "paper" +url = "/paper/" + +[params] +version = "4.x" +debug = false + +since = "2020" +gitRepo = "" + +logoTitle = "Digital Brain" +keywords = ["org-roam","research"] +description = "My personnal digital brain" + +archivePaginate = 5 + +# show 'xx Posts In Total' in archive page ? +showArchiveCount = false + +# The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/ +dateFormatToUse = "2006-01-02" + +# show word count and read time ? +moreMeta = false + +# Syntax highlighting by highlight.js +highlightInClient = false + +toc = true +autoCollapseToc = true + +# mathjax +mathjax = true +mathjaxEnableSingleDollar = true +mathjaxEnableAutoNumber = true +mathjaxUseLocalFiles = false # You should install mathjax in `your-site/static/lib/mathjax` + +postMetaInFooter = false +linkToMarkDown = false +contentCopyright = '' + +# Link custom CSS and JS assets +# (relative to /static/css and /static/js respectively) +customCSS = [] +customJS = [] + +uglyURLs = false + +# load these files from public cdn +[params.publicCDN] +enable = true +jquery = '' +slideout = '' +fancyboxJS = '' +fancyboxCSS = '' +timeagoJS = '' +timeagoLocalesJS = '' + +# Display a message at the beginning of an article to warn the readers that it's content may be outdated. +[params.outdatedInfoWarning] +enable = false +hint = 30 +warn = 180 + +[params.gitment] # Gitment is a comment system based on GitHub issues. see https://github.com/imsun/gitment +owner = "" # Your GitHub ID +repo = "" # The repo to store comments +clientId = "" # Your client ID +clientSecret = "" # Your client secret + +[params.utterances] # https://utteranc.es/ +owner = "" # Your GitHub ID +repo = "" # The repo to store comments + +[params.gitalk] # Gitalk is a comment system based on GitHub issues. see https://github.com/gitalk/gitalk +owner = "" # Your GitHub ID +repo = "" # The repo to store comments +clientId = "" # Your client ID +clientSecret = "" # Your client secret + +[params.valine] +enable = false + +[params.busuanzi] +enable = false + +[params.social] +a-email = "mailto:dehaeze.thomas@gmail.com" +g-github = "https://github.com/tdehaeze/" + +# See https://gohugo.io/about/hugo-and-gdpr/ +[privacy] +[privacy.googleAnalytics] +anonymizeIP = true +[privacy.youtube] +privacyEnhanced = true + +[markup] + defaultMarkdownHandler = "goldmark" + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true diff --git a/readme.org b/readme.org new file mode 100644 index 0000000..e69de29 diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png new file mode 100644 index 0000000..cb1ca53 Binary files /dev/null and b/static/android-chrome-192x192.png differ diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png new file mode 100644 index 0000000..8f66b2a Binary files /dev/null and b/static/android-chrome-512x512.png differ diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png new file mode 100644 index 0000000..8f66b2a Binary files /dev/null and b/static/apple-touch-icon.png differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..6113ea6 Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..6113ea6 Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..cffc8fb Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/mstile-150x150.png b/static/mstile-150x150.png new file mode 100644 index 0000000..8f66b2a Binary files /dev/null and b/static/mstile-150x150.png differ diff --git a/themes/clean-even b/themes/clean-even new file mode 160000 index 0000000..d5f9575 --- /dev/null +++ b/themes/clean-even @@ -0,0 +1 @@ +Subproject commit d5f9575a83ff165c5a560b68a49493459ec5f326