-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
41 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule backsteinexpressionismus
updated
6 files
+3 −1 | config.toml | |
+1 −1 | content/about.md | |
+1 −2 | layouts/partials/footer.html | |
+0 −2 | layouts/partials/tag.html | |
+0 −34 | layouts/shortcodes/tagcloud.html | |
+1 −1 | themes/projektemacher-base |
Submodule blaufusstoelpel
updated
43 files
Submodule kinderbuecher
updated
91 files
Submodule kleiderbuegel
updated
8 files
+6 −3 | assets/scss/base.scss | |
+2 −0 | config.toml | |
+1 −1 | content/about.md | |
+1 −8 | layouts/_default/baseof.html | |
+3 −9 | layouts/partials/footer.html | |
+0 −6 | layouts/shortcodes/post-count.html | |
+0 −34 | layouts/shortcodes/tagcloud.html | |
+1 −1 | themes/projektemacher-base |
Submodule kraehenbeisser
updated
5 files
+3 −2 | assets/scss/base.scss | |
+2 −0 | config.toml | |
+1 −6 | layouts/partials/footer.html | |
+0 −3 | layouts/partials/head.html | |
+1 −1 | themes/projektemacher-base |
Submodule labs.projektemacher.org
updated
23 files
+4 −3 | .github/workflows/gh-pages.yml | |
+51 −1 | assets/scss/base.scss | |
+10 −4 | config.toml | |
+1 −1 | content/future/3d/_index.md | |
+111 −0 | content/post/fold-out/index.en.md | |
+12 −4 | content/post/fold-out/index.md | |
+6 −2 | content/post/haptic-feedback/index.en.md | |
+6 −2 | content/post/haptic-feedback/index.md | |
+ − | content/post/jepg-xl/back.jxl | |
+ − | content/post/jepg-xl/front.jxl | |
+105 −0 | content/post/jepg-xl/index.en.md | |
+115 −0 | content/post/jepg-xl/index.md | |
+1 −0 | content/post/music-sheets/index.md | |
+166 −0 | layouts/_default/single.iiif.json | |
+6 −0 | layouts/partials/article.html | |
+14 −10 | layouts/partials/content.html | |
+1 −3 | layouts/partials/footer.html | |
+12 −0 | layouts/partials/header.html | |
+22 −0 | layouts/partials/iiif-js.html | |
+0 −120 | patches/mirador+3.0.0.patch | |
+80 −0 | scripts/iiif-jxl.sh | |
+1 −1 | themes/projektemacher-base | |
+306 −889 | yarn.lock |
Submodule schriftmuster
updated
17 files
Submodule vorsatzpapier
updated
12 files
+30 −13 | assets/scss/base.scss | |
+16 −3 | config.toml | |
+1 −1 | content/about/index.en.md | |
+1 −1 | content/about/index.md | |
+4 −1 | content/post/1x1-des-tapezierens/index.en.md | |
+4 −1 | content/post/1x1-des-tapezierens/index.md | |
+0 −158 | layouts/_default/single.json | |
+3 −15 | layouts/partials/footer.html | |
+0 −17 | package.hugo.json | |
+6 −0 | package.json | |
+1 −1 | themes/projektemacher-base | |
+1 −19 | yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
SECTIONS=$(git config --file .gitmodules -l --name-only |sed -E 's/^[^\0][^\.]*\.([^\0]*)\.[^\0][^\.]*$/\1/g') | ||
|
||
SECTIONS=`echo $SECTIONS | tr '\n' ':'` | ||
|
||
CTX=`pwd` | ||
|
||
for SECTION in $SECTIONS | ||
do | ||
if [[ "$SECTION" =~ ^blogs.* ]]; then | ||
echo "Processing $SECTION" | ||
else | ||
continue | ||
fi | ||
|
||
MODULE_PATH=$(git config --file .gitmodules --get "submodule.$SECTION.path") | ||
MODULE_URL=$(git config --file .gitmodules --get "submodule.$SECTION.url") | ||
|
||
cd $MODULE_PATH | ||
echo "Checking out $MODULE_URL to $MODULE_PATH" | ||
git clone $URL --filter=blob:limit=1m --depth 1 $MODULE_URL . | ||
cd $CTX | ||
done |
Submodule projektemacher-base
updated
16 files