60 lines
1.3 KiB
Markdown
60 lines
1.3 KiB
Markdown
<%*
|
||
let title = tp.file.title;
|
||
let course_name = "";
|
||
let author = "";
|
||
if (title.startsWith("Untitled")) {
|
||
course_name = await tp.system.prompt("Course Name");
|
||
author = await tp.system.prompt("Author (Person or Company)");
|
||
source = await tp.system.prompt("Source (link or School)")
|
||
await tp.file.rename(title);
|
||
}
|
||
title = course_name + " by " + author
|
||
tp.file.move("5 Media/8 Courses/" + title)
|
||
tR += "---"
|
||
%>
|
||
title: <%* tR += title %>
|
||
created_date: <% tp.file.creation_date('YYYY-MM-DD') %>
|
||
updated_date: <% tp.file.creation_date('YYYY-MM-DD') %>
|
||
aliases:
|
||
tags:
|
||
- course
|
||
type: course
|
||
course_name: <% course_name %>
|
||
author: <% author %>
|
||
source: <% source %>
|
||
status: not_started
|
||
---
|
||
# <%* tR += title %>
|
||
- **🏷️Tags** : #<% tp.file.creation_date('MM-YYYY') %> #book
|
||
---
|
||
## Summary
|
||
|
||
> [!summary] Summary
|
||
> 3 Sentences only!
|
||
> - What are the main ideas?
|
||
> - If I implemented one idea from this book right now, which one would it be?
|
||
> - How would I describe the course to someone else?
|
||
|
||
---
|
||
## Ideas and Thoughts
|
||
|
||
> [!info]+ Inspiring Questions
|
||
> - Did you think about other concepts from other resources?
|
||
> - Do the concepts fit to your past, to your memories?
|
||
> - Can you relive them and reflect them from a different angle?
|
||
|
||
|
||
---
|
||
## Chapters
|
||
|
||
|
||
|
||
---
|
||
## Exercises
|
||
|
||
---
|
||
```query
|
||
<% course_name %> <% author %>
|
||
-file: "<% title %>.md"
|
||
```
|