Compare commits

...

5 Commits

Author SHA1 Message Date
Ludger Sicking fcd044f242 ein weiteres Helferlein
diesmal fürs Debugging auf dem Webserver
2025-01-27 16:21:14 +01:00
Ludger Sicking 834d7859bd ohne Bild kein BMBF 2025-01-27 16:13:34 +01:00
Ludger Sicking eaa60f5169 Impressum findet sich nun im Footer 2025-01-27 15:58:22 +01:00
Ludger Sicking 2a33a23e1b Förderung auf der Startseite explizit erwähnt
mit Bild des BMBFs und den _drei_ Förderkennzeichen ;-)
2025-01-27 15:57:54 +01:00
Ludger Sicking 2cd5cd9c46 "Erklärlinie" ergänzt
ab hier copy und paste des Originals
2025-01-27 15:56:53 +01:00
5 changed files with 33 additions and 4 deletions

View File

@ -27,4 +27,13 @@ Dann laden wir dich in unseren offenen Element-Space ein:
![](/images/element-logo.svg) [Space "OERcommunity"](https://matrix.to/#/#oercommunity:rpi-virtuell.de)
Oder melde dich direkt bei unserem [Team](/unser-team/)!
Oder melde dich direkt bei unserem [Team](/unser-team/)!
----
![](/images/gefoerdert_vom_bmbf.jpg)
Das Projekt FOERBICO wird von Mai 2024 bis Ende April 2027 vom
[Bundesministerium für Bildung und Forschung (BMBF)](https://www.bmbf.de/)
im Rahmen der [OER-Strategie](https://www.oer-strategie.de/) des Bundes unter den
Förderkennzeichen 01PO23012A, 01PO23012B und 01PO23012C gefördert.

View File

@ -18,9 +18,6 @@ menus:
- name: Blog
url: /blog/
weight: 300
- name: Impressum
url: /impressum/
weight: 500
Pagination:
disableAliases: false

View File

@ -24,6 +24,12 @@
</p>
</footer>
{{- /* below this line the code was copied */ -}}
{{- /* from the original PaperMod partial "footer.html". */ -}}
{{- /* cf. line 25 ff -}}
{{- /* https://github.com/adityatelange/hugo-PaperMod/blob/9f1f414be805a2f94e2f51bd4be2b365ff12386d/layouts/partials/footer.html#L25 */ -}}
{{- if (not site.Params.disableScrollToTop) }}
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">

17
sb/scripts/url-prod-to-int.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
set -e
# script im root dir ausführen
working_directory=$(basename $(pwd))
if [ "$working_directory" != "FOERBICO" ]; then
echo "not in root dir 'FOERBICO'"
exit 1
fi
find sb/public -type f | while read FILE ;
do
sed -i -s -E 's|http://oer.community/|http://int.oer.community/|g' "$FILE"
sed -i -s -E 's|https://oer.community/|https://int.oer.community/|g' "$FILE"
#sed -i -s -E 's|https://oer.community/|https://xxx.oer.community/|g' "$FILE"
done
#TODO / FIXME: Basis-Ordner dynamsich; als Parameter

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB