commit d31b0385b3c8f8f2def23bad6ab2ab75ffcb1c81
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Sat, 27 Apr 2024 20:49:18 +0200
Initial state of start page
Diffstat:
8 files changed, 105 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,52 @@
+# Build and Release Folders
+bin/
+bin-debug/
+bin-release/
+
+# Other files and folders
+.settings/
+
+# lock
+*.lock
+
+# Executables
+*.swf
+*.air
+*.ipa
+*.apk
+*.exe
+
+# Hugo
+public/
+.hugo_build.lock
+resources/_gen/
+
+# Backup Files
+*.markdown~
+*.md~
+
+# Apache
+.htpasswd
+
+# Logs
+logs
+*.log
+
+# Runtime data
+pids
+*.pid
+*.seed
+
+# Build directories
+public
+dist
+
+# Dependency directory
+# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
+node_modules
+package-lock.json
+bower_components
+
+# Mac File System File
+.DS_Store
+
diff --git a/.gitmodules b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "themes/bootstrap-bp-hugo-startpage"]
+ path = themes/bootstrap-bp-hugo-startpage
+ url = https://github.com/spech66/bootstrap-bp-hugo-startpage
diff --git a/archetypes/default.md b/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/assets/img/bg.jpg b/assets/img/bg.jpg
Binary files differ.
diff --git a/config.toml b/config.toml
@@ -0,0 +1,13 @@
+baseURL = ''
+languageCode = 'en-us'
+title = "JayVii's Startpage"
+theme = 'bootstrap-bp-hugo-startpage'
+
+[params]
+startPageColumns = true
+# welcomeText = "Startpage!"
+
+[[params.searchEngines]]
+ name = ""
+ activated = true
+ url = "https://search.jayvii.de"
diff --git a/data/links.yml b/data/links.yml
@@ -0,0 +1,30 @@
+---
+- group: Social & News
+ items:
+ - title: Social
+ url: https://social.jayvii.de
+ icon: fas fa-hashtag
+ - title: Miniflux
+ url: https://rss.jayvii.de
+ icon: fas fa-rss
+- group: Entertainment
+ items:
+ - title: Videos
+ url: https://rss.jayvii.de/category/11/entries
+ icon: fab fa-youtube
+ - title: Livestreams
+ url: https://twitch.jayvii.de
+ icon: fab fa-twitch
+- group: Organisation
+ items:
+ - title: Links
+ url: https://links.jayvii.de
+ icon: fas fa-link
+ - title: Books
+ url: https://books.jayvii.de
+ icon: fas fa-book
+# - group: Websites
+# items:
+# - title: Website
+# url: https://www.jayvii.de
+# icon: fas fa-globe
diff --git a/static/images/bg.jpg b/static/images/bg.jpg
Binary files differ.
diff --git a/themes/bootstrap-bp-hugo-startpage b/themes/bootstrap-bp-hugo-startpage
@@ -0,0 +1 @@
+Subproject commit d9076e47545d9c3c916c472d22d9340d725bdcf7