Auto saved by Logseq

This commit is contained in:
wieerwill 2024-01-07 19:14:16 +01:00
parent 0d560f7934
commit 2baf05411a
17 changed files with 152 additions and 21 deletions

View File

@ -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.
**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?
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?
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.

View File

@ -3,13 +3,15 @@
keep the overviews separate from the content in the graph.
It also neatly groups them together and makes them easy to search
#+END_QUOTE
- [[Overview/Tasklist]]
- [[Overview/Health]]
- [[Overview/Events]]
- [[Overview/Projects]]
- [[Overview/Contacts]]
- [[Overview/Persons]]
- [[Overview/Companies]]
- [[Overview/Books]]
- [[Overview/Movies]]
- [[Overview/Recipes]]
- [[Overview/Restaurants]]
- [[Templates]]
- [[Overview/Workflow]]
- [[Overview/Workflow]]

View File

@ -1,2 +1,2 @@
# Company Overview
- {{query (page-property type company)}}
- {{query (property type company)}}

View File

@ -0,0 +1,3 @@
# Health
- {{query (property type health) (sort-by created-at asc) }}
query-table:: true

View File

@ -1,4 +1,4 @@
# Movies
- {{query (property type [[movie]]) (sort-by created-at asc) }}
- {{query (property type movie) (sort-by created-at asc) }}
query-table:: true
query-properties:: [:page :rating :watched-on :release-year :name]

View File

@ -1,5 +1,5 @@
# All Contacts
- {{query (page-property type person)}}
# Person Overview
- {{query (property type person)}}
query-properties:: [:page :tags :name :company :miniavatar]
query-sort-by:: page
query-sort-desc:: true

View File

@ -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
- # 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
- {{query (and (page-property :type project) (page-property :status "Planned"))}}
- {{query (and (property :type project) (page-property :status "Planned"))}}
- # 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
- {{query (and (page-property :type project) (page-property :status "Completed"))}}
- {{query (and (property :type project) (page-property :status "Completed"))}}

View File

@ -0,0 +1,2 @@
# Recipe Overview
- {{query (property type recipe)}}

View File

@ -0,0 +1,2 @@
# Restaurants Overview
- {{query (property type restaurant)}}

View 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
-

View File

@ -1,6 +1,6 @@
# Conference Talk
template:: Conference Talk Template
template-including-parent:: false
- # Conference Talk
template:: Conference Talk Template
template-including-parent:: false
- ## Meta
type:: conference_talk
tags:: conference_talk

View File

@ -1,6 +1,6 @@
- # Event
template:: event
template-including-parent:: false
# Event
template:: event
template-including-parent:: false
- ## Meta
type:: event
tags:: event
@ -12,8 +12,9 @@
website::
category::
participants::
pricing::
- ## Description
-
-
- ## Planning
- TODO find other interested
- TODO Buy Tickets
@ -22,6 +23,6 @@
- ## Event Highlights
- must have to visit
- ## What to pack for the event
-
-
- ## Notes
-
-

View File

@ -4,7 +4,7 @@ template-including-parent:: false
- ## Meta
type:: goal
tags:: goal
icon:: 🥅
icon:: 🎯
status:: [/[ToBegin]] [/[InProgress]] [/[Finished]] [/[Aborted]]
title::
created:: <% today %>

View 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::

View 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
-

View 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
-

View File

@ -10,10 +10,13 @@
- [[template/eisenhower_matrix]]
- [[template/event]]
- [[template/goal]]
- [[template/health_tracker]]
- [[template/meeting]]
- [[template/movie]]
- [[template/person]]
- [[template/project]]
- [[template/recipe]]
- [[template/restaurant]]
- [[template/retro]]
- [[template/timebox]]
- [[template/weekly_journal]]