parent
88f1eff25a
commit
f7dcebd9ad
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"imgDataFolder": "00.01 Admin/Pictures/Gallery",
|
||||||
|
"galleryLoadPath": "00.01 Admin/Pictures",
|
||||||
|
"width": 400,
|
||||||
|
"reverseDisplay": false
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "obsidian-gallery",
|
||||||
|
"name": "Gallery",
|
||||||
|
"version": "0.5.8",
|
||||||
|
"minAppVersion": "0.10.11",
|
||||||
|
"description": "Main Gallery to tag / filter / add notes to images. Display blocks to embed images inside notes. Display block to an image information",
|
||||||
|
"author": "darakah",
|
||||||
|
"authorUrl": "https://github.com/Darakah/",
|
||||||
|
"isDesktopOnly": false
|
||||||
|
}
|
@ -0,0 +1,130 @@
|
|||||||
|
.ob-gallery-control {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
position: unset;
|
||||||
|
float: right;
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-display {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
background-color: var(--background-primary);
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-filter {
|
||||||
|
height: 70px;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
border: none;
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-filter-input {
|
||||||
|
width: 20%;
|
||||||
|
left: 20px;
|
||||||
|
position: static;
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-image-focus {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
top: 0px;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background-color: rgb(16, 17, 17, 0.83);
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-image-focus>img {
|
||||||
|
opacity: 1;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
max-height: 100%;
|
||||||
|
display: block;
|
||||||
|
padding: 40px;
|
||||||
|
float: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-info-edit {
|
||||||
|
position: fixed;
|
||||||
|
right: 0px;
|
||||||
|
margin: 10px;
|
||||||
|
color: var(--text-normal) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-info-edit:hover {
|
||||||
|
color: var(--text-a) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-info-open {
|
||||||
|
position: fixed;
|
||||||
|
right: 30px;
|
||||||
|
top: 5px;
|
||||||
|
color: var(--text-normal) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image-info-open:hover {
|
||||||
|
color: var(--text-a) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-span-info {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* active-thumb View CSS */
|
||||||
|
|
||||||
|
.gallery-widget {
|
||||||
|
background: var(--background-secondary);
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding-bottom: 60%;
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
border-radius: 0px 0px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-container {
|
||||||
|
max-width: auto;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-span-info br {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-grid-img {
|
||||||
|
opacity: 0.9;
|
||||||
|
transition: 0.1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-grid-img:hover {
|
||||||
|
opacity: 1;
|
||||||
|
transform: scale(1.04);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery-resources-alert {
|
||||||
|
padding: 20px;
|
||||||
|
background-color: var(--background-modifier-error-hover);
|
||||||
|
color: var(--light0-hard);
|
||||||
|
}
|
||||||
|
|
||||||
|
.ob-gallery-video-focus {
|
||||||
|
opacity: 1;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
max-height: 100%;
|
||||||
|
display: block;
|
||||||
|
padding: 40px;
|
||||||
|
float: unset !important;
|
||||||
|
}
|
@ -0,0 +1,134 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
title: "🗒 Daily Note"
|
||||||
|
allDay: true
|
||||||
|
date: 2023-04-11
|
||||||
|
Date: 2023-04-11
|
||||||
|
DocType: Note
|
||||||
|
Hierarchy:
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
Sleep: 8
|
||||||
|
Happiness: 80
|
||||||
|
Gratefulness: 80
|
||||||
|
Stress: 27.5
|
||||||
|
FrontHeadBar: 5
|
||||||
|
EarHeadBar: 35
|
||||||
|
BackHeadBar: 20
|
||||||
|
Water: 3.71
|
||||||
|
Coffee: 5
|
||||||
|
Steps: 12649
|
||||||
|
Weight: 95.4
|
||||||
|
Ski:
|
||||||
|
IceSkating:
|
||||||
|
Riding:
|
||||||
|
Racket:
|
||||||
|
Football:
|
||||||
|
Swim:
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
%% Parent:: [[@Life Admin]] %%
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
[[2023-04-10|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-12|🗓 Next >>]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Record today's health
|
||||||
|
type command
|
||||||
|
action MetaEdit: Run MetaEdit
|
||||||
|
id EditMetaData
|
||||||
|
```
|
||||||
|
^button-2023-04-11Edit
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2023-04-11NSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-11
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Daily note for 2023-04-11
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### ✅ Tasks of the day
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```tasks
|
||||||
|
not done
|
||||||
|
due on 2023-04-11
|
||||||
|
path does not include Templates
|
||||||
|
hide backlinks
|
||||||
|
hide task count
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📝 Memos
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
This section does serve for quick memos.
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
|
||||||
|
%% --- %%
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 🗒 Notes
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Loret ipsum
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### :link: Linked activity
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```dataview
|
||||||
|
Table from [[2023-04-11]]
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
@ -0,0 +1,134 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
title: "🗒 Daily Note"
|
||||||
|
allDay: true
|
||||||
|
date: 2023-04-12
|
||||||
|
Date: 2023-04-12
|
||||||
|
DocType: Note
|
||||||
|
Hierarchy:
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
Sleep: 7.5
|
||||||
|
Happiness: 80
|
||||||
|
Gratefulness: 80
|
||||||
|
Stress: 27.5
|
||||||
|
FrontHeadBar: 5
|
||||||
|
EarHeadBar: 35
|
||||||
|
BackHeadBar: 20
|
||||||
|
Water: 3.58
|
||||||
|
Coffee: 4
|
||||||
|
Steps: 15053
|
||||||
|
Weight:
|
||||||
|
Ski:
|
||||||
|
IceSkating:
|
||||||
|
Riding:
|
||||||
|
Racket:
|
||||||
|
Football:
|
||||||
|
Swim:
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
%% Parent:: [[@Life Admin]] %%
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
[[2023-04-11|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-13|🗓 Next >>]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Record today's health
|
||||||
|
type command
|
||||||
|
action MetaEdit: Run MetaEdit
|
||||||
|
id EditMetaData
|
||||||
|
```
|
||||||
|
^button-2023-04-12Edit
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2023-04-12NSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-12
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Daily note for 2023-04-12
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### ✅ Tasks of the day
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```tasks
|
||||||
|
not done
|
||||||
|
due on 2023-04-12
|
||||||
|
path does not include Templates
|
||||||
|
hide backlinks
|
||||||
|
hide task count
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📝 Memos
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
This section does serve for quick memos.
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
|
||||||
|
%% --- %%
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 🗒 Notes
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Loret ipsum
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### :link: Linked activity
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```dataview
|
||||||
|
Table from [[2023-04-12]]
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
@ -0,0 +1,134 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
title: "🗒 Daily Note"
|
||||||
|
allDay: true
|
||||||
|
date: 2023-04-13
|
||||||
|
Date: 2023-04-13
|
||||||
|
DocType: Note
|
||||||
|
Hierarchy:
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
Sleep: 8
|
||||||
|
Happiness: 80
|
||||||
|
Gratefulness: 80
|
||||||
|
Stress: 27.5
|
||||||
|
FrontHeadBar: 5
|
||||||
|
EarHeadBar: 35
|
||||||
|
BackHeadBar: 20
|
||||||
|
Water:
|
||||||
|
Coffee: 3
|
||||||
|
Steps:
|
||||||
|
Weight:
|
||||||
|
Ski:
|
||||||
|
IceSkating:
|
||||||
|
Riding:
|
||||||
|
Racket:
|
||||||
|
Football:
|
||||||
|
Swim:
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
%% Parent:: [[@Life Admin]] %%
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
[[2023-04-12|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-14|🗓 Next >>]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Record today's health
|
||||||
|
type command
|
||||||
|
action MetaEdit: Run MetaEdit
|
||||||
|
id EditMetaData
|
||||||
|
```
|
||||||
|
^button-2023-04-13Edit
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2023-04-13NSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-13
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Daily note for 2023-04-13
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### ✅ Tasks of the day
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```tasks
|
||||||
|
not done
|
||||||
|
due on 2023-04-13
|
||||||
|
path does not include Templates
|
||||||
|
hide backlinks
|
||||||
|
hide task count
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📝 Memos
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
This section does serve for quick memos.
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
|
||||||
|
%% --- %%
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 🗒 Notes
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Loret ipsum
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### :link: Linked activity
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```dataview
|
||||||
|
Table from [[2023-04-13]]
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
After Width: | Height: | Size: 4.3 MiB |
After Width: | Height: | Size: 4.3 MiB |
After Width: | Height: | Size: 5.3 MiB |
After Width: | Height: | Size: 4.8 MiB |
After Width: | Height: | Size: 4.9 MiB |
After Width: | Height: | Size: 4.1 MiB |
@ -0,0 +1,54 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
Alias: [""]
|
||||||
|
Tag: ["timeline", "🐎", "🐿️"]
|
||||||
|
Date: 2023-04-12
|
||||||
|
DocType: Confidential
|
||||||
|
Hierarchy: NonRoot
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Parent:: [[@Sally|Sally]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2023-04-01PurchasedecisionNSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-01 Purchase decision
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Note Description
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
<span class='ob-timelines' data-date='2023-04-01-00' data-title='Decision to buy Sally' data-class='blue' data-type='range' data-end='2023-04-01-00'> After a week of trial, decision to buy Sally for the 2023 season.
|
||||||
|
</span>
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Trial in [[Son Ginard Polo Club]] & bought of the club owner. Advised by [[Francisco Podesta]].
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
Alias: [""]
|
||||||
|
Tag: ["timeline", "🐎", "🐿️"]
|
||||||
|
Date: 2023-04-12
|
||||||
|
DocType: Confidential
|
||||||
|
Hierarchy: NonRoot
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Parent:: [[@Sally|Sally]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2024-04-03VetcheckNSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-03 Vet check
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Note Description
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
<span class='ob-timelines' data-date='2023-04-03-00' data-title='Vet check' data-class='orange' data-type='range' data-end='2023-04-03-00'> Vet check reveals lameness in both front legs.
|
||||||
|
Decision to buy the horse
|
||||||
|
</span>
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
Lameness is invisible from the natural gate of the horse.
|
||||||
|
Decision to buy the horse with a put option back tothe seller at any time; upon advice from [[Francisco Podesta]].
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
@ -0,0 +1,53 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
Alias: ["Sally"]
|
||||||
|
Tag: ["timeline", "🐎", "🐿️"]
|
||||||
|
Date: 2023-04-12
|
||||||
|
DocType: Confidential
|
||||||
|
Hierarchy: NonRoot
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Parent:: [[@Sally|Sally]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-2023-04-12DeparturefromMallorcaNSave
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
# 2023-04-12 Departure from Mallorca
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
> Note Description
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
<span class='ob-timelines' data-date='2023-04-12-00' data-title='Departure from Mallorca' data-class='blue' data-type='range' data-end='2023-04-12-00'> Trailer picks up Sally & friends from Mallorca to Lyon
|
||||||
|
</span>
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
|
||||||
|
 
|
||||||
|
 
|
@ -0,0 +1,124 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
Tag: ["🐎", ""]
|
||||||
|
Date: 2023-04-12
|
||||||
|
DocType: "Animal"
|
||||||
|
Hierarchy: "NonRoot"
|
||||||
|
TimeStamp:
|
||||||
|
location:
|
||||||
|
CollapseMetaTable: true
|
||||||
|
cssclass: recipeTable
|
||||||
|
Animal:
|
||||||
|
Type: Horse
|
||||||
|
Name: Sally
|
||||||
|
DOB:
|
||||||
|
Origin: Argentina
|
||||||
|
Passport: "European Union"
|
||||||
|
Race: "Polo Argentino"
|
||||||
|
Colour: Chestnut
|
||||||
|
banner: "![[IMG_2635.jpg]]"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Parent:: [[@Lifestyle|Lifestyle]]
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```button
|
||||||
|
name Save
|
||||||
|
type command
|
||||||
|
action Save current file
|
||||||
|
id Save
|
||||||
|
```
|
||||||
|
^button-SallyNSave
|
||||||
|
|
||||||
|
# Sally
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
> [!summary]+
|
||||||
|
>Description
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```toc
|
||||||
|
style: number
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📇 Summary
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
| | |
|
||||||
|
| --------------------- | -------------------------------- |
|
||||||
|
| 📇 **Name**: | `$=dv.current().Animal.Name` |
|
||||||
|
| 🎂 **Date of Birth**: | `$=dv.current().Animal.DOB` |
|
||||||
|
| 🗺 **Origin**: | `$=dv.current().Animal.Origin` |
|
||||||
|
| 🪪 **Passport**: | `$=dv.current().Animal.Passport` |
|
||||||
|
| 🏷️ **Race**: | `$=dv.current().Animal.Race` |
|
||||||
|
| 🎨 **Colour**: | `$=dv.current().Animal.Colour` |
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📝 Notes
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📜 History
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```timeline
|
||||||
|
🐎;🐿️
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### 📸 Pictures
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
```gallery
|
||||||
|
path=00.01 Admin/Pictures/Sally
|
||||||
|
imgWidth=100
|
||||||
|
divWidth=100
|
||||||
|
```
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
### ✅ Tasks
|
||||||
|
|
||||||
|
 
|
||||||
|
|
||||||
|
- [ ] :racehorse: [[@Sally|Sally]]: Vet check %%done_del%% 🔁 every 6 months 📅 2023-09-30
|
||||||
|
- [ ] :racehorse: [[@Sally|Sally]]: EHV-1 vaccination dose %%done_del%% 🔁 every year 📅 2024-03-31
|
||||||
|
```timeline
|
||||||
|
🐶;Sally
|
||||||
|
```
|
Loading…
Reference in new issue