diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-09 14:16:22 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-09 14:16:22 +0530 |
commit | b0f2f750d54a44704a86467ff163caf809ce38b1 (patch) | |
tree | 3182e0a96fa5493f223eb0fd7b486c2df132e8d4 | |
parent | 8e824d37627b5e874469301755ca5593a4580ff6 (diff) |
msg: EACHDO directives now require resources
-rw-r--r-- | flake.lock | 8 | ||||
-rw-r--r-- | projects/index.html | 2 | ||||
-rw-r--r-- | projects/msg.md | 2 | ||||
-rw-r--r-- | tailwind_in.css | 1 |
4 files changed, 6 insertions, 7 deletions
@@ -5,11 +5,11 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1754151713, - "narHash": "sha256-J3dncqhklVWyPLWwYiXABaTdvUUkoKOke8d8sj4Aw6w=", + "lastModified": 1754727991, + "narHash": "sha256-gcuMWM5sfL03xV2R3Za7oQngostsM66jKYqV/epBCPE=", "ref": "refs/heads/main", - "rev": "465dd51274c94168b78d9366edd980009cbeb394", - "revCount": 228, + "rev": "0dfc3a0829bd757562937aa2d2eb7a08a490c8ed", + "revCount": 251, "submodules": true, "type": "git", "url": "ssh://git@github.com/compromyse/msg.git" diff --git a/projects/index.html b/projects/index.html index 6648101..9ffb78c 100644 --- a/projects/index.html +++ b/projects/index.html @@ -8,7 +8,7 @@ title = PROJECTS <div class="card-container"> - {{ eachdo projects }} + {{ eachdo resources.projects }} <a href="{{ put url }}" class="card-anchor button-inverted"> <div class="flex flex-col gap-2 pt-2 items-center items-center"> diff --git a/projects/msg.md b/projects/msg.md index 9bb0c80..acb7a30 100644 --- a/projects/msg.md +++ b/projects/msg.md @@ -86,7 +86,7 @@ title = XYZ <h1>XYZ!</h1> <!-- index.html --> -{{ eachdo projects }} +{{ eachdo resources.projects }} <p>{{ put title }}</p> {{ endeachdo }} ``` diff --git a/tailwind_in.css b/tailwind_in.css index 1b961a2..bc2813b 100644 --- a/tailwind_in.css +++ b/tailwind_in.css @@ -41,7 +41,6 @@ .prose a:hover { color: var(--color-primary-light); } - } @layer base { |