Compare commits
5 Commits
0b9d03bfb2
...
fcd044f242
| Author | SHA1 | Date |
|---|---|---|
|
|
fcd044f242 | |
|
|
834d7859bd | |
|
|
eaa60f5169 | |
|
|
2a33a23e1b | |
|
|
2cd5cd9c46 |
|
|
@ -27,4 +27,13 @@ Dann laden wir dich in unseren offenen Element-Space ein:
|
|||
|
||||
 [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/)!
|
||||
|
||||
----
|
||||
|
||||

|
||||
|
||||
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.
|
||||
|
|
@ -18,9 +18,6 @@ menus:
|
|||
- name: Blog
|
||||
url: /blog/
|
||||
weight: 300
|
||||
- name: Impressum
|
||||
url: /impressum/
|
||||
weight: 500
|
||||
|
||||
Pagination:
|
||||
disableAliases: false
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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 |
Loading…
Reference in New Issue