Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN npm ci --no-audit --no-fund && npm run build

### RELEASE ###
# https://hub.docker.com/_/caddy/tags
FROM caddy:2.10.2-alpine
FROM caddy:2.11.2-alpine

COPY Caddyfile /etc/caddy/Caddyfile
COPY --from=build /build /srv
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,14 @@ npm start -- --host 0.0.0.0
```console
npm run build
```

## Docker & Testsystem (<https://test.gldf.io>)

Image lokal erstellen und auf Dockerhub pushen.
Das Testsystem prüft regelmässig auf neue Images und aktualisiert die Container selbstständig.

```console
docker login -u dialgmbh
docker build -t dialgmbh/gldf-website:latest .
docker push dialgmbh/gldf-website:latest
```
1 change: 1 addition & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const config = {
onInlineTags: 'warn',
onInlineAuthors: 'warn',
onUntruncatedBlogPosts: 'warn',
blogSidebarCount: 'ALL',
},
theme: {
customCss: [
Expand Down
30 changes: 1 addition & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions src/css/imprint.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,26 @@
.ImprintTwoColumns .column {
padding: 0 1.25rem;
}
}

/* Editorial section */
.ImprintEditorial {
text-align: center;
max-width: 900px;
margin: 0 auto;
padding: 0 1.25rem;
margin-top: 0px;
}

.ImprintEditorial h2 {
font-size: 20px;
color: var(--ifm-font-color-base);
margin-bottom: 20px;
border-bottom: 1px solid rgb(224, 224, 224);
padding-bottom: 10px;
}

.ImprintEditorial p {
color: var(--ifm-font-color-base);
line-height: 1.6;
}
10 changes: 10 additions & 0 deletions src/pages/imprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ function Imprints() {
</>
}
/>
<div className="ImprintEditorial">
<h2>Editorial Responsibility (Blog Section)</h2>
<p>
Responsible for the journalistic and editorial content of the blog section (gldf.io/blog/)
in accordance with Section 18 (2) of the German State Media Treaty (Medienstaatsvertrag, MStV):<br />
<strong>Dieter Polle</strong>, Managing Director of DIAL GmbH,<br />Bahnhofsallee 18, 58507 Lüdenscheid, Germany.
</p>
<br />
<br />
</div>
</>
);
}
Expand Down
Loading
Loading