Last active 7 months ago

Revision 469a6dc50027bd0733f9b26611b7eb1e0a6169ab

00 obsidian-base-structure.md Raw

Base structure

    1. projects
    1. areas
    1. resources
    1. archive
    1. assets
    • templates
    • images

plugins

Obsidian

  • Vorlagen -> Speicherort
  • Tag-Bereich -> aktiv

External

  • advanced slides
  • advanced tables
  • calendar
  • checklist
  • dataview
  • enhancing mindmap
  • periodic notes
    • daily notes -> YYYY/MM/YYYY-MM-DD
    • template -> folder
    • note folder -> 80. archive/notes
  • templater
note area Raw
1---
2parent: "[[20. areas/notes ToC]]"
3tags: [area-note]
4date: <% tp.file.creation_date("YYYY-MM-DD") %>
5---
6tags:
7# <% tp.file.title %>
8
9<% tp.file.cursor(1) %>
10
11---
12[[<% tp.date.now("YYYY-MM-DD") %>]] | id: <% tp.date.now("YYYY-MM-DD-HHmm") %>
13<%*
14const formattedDate = tp.date.now("YYYY-MM-DD");
15tp.file.rename(formattedDate);
16await tp.file.move("/20. areas/" + formattedDate + " " + tp.file.title);
17%>
note daily Raw
1---
2tags: [daily-note, <% tp.file.creation_date("YYYY-MM-DD") %>]
3date: <% tp.file.creation_date("YYYY-MM-DD") %>
4---
5# <% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %>
6
7---
8# Tasks
9
10* [ ] <% tp.file.cursor() %>
11
12---
13# 📝 Notes
14-
15
16---
17## Notes created today
18```dataview
19List FROM "" WHERE file.cday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.ctime asc
20```
21
22## Notes last touched today
23```dataview
24List FROM "" WHERE file.mday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.mtime asc
25```
26
27---
28[[<% tp.date.now("YYYY-MM-DD") %>]] | id: <% tp.date.now("YYYY-MM-DD-HHmm") %>
note meeting Raw
1---
2parent: "[[<% tp.file.creation_date("YYYY") %>/0000 meeting notes ToC]]"
3tags: [meeting-note]
4type: meeting
5company:
6summary:
7date: <% tp.file.creation_date("YYYY-MM-DD HH:mm") %>
8---
9tags:
10# <% tp.file.title %>
11## Teilnehmer
12
13* [[Marc Aschmann]]
14
15
16## Agenda
17
18
19
20## Notizen
21
22<% tp.file.cursor(1) %>
23
24## Aufgaben
25
26- [ ]
27
28## Ressourcen
29
30
31---
32[[<% tp.date.now("YYYY-MM-DD") %>]] | id: <% tp.date.now("YYYY-MM-DD-HHmm") %>
33
34<%*
35const formattedDate = tp.date.now("YYYY-MM-DD-HHmm");
36tp.file.rename(formattedDate);
37await tp.file.move("/80. archive/meetings/" + tp.date.now("YYYY") + "/" + tp.date.now("MM") + "/" + formattedDate + " " + tp.file.title);
38%>
note project Raw
1---
2parent: "[[10. projects/notes ToC]]"
3tags: [project-note]
4date: <% tp.file.creation_date("YYYY-MM-DD") %>
5---
6tags:
7# <% tp.file.title %>
8
9<% tp.file.cursor(1) %>
10
11<%*
12const formattedDate = tp.date.now("YYYY-MM-DD");
13tp.file.rename(formattedDate);
14await tp.file.move("/10. projects/" + tp.file.title);
15%>
16
17---
18[[<% tp.date.now("YYYY-MM-DD") %>]] | id: <% tp.date.now("YYYY-MM-DD-HHmm") %>
note resource Raw
1---
2parent: "[[resources ToC]]"
3tags: [resource-note]
4date: <% tp.file.creation_date("YYYY-MM-DD") %>
5---
6tags:
7# <% tp.file.title %>
8
9<% tp.file.cursor(1) %>
10
11---
12[[<% tp.date.now("YYYY-MM-DD") %>]] | id: <% tp.date.now("YYYY-MM-DD-HHmm") %>
13<%*
14const formattedDate = tp.date.now("YYYY-MM-DD");
15tp.file.rename(formattedDate);
16await tp.file.move("/30. resources/" + tp.file.title);
17%>
people Raw
1---
2parent: "[[0000 people ToC]]"
3tags: [people]
4company:
5location:
6title:
7email:
8website:
9aliases:
10---
11tags:
12
13# [[<% tp.file.title %>]]
14<% await tp.file.move("/30. resources/people/" + tp.file.title) %>
15
16## Notes
17-
18
19## Meetings
20```dataview
21TABLE file.cday as Created, summary AS "Summary"
22FROM "80. archive/meetings" where contains(file.outlinks, [[]])
23SORT file.cday DESC
24```
toc template Raw
1---
2tags: [ToC]
3date: <% tp.file.creation_date("YYYY-MM-DD HH:mm") %>
4---
5
6Linked documents:
7
8```dataview
9list from [[]] and !outgoing([[]])
10```
11
12---