about summary refs log tree commit diff
path: root/users/fcuny/notes/config.toml
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-03-07 16:23:59 -0800
committerFranck Cuny <franck@fcuny.net>2021-03-07 16:23:59 -0800
commita3f8e661ad54cfec14ca671ea671e728ffc9bb91 (patch)
tree311e573cd5669a07a88b630f906a66ff0aa52d85 /users/fcuny/notes/config.toml
downloadworld-a3f8e661ad54cfec14ca671ea671e728ffc9bb91.tar.gz
initial site with hugo
Start my website from scratch once more, using hugo to generate it. For
now the layout is pretty simple:
- an index page that will list future notes
- notes should be created under the "content" directory

The theme is custom and I'll try to keep this simple.
Diffstat (limited to 'users/fcuny/notes/config.toml')
-rw-r--r--users/fcuny/notes/config.toml35
1 files changed, 35 insertions, 0 deletions
diff --git a/users/fcuny/notes/config.toml b/users/fcuny/notes/config.toml
new file mode 100644
index 0000000..44080ae
--- /dev/null
+++ b/users/fcuny/notes/config.toml
@@ -0,0 +1,35 @@
+baseURL = "http://fcuny.net/"
+languageCode = "en-us"
+title = "Franck Cuny's Website"
+publishDir = "docs"
+
+[params]
+  homeText = "A collection of articles"
+
+[permalinks]
+  articles = "/:section/:slug/"
+
+[markup]
+  [markup.highlight]
+    anchorLineNos = false
+    codeFences = true
+    guessSyntax = false
+    hl_Lines = ""
+    lineAnchors = ""
+    lineNoStart = 1
+    lineNos = false
+    lineNumbersInTable = true
+    noClasses = true
+    style = "emacs"
+    tabWidth = 2
+
+[mediaTypes."application/atom"]
+suffixes = ["xml"]
+
+[outputFormats.Atom]
+mediaType = "application/atom"
+baseName = "feed"
+isPlainText = false
+
+[outputs]
+home = [ "HTML", "Atom" ]