diff --git a/.gitignore b/.gitignore index a72bcc9..5e401f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,22 @@ -public/ .idea -go.mod -go.sum + +# Created by https://www.toptal.com/developers/gitignore/api/hugo +# Edit at https://www.toptal.com/developers/gitignore?templates=hugo + +### Hugo ### +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock + +# End of https://www.toptal.com/developers/gitignore/api/hugo + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b161684..dc206c7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,8 @@ -image: registry.gitlab.com/pages/hugo/hugo:latest - -default: - before_script: - - apk add --update --no-cache git go - - hugo mod init gitlab.com/pages/hugo - - hugo mod get -u github.com/adityatelange/hugo-PaperMod +image: registry.gitlab.com/pages/hugo/hugo_extended:latest pages: script: - - hugo + - hugo --minify artifacts: paths: - public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..a3a7a11 --- /dev/null +++ b/config.toml @@ -0,0 +1,33 @@ +baseURL = 'https://fime.faerb.it/' +languageCode = 'en-us' +title = 'fime - Simple time tracking' +theme = "ace-documentation" + +[params] +disableSearch = true +disableReadmoreNav = true +menushortcutssnewtab = true +toc = true + + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true + +[outputs] +home = [ "HTML"] + +[[menu.shortcuts]] +name = "" +url = "https://gitlab.com/faerbit/fime" +weight = 1 + +[[menu.shortcuts]] +name = "" +url = "https://gitlab.com/faerbit/fime/-/releases/permalink/latest/downloads/bin/fime_windows_amd64.exe" +weight = 2 +[[menu.shortcuts]] +name = "" +url = "https://gitlab.com/faerbit/fime/-/releases/permalink/latest/downloads/bin/fime_linux_amd64" +weight = 3 diff --git a/config.yml b/config.yml deleted file mode 100644 index c8ae409..0000000 --- a/config.yml +++ /dev/null @@ -1,23 +0,0 @@ -theme: "github.com/adityatelange/hugo-PaperMod" -baseURL: 'https://fime.faerb.it' -languageCode: 'en-us' -title: 'fime - Simple time tracking' -copyright: '© 2022 [fime](https://fime.faerb.it)' -params: - label: - text: 'fime' - defaultTheme: light - disableThemeToggle: true - profileMode: - enabled: true - title: 'fime' - imageUrl: clock.svg - subtitle: Simple time tracking - buttons: - - name: Issues - url: "https://gitlab.com/faerbit/fime/-/issues" - - name: Releases - url: "https://gitlab.com/faerbit/fime/-/releases" - socialIcons: - - name: Gitlab - url: "https://gitlab.com/faerbit/fime" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..3d70536 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,101 @@ +--- +title: fime +--- +{{< lead >}} +fime is a simple time tracking tool, to help you track how much time you spent on each task on a busy day. +{{< /lead >}} + +## Features + +
+
+
+
+ +
+
+
+ Multi-platform. +
+

+ Written with Python and Qt. Compatible with all major desktop operating systems +

+
+
+
+
+
+
+ +
+
+
+ Simply functional. +
+

+ Does what you want, when you ask it to and then gets out of the way +

+
+
+
+
+
+
+ +
+
+
+ Battle tested. +
+

+ Used by multiple professionals for several years without problems +

+
+
+
+
+
+
+ +
+
+
+ Open source. +
+

+ Completely open source. Licensed under MIT +

+
+
+
+
+
+
+ +
+
+
+ Jira integrated. +
+

+ Import issues from Jira and upload time worked on them effortlessly +

+
+
+
+
+
+
+ +
+
+
+ Easy installation. +
+

+ Just download the executable and run it +

+
+
+
+
diff --git a/hugo_dev_server.sh b/hugo_dev_server.sh deleted file mode 100755 index fd910e5..0000000 --- a/hugo_dev_server.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -[ -e go.mod ] || hugo mod init gitlab.com/pages/hugo -hugo mod get -u github.com/adityatelange/hugo-PaperMod -hugo server diff --git a/layouts/partials/tableofcontents.html b/layouts/partials/tableofcontents.html new file mode 100644 index 0000000..93b2d41 --- /dev/null +++ b/layouts/partials/tableofcontents.html @@ -0,0 +1 @@ + diff --git a/static/clock.svg b/static/clock.svg deleted file mode 100644 index b04c55d..0000000 --- a/static/clock.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/ace-documentation b/themes/ace-documentation new file mode 160000 index 0000000..10892bc --- /dev/null +++ b/themes/ace-documentation @@ -0,0 +1 @@ +Subproject commit 10892bc2a6f35affa2159c4ccea7117cce20810a