Last Sync: 2026-01-08 23:40 (Mobile)
This commit is contained in:
49
Templater/Yearly_Note 템플릿-1.md
Normal file
49
Templater/Yearly_Note 템플릿-1.md
Normal file
@@ -0,0 +1,49 @@
|
||||
---
|
||||
tags:
|
||||
- "#yearly"
|
||||
---
|
||||
---
|
||||
### 목표
|
||||
#### 건강
|
||||
#### 일
|
||||
#### 개인
|
||||
|
||||
---
|
||||
### 중요한 날
|
||||
|
||||
```dataview
|
||||
TABLE without id
|
||||
file.link as 날짜,
|
||||
achievement as 성과
|
||||
FROM "10. Planner/11. Daily"
|
||||
WHERE important_date = true AND contains(file.name, "<% tp.file.title %>")
|
||||
```
|
||||
|
||||
---
|
||||
### 읽은 책 리스트
|
||||
```dataview
|
||||
TABLE without id
|
||||
rows.reading_book as "책 제목",
|
||||
rows.date_daily as "읽은 날짜"
|
||||
FROM "10. Planner/11. Daily"
|
||||
WHERE contains(file.name, "<% tp.file.title %>") AND reading_book != null
|
||||
FLATTEN reading_book
|
||||
GROUP BY reading_book
|
||||
```
|
||||
---
|
||||
### 월간 리뷰
|
||||
|
||||
| 요일 | 내용 | |
|
||||
| ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- |
|
||||
| <% tp.file.title %>-1월 | <%* const year01 = tp.file.title; const month01 = "01"; const monthlyNoteTitle01 = `${year01}-${month01}`; const reviewSection01 = `![[${monthlyNoteTitle01}#^review]]`; tR += reviewSection01; %> | |
|
||||
| <% tp.file.title %>-2월 | <%* const year02 = tp.file.title; const month02 = "02"; const monthlyNoteTitle02 = `${year02}-${month02}`; const reviewSection02 = `![[${monthlyNoteTitle02}#^review]]`; tR += reviewSection02; %> | |
|
||||
| <% tp.file.title %>-3월 | <%* const year03 = tp.file.title; const month03 = "03"; const monthlyNoteTitle03 = `${year03}-${month03}`; const reviewSection03 = `![[${monthlyNoteTitle03}#^review]]`; tR += reviewSection03; %> | |
|
||||
| <% tp.file.title %>-4월 | <%* const year04 = tp.file.title; const month04 = "04"; const monthlyNoteTitle04 = `${year04}-${month04}`; const reviewSection04 = `![[${monthlyNoteTitle04}#^review]]`; tR += reviewSection04; %> | |
|
||||
| <% tp.file.title %>-5월 | <%* const year05 = tp.file.title; const month05 = "05"; const monthlyNoteTitle05 = `${year05}-${month05}`; const reviewSection05 = `![[${monthlyNoteTitle05}#^review]]`; tR += reviewSection05; %> | |
|
||||
| <% tp.file.title %>-6월 | <%* const year06 = tp.file.title; const month06 = "06"; const monthlyNoteTitle06 = `${year06}-${month06}`; const reviewSection06 = `![[${monthlyNoteTitle06}#^review]]`; tR += reviewSection06; %> | |
|
||||
| <% tp.file.title %>-7월 | <%* const year07 = tp.file.title; const month07 = "07"; const monthlyNoteTitle07 = `${year07}-${month07}`; const reviewSection07 = `![[${monthlyNoteTitle07}#^review]]`; tR += reviewSection07; %> | |
|
||||
| <% tp.file.title %>-8월 | <%* const year08 = tp.file.title; const month08 = "08"; const monthlyNoteTitle08 = `${year08}-${month08}`; const reviewSection08 = `![[${monthlyNoteTitle08}#^review]]`; tR += reviewSection08; %> | |
|
||||
| <% tp.file.title %>-9월 | <%* const year09 = tp.file.title; const month09 = "09"; const monthlyNoteTitle09 = `${year09}-${month09}`; const reviewSection09 = `![[${monthlyNoteTitle09}#^review]]`; tR += reviewSection09; %> | |
|
||||
| <% tp.file.title %>-10월 | <%* const year10 = tp.file.title; const month10 = "10"; const monthlyNoteTitle10 = `${year10}-${month10}`; const reviewSection10 = `![[${monthlyNoteTitle10}#^review]]`; tR += reviewSection10; %> | |
|
||||
| <% tp.file.title %>-11월 | <%* const year11 = tp.file.title; const month11 = "11"; const monthlyNoteTitle11 = `${year11}-${month11}`; const reviewSection11 = `![[${monthlyNoteTitle11}#^review]]`; tR += reviewSection11; %> | |
|
||||
| <% tp.file.title %>-12월 | <%* const year12 = tp.file.title; const month12 = "12"; const monthlyNoteTitle12 = `${year12}-${month12}`; const reviewSection12 = `![[${monthlyNoteTitle12}#^review]]`; tR += reviewSection12; %> | |
|
||||
Reference in New Issue
Block a user