vault backup: 2026-08-05 17:15:27

This commit is contained in:
2026-08-05 17:15:27 -04:00
parent c66b619e91
commit f51493d8e3
12 changed files with 47 additions and 9 deletions
+18
View File
@@ -16,5 +16,23 @@
], ],
"key": "E" "key": "E"
} }
],
"templater-obsidian:replace-in-file-templater": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "I"
}
],
"templater-obsidian:insert-templater": [
{
"modifiers": [
"Mod",
"Shift"
],
"key": "M"
}
] ]
} }
+1 -1
View File
@@ -112,7 +112,7 @@
"file": null, "file": null,
"createMissingPeriodicNote": true "createMissingPeriodicNote": true
}, },
"dualPane": true, "dualPane": false,
"dualPaneOrientation": "vertical", "dualPaneOrientation": "vertical",
"narrowSidebarLayout": "singlePane", "narrowSidebarLayout": "singlePane",
"narrowSidebarTriggerMode": "fitPanes", "narrowSidebarTriggerMode": "fitPanes",
+13 -5
View File
@@ -1,8 +1,15 @@
# 1-1 - {{Employee Name}} - {{date}} <%*
const employees = [ "Habiba", "Binta", "Slimane", "Jean-Claude", "Joel", "Valery", "Hajar" ];
const employee = await tp.system.suggester( employees, employees, false, "Choose employee" );
if (!employee) return;
const date = tp.date.now("YYYY-MM-DD");
const filename = `${date} - ${employee} 1-1`;
await tp.file.move( `20 Work/Team/${employee}/${employee} 1-1/${filename}` );
-%>
**Date:** {{date}} **Date:** <% tp.date.now("YYYY-MM-DD") %>
**Duration:** **Duration:** 30 min
**Employee:** [[{{Employee Name}}]] **Employee:** [[<% employee %>]]
## Check-in ## Check-in
@@ -63,5 +70,6 @@ _Only when relevant. Doesn't need to be discussed every 1-1._
- [ ] - [ ]
## Notes ## Notes
- -
<% tp.file.cursor() %>
@@ -1,6 +1,9 @@
# Team Meeting - {{date}} <%*
const date = tp.date.now("YYYY-MM-DD");
await tp.file.move( `20 Work/Meetings/Team Meetings/Team Meeting - ${date}` );
-%>
**Date:** {{date}} **Date:** <% tp.date.now("YYYY-MM-DD") %>
**Duration:** 30 min **Duration:** 30 min
**Attendees:** **Attendees:**
@@ -1,5 +1,14 @@
# Weekly Review - YYYY-MM-DD (Week XX)
<%*
const year = tp.date.now("YYYY");
const date = tp.date.now("YYYY-MM-DD");
const week = tp.date.now("WW"); // ISO week number
await tp.file.move( `20 Work/Weekly Review/${year}/Week ${week} - Weekly Review - ${date}` );
-%>
← [[Week <% tp.date.now("WW", -7) %> - Weekly Review - <% tp.date.now("YYYY-MM-DD", -7) %>]]
→ [[Week <% tp.date.now("WW", 7) %> - Weekly Review - <% tp.date.now("YYYY-MM-DD", 7) %>]]
## 🎯 Executive Summary (2-3 sentences) ## 🎯 Executive Summary (2-3 sentences)
Overall health of the department: Overall health of the department:
View File