about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-10-01T16·57+0300
committertazjin <mail@tazj.in>2021-10-07T14·21+0000
commit26f0ba5464131630db06dcbba5b445516b95c2ff (patch)
treea9dc6c0ddda0118f0c3df15af31f74fabd8eabfc /web
parent8696726244ac60883028c583628411639bf75bb4 (diff)
refactor(web): use static.tvl.{fyi|su} for static assets r/2953
Replaces all uses of relative static paths in TVL pages with the
static.tvl.fyi domain. Where possible, the drv hash is directly
embedded in the content.

Change-Id: Ia882dd37ceae9d047cd81cf1eb37a856b339643a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3682
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web')
-rw-r--r--web/atward/indexHtml/default.nix1
-rw-r--r--web/cgit-taz/default.nix2
-rw-r--r--web/todolist/default.nix7
-rw-r--r--web/tvl/default.nix4
4 files changed, 6 insertions, 8 deletions
diff --git a/web/atward/indexHtml/default.nix b/web/atward/indexHtml/default.nix
index ebe5168763..31ced80096 100644
--- a/web/atward/indexHtml/default.nix
+++ b/web/atward/indexHtml/default.nix
@@ -2,7 +2,6 @@
 
 depot.web.tvl.template {
   title = "atward";
-  staticUrl = "https://tvl.fyi/static";
   content = ''
     atward
     ======
diff --git a/web/cgit-taz/default.nix b/web/cgit-taz/default.nix
index 105e141e4d..a89b96fd92 100644
--- a/web/cgit-taz/default.nix
+++ b/web/cgit-taz/default.nix
@@ -25,7 +25,7 @@ let
     enable-follow-links=1
     enable-blame=1
     mimetype-file=${mime-types}/etc/mime.types
-    logo=https://tvl.fyi/static/tvl-animated.svg
+    logo=https://static.tvl.fyi/${depot.web.static.drvHash}/logo-animated.svg
 
     # Repository configuration
     repo.url=depot
diff --git a/web/todolist/default.nix b/web/todolist/default.nix
index e7be6e30c7..938902f315 100644
--- a/web/todolist/default.nix
+++ b/web/todolist/default.nix
@@ -66,14 +66,16 @@ let
     <hr>
   '';
 
+  staticUrl = "https://static.tvl.fyi/${depot.web.static.drvHash}";
+
   todoPage = writeText "index.html" ''
     <!DOCTYPE html>
     <head>
       <meta charset="utf-8">
       <meta name="viewport" content="width=device-width, initial-scale=1">
       <meta name="description" content="TVL's todo-list">
-      <link rel="stylesheet" type="text/css" href="static/tvl.css" media="all">
-      <link rel="icon" type="image/webp" href="static/favicon.webp">
+      <link rel="stylesheet" type="text/css" media="all" href="${staticUrl}/tvl.css">
+      <link rel="icon" type="image/webp" href="${staticUrl}/favicon.webp">
       <title>TVL's todo-list</title>
       <style>
         svg {
@@ -106,5 +108,4 @@ let
 in runCommandNoCC "tvl-todos" {} ''
   mkdir $out
   cp ${todoPage} $out/index.html
-  ln -s ${depot.web.tvl}/static $out/static
 ''
diff --git a/web/tvl/default.nix b/web/tvl/default.nix
index 2defb7b1ba..e918fc4a99 100644
--- a/web/tvl/default.nix
+++ b/web/tvl/default.nix
@@ -17,7 +17,7 @@ let
 
       ----------------
 
-      <img class="tvl-logo" src="/static/tvl-animated.svg"
+      <img class="tvl-logo" src="https://static.tvl.fyi/${depot.web.static.drvHash}/logo-animated.svg"
            alt="Virus with lambda-shaped spike proteins sitting on an armchair">
 
       Welcome to **The Virus Lounge**. We're a group of people who got
@@ -80,6 +80,4 @@ let
 in runCommandNoCC "website" {} ''
   mkdir -p $out/static
   cp ${homepage} $out/index.html
-  cp ${depot.web.static}/* $out/static
-  cp ${depot.web.tvl.logo.pastelRainbow} $out/static/tvl-animated.svg
 ''