Auto saved by Logseq
This commit is contained in:
parent
0d560f7934
commit
2baf05411a
26
README.md
26
README.md
@ -3,6 +3,29 @@ Using LogSeq and writing everything from scratch every time you want to add some
|
|||||||
|
|
||||||
Make your LogSeq clean and organized with some templates. Each template is a Markdown file itself and can be further modified by yourself to your liking.
|
Make your LogSeq clean and organized with some templates. Each template is a Markdown file itself and can be further modified by yourself to your liking.
|
||||||
|
|
||||||
|
**Current Available Templates** (with Overviews and other enhancements):
|
||||||
|
- Book
|
||||||
|
- Company
|
||||||
|
- Conference Talk
|
||||||
|
- Daily Journal
|
||||||
|
- Eisenhower Matrix
|
||||||
|
- Event
|
||||||
|
- Goal
|
||||||
|
- Health Tracker
|
||||||
|
- Meeting
|
||||||
|
- Movie
|
||||||
|
- Person
|
||||||
|
- Project
|
||||||
|
- Recipe
|
||||||
|
- Restaurant
|
||||||
|
- Retro
|
||||||
|
- Timebox
|
||||||
|
- Weeky Journal
|
||||||
|
|
||||||
|
**Upcoming Templates**:
|
||||||
|
- Habit Tracker
|
||||||
|
- ... also adding some custom CSS and Styling
|
||||||
|
|
||||||
## How to use Templates?
|
## How to use Templates?
|
||||||
Add the files in the pages folder into your logseq pages folder. That's all.
|
Add the files in the pages folder into your logseq pages folder. That's all.
|
||||||
|
|
||||||
@ -15,3 +38,6 @@ With the Overview Pages and Tags, you will find everything very quickly.
|
|||||||
|
|
||||||
## How to use Overview?
|
## How to use Overview?
|
||||||
The Overview Pages query your pages and create nice overviews for each topic. Use those to navigate and gather your thoughts.
|
The Overview Pages query your pages and create nice overviews for each topic. Use those to navigate and gather your thoughts.
|
||||||
|
|
||||||
|
## Contribute
|
||||||
|
You are very welcome to contribute. Either with new template (ideas), improving the current templates, maybe some automation or enhanced queries? I always appreciate working together, so fork this repo and let's get it going.
|
@ -3,13 +3,15 @@
|
|||||||
keep the overviews separate from the content in the graph.
|
keep the overviews separate from the content in the graph.
|
||||||
It also neatly groups them together and makes them easy to search
|
It also neatly groups them together and makes them easy to search
|
||||||
#+END_QUOTE
|
#+END_QUOTE
|
||||||
|
|
||||||
- [[Overview/Tasklist]]
|
- [[Overview/Tasklist]]
|
||||||
|
- [[Overview/Health]]
|
||||||
- [[Overview/Events]]
|
- [[Overview/Events]]
|
||||||
- [[Overview/Projects]]
|
- [[Overview/Projects]]
|
||||||
- [[Overview/Contacts]]
|
- [[Overview/Persons]]
|
||||||
- [[Overview/Companies]]
|
- [[Overview/Companies]]
|
||||||
- [[Overview/Books]]
|
- [[Overview/Books]]
|
||||||
- [[Overview/Movies]]
|
- [[Overview/Movies]]
|
||||||
|
- [[Overview/Recipes]]
|
||||||
|
- [[Overview/Restaurants]]
|
||||||
- [[Templates]]
|
- [[Templates]]
|
||||||
- [[Overview/Workflow]]
|
- [[Overview/Workflow]]
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# Company Overview
|
# Company Overview
|
||||||
- {{query (page-property type company)}}
|
- {{query (property type company)}}
|
3
pages/Overview___Health.md
Normal file
3
pages/Overview___Health.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Health
|
||||||
|
- {{query (property type health) (sort-by created-at asc) }}
|
||||||
|
query-table:: true
|
@ -1,4 +1,4 @@
|
|||||||
# Movies
|
# Movies
|
||||||
- {{query (property type [[movie]]) (sort-by created-at asc) }}
|
- {{query (property type movie) (sort-by created-at asc) }}
|
||||||
query-table:: true
|
query-table:: true
|
||||||
query-properties:: [:page :rating :watched-on :release-year :name]
|
query-properties:: [:page :rating :watched-on :release-year :name]
|
@ -1,5 +1,5 @@
|
|||||||
# All Contacts
|
# Person Overview
|
||||||
- {{query (page-property type person)}}
|
- {{query (property type person)}}
|
||||||
query-properties:: [:page :tags :name :company :miniavatar]
|
query-properties:: [:page :tags :name :company :miniavatar]
|
||||||
query-sort-by:: page
|
query-sort-by:: page
|
||||||
query-sort-desc:: true
|
query-sort-desc:: true
|
@ -3,13 +3,13 @@
|
|||||||
- Organize these by time-bound projects. Once these particular projects are complete no longer relevant to you, change the status to Completed
|
- Organize these by time-bound projects. Once these particular projects are complete no longer relevant to you, change the status to Completed
|
||||||
|
|
||||||
- # all your **CURRENT** projects
|
- # all your **CURRENT** projects
|
||||||
- {{query (and (page-property :type project) (page-property :status "Active"))}}
|
- {{query (and (property :type project) (page-property :status "Active"))}}
|
||||||
|
|
||||||
- # all your **Planned** projects
|
- # all your **Planned** projects
|
||||||
- {{query (and (page-property :type project) (page-property :status "Planned"))}}
|
- {{query (and (property :type project) (page-property :status "Planned"))}}
|
||||||
|
|
||||||
- # all your **Ideas** projects
|
- # all your **Ideas** projects
|
||||||
- {{query (and (page-property :type project) (page-property :status "Idea"))}}
|
- {{query (and (property :type project) (page-property :status "Idea"))}}
|
||||||
|
|
||||||
- # all your **Completed** projects
|
- # all your **Completed** projects
|
||||||
- {{query (and (page-property :type project) (page-property :status "Completed"))}}
|
- {{query (and (property :type project) (page-property :status "Completed"))}}
|
||||||
|
2
pages/Overview___Recipes.md
Normal file
2
pages/Overview___Recipes.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Recipe Overview
|
||||||
|
- {{query (property type recipe)}}
|
2
pages/Overview___Restaurants.md
Normal file
2
pages/Overview___Restaurants.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Restaurants Overview
|
||||||
|
- {{query (property type restaurant)}}
|
25
pages/template___1on1_meeting.md
Normal file
25
pages/template___1on1_meeting.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# One on One
|
||||||
|
template:: One-on-One Template
|
||||||
|
template-including-parent:: true
|
||||||
|
- ## Meta
|
||||||
|
type:: one_on_one
|
||||||
|
tags:: one_on_one
|
||||||
|
icon:: 🤝
|
||||||
|
attendees::
|
||||||
|
project::
|
||||||
|
topic::
|
||||||
|
date:: <% today %>
|
||||||
|
- ## Check-in (5 mins)
|
||||||
|
-
|
||||||
|
- ## Recent Work Recap (10 min)
|
||||||
|
-
|
||||||
|
- ## Upcoming Work
|
||||||
|
-
|
||||||
|
- ## Action Items
|
||||||
|
- TODO Item 1
|
||||||
|
:logbook:
|
||||||
|
CLOCK: [2024-01-01 Mon 12:00:00]--[2024-01-01 Mon 13:00:00] => 00:01:00
|
||||||
|
:END:
|
||||||
|
- ## Notes
|
||||||
|
- ## Questions to Ask
|
||||||
|
-
|
@ -1,6 +1,6 @@
|
|||||||
# Conference Talk
|
- # Conference Talk
|
||||||
template:: Conference Talk Template
|
template:: Conference Talk Template
|
||||||
template-including-parent:: false
|
template-including-parent:: false
|
||||||
- ## Meta
|
- ## Meta
|
||||||
type:: conference_talk
|
type:: conference_talk
|
||||||
tags:: conference_talk
|
tags:: conference_talk
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
- # Event
|
# Event
|
||||||
template:: event
|
template:: event
|
||||||
template-including-parent:: false
|
template-including-parent:: false
|
||||||
- ## Meta
|
- ## Meta
|
||||||
type:: event
|
type:: event
|
||||||
tags:: event
|
tags:: event
|
||||||
@ -12,8 +12,9 @@
|
|||||||
website::
|
website::
|
||||||
category::
|
category::
|
||||||
participants::
|
participants::
|
||||||
|
pricing::
|
||||||
- ## Description
|
- ## Description
|
||||||
-
|
-
|
||||||
- ## Planning
|
- ## Planning
|
||||||
- TODO find other interested
|
- TODO find other interested
|
||||||
- TODO Buy Tickets
|
- TODO Buy Tickets
|
||||||
@ -22,6 +23,6 @@
|
|||||||
- ## Event Highlights
|
- ## Event Highlights
|
||||||
- must have to visit
|
- must have to visit
|
||||||
- ## What to pack for the event
|
- ## What to pack for the event
|
||||||
-
|
-
|
||||||
- ## Notes
|
- ## Notes
|
||||||
-
|
-
|
@ -4,7 +4,7 @@ template-including-parent:: false
|
|||||||
- ## Meta
|
- ## Meta
|
||||||
type:: goal
|
type:: goal
|
||||||
tags:: goal
|
tags:: goal
|
||||||
icon:: 🥅
|
icon:: 🎯
|
||||||
status:: [/[ToBegin]] [/[InProgress]] [/[Finished]] [/[Aborted]]
|
status:: [/[ToBegin]] [/[InProgress]] [/[Finished]] [/[Aborted]]
|
||||||
title::
|
title::
|
||||||
created:: <% today %>
|
created:: <% today %>
|
||||||
|
14
pages/template___health_tracker.md
Normal file
14
pages/template___health_tracker.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
- # Health tracker
|
||||||
|
template:: health
|
||||||
|
template-including-parent:: false
|
||||||
|
- ## Meta
|
||||||
|
type:: health
|
||||||
|
tags:: health
|
||||||
|
icon:: ⚕️
|
||||||
|
weight::
|
||||||
|
bmi::
|
||||||
|
body-fat::
|
||||||
|
body-water::
|
||||||
|
body-muscle::
|
||||||
|
blood-preasure::
|
||||||
|
|
30
pages/template___recipe.md
Normal file
30
pages/template___recipe.md
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
- # Recipe
|
||||||
|
template:: event
|
||||||
|
template-including-parent:: false
|
||||||
|
- ## Meta
|
||||||
|
type:: recipe
|
||||||
|
tags:: recipe
|
||||||
|
icon:: 👨🍳
|
||||||
|
name::
|
||||||
|
kitchen::
|
||||||
|
image::
|
||||||
|
category:: [[appetizer]] [[main]] [[adding]] [[dessert]] [[drink]]
|
||||||
|
rating:: X/10
|
||||||
|
source::
|
||||||
|
cookTime::
|
||||||
|
vegan:: true/false
|
||||||
|
vegetarian:: true/false
|
||||||
|
- ## Description
|
||||||
|
-
|
||||||
|
- ## Ingredients
|
||||||
|
-
|
||||||
|
- ## Recipe Instructions
|
||||||
|
-
|
||||||
|
- ## Nutrition Information
|
||||||
|
- serving Size:
|
||||||
|
- calories:
|
||||||
|
- protein Content:
|
||||||
|
- fat Content:
|
||||||
|
- carbohydrate Content:
|
||||||
|
- ## Notes
|
||||||
|
-
|
23
pages/template___restaurant.md
Normal file
23
pages/template___restaurant.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
- # Restaurant
|
||||||
|
template:: event
|
||||||
|
template-including-parent:: false
|
||||||
|
- ## Meta
|
||||||
|
type:: restaurant
|
||||||
|
tags:: restaurant
|
||||||
|
icon:: 🍴
|
||||||
|
name::
|
||||||
|
kitchen::
|
||||||
|
location::
|
||||||
|
price::
|
||||||
|
rating:: X/10
|
||||||
|
ambiente::
|
||||||
|
website::
|
||||||
|
visited:: <% today %>
|
||||||
|
vegan-food:: true/false
|
||||||
|
vegetarian-food:: true/false
|
||||||
|
- ## Description
|
||||||
|
-
|
||||||
|
- ## Best Food
|
||||||
|
-
|
||||||
|
- # Notes
|
||||||
|
-
|
@ -10,10 +10,13 @@
|
|||||||
- [[template/eisenhower_matrix]]
|
- [[template/eisenhower_matrix]]
|
||||||
- [[template/event]]
|
- [[template/event]]
|
||||||
- [[template/goal]]
|
- [[template/goal]]
|
||||||
|
- [[template/health_tracker]]
|
||||||
- [[template/meeting]]
|
- [[template/meeting]]
|
||||||
- [[template/movie]]
|
- [[template/movie]]
|
||||||
- [[template/person]]
|
- [[template/person]]
|
||||||
- [[template/project]]
|
- [[template/project]]
|
||||||
|
- [[template/recipe]]
|
||||||
|
- [[template/restaurant]]
|
||||||
- [[template/retro]]
|
- [[template/retro]]
|
||||||
- [[template/timebox]]
|
- [[template/timebox]]
|
||||||
- [[template/weekly_journal]]
|
- [[template/weekly_journal]]
|
||||||
|
Loading…
Reference in New Issue
Block a user