diff --git a/skills/daily-focus-board/assets/board.template.html b/skills/daily-focus-board/assets/board.template.html
index 2d39f0d4..b2d470f2 100644
--- a/skills/daily-focus-board/assets/board.template.html
+++ b/skills/daily-focus-board/assets/board.template.html
@@ -197,7 +197,7 @@
today's mantra
-
+
@@ -232,14 +232,14 @@
🧠 Parked thoughts
Something pulling at your attention? Park it here so it's out of your head — deal with it later, not now.
-
+
🔥 Today's momentum
Every step you log lands here, newest first. Starting counts. Small wins count.
-
+
@@ -326,7 +326,7 @@ function render(){
c.className="card "+st+(carried?" carried":"")+(state.focus===t.id?" focused":"")+(q?" q-"+q:"");
c.dataset.cardid=t.id;
const dh=dueStr(t);
- const rmHtml=t.added?``:"";
+ const rmHtml=t.added?``:"";
const metaHtml=`
${LABEL[st]}
- ${rmHtml}
+ ${rmHtml}
update:
${metaHtml}`;
@@ -353,10 +353,10 @@ function render(){
${esc(t.emoji||"•")}
${esc(t.title)}
${t.sub?`
${esc(t.sub)}
`:""}${dh?`
${dh.txt}
`:""}
- ${rmHtml}
+ ${rmHtml}
${notes.length?`${notes.map((n,i)=>`
${fmt(n.t)}${esc(n.txt)}
`).join("")}
`:""}
- ${metaHtml}`;
+ ${metaHtml}`;
cardsEl.appendChild(c);
}
});
diff --git a/skills/daily-focus-board/examples/sample-board.html b/skills/daily-focus-board/examples/sample-board.html
index 62f8c4fe..0a5aeb63 100644
--- a/skills/daily-focus-board/examples/sample-board.html
+++ b/skills/daily-focus-board/examples/sample-board.html
@@ -205,7 +205,7 @@
today's mantra
-
+
@@ -240,14 +240,14 @@
🧠 Parked thoughts
Something pulling at your attention? Park it here so it's out of your head — deal with it later, not now.
-
+
🔥 Today's momentum
Every step you log lands here, newest first. Starting counts. Small wins count.
-
+
@@ -334,7 +334,7 @@ function render(){
c.className="card "+st+(carried?" carried":"")+(state.focus===t.id?" focused":"")+(q?" q-"+q:"");
c.dataset.cardid=t.id;
const dh=dueStr(t);
- const rmHtml=t.added?``:"";
+ const rmHtml=t.added?``:"";
const metaHtml=`
${LABEL[st]}
- ${rmHtml}
+ ${rmHtml}
update:
${metaHtml}`;
@@ -361,10 +361,10 @@ function render(){
${esc(t.emoji||"•")}
${esc(t.title)}
${t.sub?`
${esc(t.sub)}
`:""}${dh?`
${dh.txt}
`:""}
- ${rmHtml}
+ ${rmHtml}
${notes.length?`${notes.map((n,i)=>`
${fmt(n.t)}${esc(n.txt)}
`).join("")}
`:""}
- ${metaHtml}`;
+ ${metaHtml}`;
cardsEl.appendChild(c);
}
});