diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..37d18db --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,27 @@ +name: Build release images +on: + push: + tags: + - "*.*.*" + +jobs: + build-container: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Login to registry + uses: docker/login-action@v3 + with: + registry: registry.odit.services + username: ${{ vars.REGISTRY_USERNAME }} + password: ${{ secrets.REGISTRY_PASSWORD }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build and push + uses: docker/build-push-action@v6 + with: + push: true + tags: | + ${{ vars.REGISTRY }}/lfk/docs:${{ github.ref_name }} + platforms: linux/amd64,linux/arm64 diff --git a/Dockerfile b/Dockerfile index 038a6ac..3e03d5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM hugomods/hugo:exts AS build WORKDIR /app COPY . /app/ -COPY .git /app/.git +# COPY .git /app/.git RUN hugo FROM hugomods/hugo:nginx diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..8eff49e --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,11 @@ +@font-face { + font-family: "Athiti"; + src: url("/fonts/athiti.ttf"); +} +html, +:host { + font-family: "Athiti"; +} +.content { + font-family: "Athiti"; +} diff --git a/config.yaml b/config.yaml index f0c9da4..c2e43b1 100644 --- a/config.yaml +++ b/config.yaml @@ -7,7 +7,6 @@ module: - path: github.com/imfing/hextra enableRobotsTXT: true -enableGitInfo: true hasCJKLanguage: true outputs: @@ -78,7 +77,6 @@ menu: params: description: Dokumentation für das Lauf für Kaya! Läufersystem. - displayUpdatedDate: true navbar: displayTitle: true displayLogo: true diff --git a/content/user/users.de.md b/content/user/users.de.md index 4719391..06e5e57 100644 --- a/content/user/users.de.md +++ b/content/user/users.de.md @@ -23,7 +23,8 @@ Deine E-Mail Adresse eingeben. ### E-Mail bestätigen -Du bekommst eine Mail, du sie hast auf den Link in der Mail klicken +Du bekommst eine Mail. +In dieser klickst du einfach auf den Link. ### Neues Passwort setzen diff --git a/static/fonts/athiti.ttf b/static/fonts/athiti.ttf new file mode 100644 index 0000000..a87e926 Binary files /dev/null and b/static/fonts/athiti.ttf differ