From 95f003ad9280191fb62940a4f43863ae490808b7 Mon Sep 17 00:00:00 2001
From: dkoschitzki <dominic.koschitzki@h-da.de>
Date: Fri, 18 Nov 2022 11:26:23 +0100
Subject: [PATCH] ignore

---
 .gitignore             |   6 +-
 fachschaft/config.yaml | 152 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 153 insertions(+), 5 deletions(-)
 create mode 100644 fachschaft/config.yaml

diff --git a/.gitignore b/.gitignore
index e910d85..85e7c1d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1 @@
-public/
-.hugo_build.lock
-themes/ananke
-go.mod
-go.sum
+/.idea/
diff --git a/fachschaft/config.yaml b/fachschaft/config.yaml
new file mode 100644
index 0000000..06609df
--- /dev/null
+++ b/fachschaft/config.yaml
@@ -0,0 +1,152 @@
+baseURL: "https://fachschaft-informatik.h-da.io/" # if your site is in 'https', then make sure your base url isn't written using 'http' otherwise your sitemap would contain http (as opposeed to https) URLs. This would affect Google indexing of your URLs.
+title: Fachschaft Informatik
+paginate: 2
+theme: PaperMod
+
+enableInlineShortcodes: true
+enableRobotsTXT: true
+buildDrafts: true
+buildFuture: true
+buildExpired: true
+enableEmoji: true
+pygmentsUseClasses: true
+#googleAnalytics: UA-123-45
+
+minify:
+  disableXML: true
+  # minifyOutput: true
+
+languages:
+  en:
+    languageName: "English"
+    weight: 1
+    taxonomies:
+      category: categories
+      tag: tags
+      series: series
+    menu:
+      main:
+        - name: FSR - Fachschaftsrat
+          url: fsr/
+          weight: 1
+        - name: Aktive Fachschaft
+          url: aktive/
+          weight: 2
+        - name: Infotreff
+          url: infotreff/
+          weight: 3
+        - name: Tags
+          url: tags/
+          weight: 10
+        - name: WiKi
+          url: https://wiki.fbihome.de/
+        - name: Discord
+          url: https://discord.gg/ahpmTvhVmp
+        - name: Archiv
+          url: archives/
+        - name: Suche
+          url: search/
+
+outputs:
+  home:
+    - HTML
+    - RSS
+    - JSON
+
+params:
+  env: production # to enable google analytics, opengraph, twitter-cards and schema.
+  description: "Theme PaperMod - https://github.com/adityatelange/hugo-PaperMod"
+
+  defaultTheme: auto
+  ShowShareButtons: true
+  ShowReadingTime: false
+  # disableSpecial1stPost: true
+  displayFullLangName: true
+  ShowPostNavLinks: true
+  ShowBreadCrumbs: true
+  ShowCodeCopyButtons: true
+  ShowRssButtonInSectionTermList: true
+  ShowToc: true
+  # comments: false
+  images: ["papermod-cover.png"]
+
+  homeInfoParams:
+    Title: "Willkommen!"
+    Content: >
+      Wir begrüßen Dich ganz herzlich auf der offiziellen Seite der Fachschaft Informatik!
+
+  editPost:
+    URL: "https://code.fbi.h-da.de/istdokosc/fsi_test/-/tree/master/content"
+    Text: "Änderung vorschlagen" # edit text
+    appendFilePath: true # to append file path to Edit link
+
+  # label:
+  #     text: "Home"
+  #     icon: icon.png
+  #     iconHeight: 35
+
+  # analytics:
+  #     google:
+  #         SiteVerificationTag: "XYZabc"
+
+  assets:
+    disableHLJS: false
+  #     favicon: "<link / abs url>"
+  #     favicon16x16: "<link / abs url>"
+  #     favicon32x32: "<link / abs url>"
+  #     apple_touch_icon: "<link / abs url>"
+  #     safari_pinned_tab: "<link / abs url>"
+
+  # cover:
+  #     hidden: true # hide everywhere but not in structured data
+  #     hiddenInList: true # hide on list pages and home
+  #     hiddenInSingle: true # hide on single page
+
+  fuseOpts:
+     isCaseSensitive: false
+     shouldSort: true
+     location: 0
+     distance: 1000
+     threshold: 0.4
+     minMatchCharLength: 0
+     keys: ["title", "permalink", "summary", "content"]
+
+
+
+markup:
+  goldmark:
+    renderer:
+      unsafe: true
+  highlight:
+    noClasses: false
+    # anchorLineNos: true
+    # codeFences: true
+    # guessSyntax: true
+    # lineNos: true
+    # style: monokai
+
+privacy:
+  vimeo:
+    disabled: false
+    simple: true
+
+  twitter:
+    disabled: false
+    enableDNT: true
+    simple: true
+
+  instagram:
+    disabled: false
+    simple: true
+
+  youtube:
+    disabled: false
+    privacyEnhanced: true
+
+services:
+  instagram:
+    disableInlineCSS: true
+  twitter:
+    disableInlineCSS: true
+
+pluralizeListTitles: false
\ No newline at end of file
-- 
GitLab