Compare commits
9 Commits
3cad9e2a56
...
0.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
810be2c0cd
|
|||
|
ab6ce62649
|
|||
|
112e7dbe7a
|
|||
|
0032df1862
|
|||
|
8fbd031e46
|
|||
|
5ecba1d65c
|
|||
|
3c0738f11f
|
|||
|
7338080c32
|
|||
|
ca8373e383
|
29
.gitea/workflows/latest.yaml
Normal file
29
.gitea/workflows/latest.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
name: Build latest image
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build-container:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- 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:latest
|
||||
platforms: linux/amd64,linux/arm64
|
||||
27
.gitea/workflows/release.yaml
Normal file
27
.gitea/workflows/release.yaml
Normal file
@@ -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
|
||||
@@ -2,6 +2,7 @@ FROM hugomods/hugo:exts AS build
|
||||
WORKDIR /app
|
||||
|
||||
COPY . /app/
|
||||
COPY .git /app/.git
|
||||
RUN hugo
|
||||
|
||||
FROM hugomods/hugo:nginx
|
||||
|
||||
11
assets/css/custom.css
Normal file
11
assets/css/custom.css
Normal file
@@ -0,0 +1,11 @@
|
||||
@font-face {
|
||||
font-family: "Athiti";
|
||||
src: url("/fonts/athiti.ttf");
|
||||
}
|
||||
html,
|
||||
:host {
|
||||
font-family: "Athiti";
|
||||
}
|
||||
.content {
|
||||
font-family: "Athiti";
|
||||
}
|
||||
@@ -58,7 +58,7 @@ menu:
|
||||
pageRef: /selfservice
|
||||
weight: 3
|
||||
- identifier: scanstation
|
||||
name: Scanerstationen
|
||||
name: Scannerstationen
|
||||
pageRef: /scanstation
|
||||
weight: 4
|
||||
- identifier: beamershow
|
||||
@@ -85,8 +85,6 @@ params:
|
||||
logo:
|
||||
path: logo.svg
|
||||
dark: logo.svg
|
||||
width: 40
|
||||
height: 20
|
||||
link: /
|
||||
width: normal
|
||||
page:
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
user: User
|
||||
admin: Administrators
|
||||
selfservice: Selfservice
|
||||
scanstation: Scaning Stations
|
||||
scanstation: Scanning Stations
|
||||
beamershow: Beamer Show
|
||||
search: Search
|
||||
editThisPage: "Edit this page →"
|
||||
|
||||
BIN
static/fonts/athiti.ttf
Normal file
BIN
static/fonts/athiti.ttf
Normal file
Binary file not shown.
Reference in New Issue
Block a user