This Obsidian vault contains my comprehensive Bible study notes and spiritual life documentation.
label: 📖 New Devotional
style: default
class: button-blue
actions:
- type: templaterCreateNote
templateFile: Templates/Devotional.md
folderPath: Devotional
label: 🏛️ New Church Note
style: default
class: button-green
actions:
- type: templaterCreateNote
templateFile: Templates/ChurchNotes.md
folderPath: Church
openNote: true
label: 📝 New Lesson Plan
style: default
class: button-purple
actions:
- type: templaterCreateNote
templateFile: Templates/LessonPlan.md
folderPath: Lessons
label: 👤 New Character
style: default
class: button-yellow
actions:
- type: templaterCreateNote
templateFile: Templates/CharacterProfile.md
folderPath: Characters
label: 📅 New Timeline Event
style: default
class: button-red
actions:
- type: templaterCreateNote
templateFile: Templates/TimelineEvent.md
folderPath: Timeline
label: 📚 New Book Study
style: default
class: button-blue
actions:
- type: templaterCreateNote
templateFile: Templates/BibleBook.md
folderPath: Books
/Devotional- Daily devotional journey through the Bible/Church- Notes from church services/Lessons- Lesson plans and teaching materials/Characters- Profiles of Biblical figures/Timeline- Biblical timeline events/Maps- Geographic context using Leaflet/Languages- Bible text in multiple versions and languages
label: 🔍 Bible Gateway
style: default
class: button-default
actions:
- type: open
link: https://www.biblegateway.com/
label: 📖 Blue Letter Bible
style: default
class: button-default
actions:
- type: open
link: https://www.blueletterbible.org/
label: 🗣️ Hebrew/Greek Lexicon
style: default
class: button-default
actions:
- type: open
link: https://biblehub.com/interlinear/
label: 🗺️ Bible Atlas
style: default
class: button-default
actions:
- type: open
link: https://bibleatlas.org/
- NASB (New American Standard Bible)
- ESV (English Standard Version)
- KJV (King James Version)
- Interlinear Greek/Hebrew
- Shinkaiyaku (Japanese)
const calendarData = {
entries: []
};
// Get all file creation/modification dates
for (let page of dv.pages()) {
let date = page.file.mday.toFormat('yyyy-MM-dd');
if (calendarData[date]) {
calendarData[date]++;
} else {
calendarData[date] = 1;
}
}
renderHeatmapCalendar(this.container, calendarData);
// Display the 5 most recently modified notes
dv.table(["Note", "Type", "Last Modified"],
dv.pages()
.sort(page => page.file.mtime, 'desc')
.limit(5)
.map(page => [
page.file.link,
page.tags ? page.tags[0] : "N/A",
page.file.mtime.toFormat('yyyy-MM-dd')
])
)
label: 🔄 Refresh Statistics
style: default
class: button-default
actions:
- type: command
command: Reload without saving
#bible-study #devotional #church-notes #lesson-plans