From 832ee186bd8477eff88560d4fddf643ec608d4b6 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Mon, 5 May 2025 20:39:25 -0500 Subject: add symlinks for nav, prefix sprite ids with sprite-, add albums template --- public/albums | 1 + public/index.html | 38 ++++++++++++++++++-------------------- public/settings | 1 + public/slideshow | 1 + webpack.config.js | 2 +- 5 files changed, 22 insertions(+), 21 deletions(-) create mode 120000 public/albums create mode 120000 public/settings create mode 120000 public/slideshow diff --git a/public/albums b/public/albums new file mode 120000 index 0000000..27f8dec --- /dev/null +++ b/public/albums @@ -0,0 +1 @@ +../public \ No newline at end of file diff --git a/public/index.html b/public/index.html index 4ea10e9..ca02d57 100644 --- a/public/index.html +++ b/public/index.html @@ -1,12 +1,6 @@ - @@ -14,17 +8,12 @@
- -
- - - + + +
- - - + + +
@@ -48,9 +46,9 @@ diff --git a/public/settings b/public/settings new file mode 120000 index 0000000..27f8dec --- /dev/null +++ b/public/settings @@ -0,0 +1 @@ +../public \ No newline at end of file diff --git a/public/slideshow b/public/slideshow new file mode 120000 index 0000000..27f8dec --- /dev/null +++ b/public/slideshow @@ -0,0 +1 @@ +../public \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index 82f7d1d..529e222 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -15,7 +15,7 @@ module.exports = { test: /\.svg$/, loader: "svg-sprite-loader", options: { - symbolId: filePath => path.basename(filePath).replace(/_[0-9]+dp_.*/, ""), + symbolId: filePath => "sprite-" + path.basename(filePath).replace(/_[0-9]+dp_.*/, ""), }, }, ], -- cgit v1.2.3