62 lines
2.5 KiB
HTML
62 lines
2.5 KiB
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Zk | The Celestine Prophecy</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||
|
<meta name="viewport" content="width=device-width" />
|
||
|
<meta charset="utf-8" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<main>
|
||
|
<header>
|
||
|
<h1>Zk | The Celestine Prophecy</h1>
|
||
|
</header>
|
||
|
<article class="content">
|
||
|
<p>Just finished it. I disagree with a few of the insights, and the novel comes off as a little trashy - like a dime-novel bought at the checkout counter. That said, there's also a good deal that I agree with, and I'm rather taken with the ideas on interpersonal relationships and how they work, and I guess I'd recommend it to a few folk. Ryan, you may want to check it out.. I'll probably give it to John Wright to read, too.</p>
|
||
|
<p>Next: non-fiction (?)
|
||
|
<em>God is a Verb: Kabbalah and the Practice of Mystical Judaism</em> - Rabbi David A. Cooper.
|
||
|
<em>78 Degrees of Wisdom: A Book of Tarot</em> - Rachel Pollack
|
||
|
<em>The Book of Thoth</em> - Aleister Crowley.</p>
|
||
|
<p>Armchair mystic :o/ It.. sorta makes sense in the terms of the First Insight, though. At least I'm getting back into it.</p>
|
||
|
<p><em>Me too. Heh heh heh.</em</p>
|
||
|
<span class="control">Expand all</span>
|
||
|
</article>
|
||
|
<footer>
|
||
|
<p>Page generated on 2007-10-08 05:27:27</p>
|
||
|
</footer>
|
||
|
</main>
|
||
|
<script type="text/javascript">
|
||
|
document.querySelectorAll('li').forEach(el => {
|
||
|
if (el.querySelectorAll('li').length !== 0) {
|
||
|
el.classList.add('has-nested', 'closed');
|
||
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
||
|
}
|
||
|
});
|
||
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
||
|
el.classList.remove('has-nested', 'closed');
|
||
|
});
|
||
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
||
|
el.querySelector('.toggle').addEventListener('click', () => {
|
||
|
el.classList.toggle('closed');
|
||
|
});
|
||
|
});
|
||
|
let expanded = false;
|
||
|
document.querySelector('.control').addEventListener('click', (e) => {
|
||
|
expanded = !expanded;
|
||
|
if (expanded) {
|
||
|
e.target.innerText = 'Collapse all';
|
||
|
} else {
|
||
|
e.target.innerText = 'Expand all';
|
||
|
}
|
||
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
||
|
if (expanded) {
|
||
|
el.classList.remove('closed');
|
||
|
} else {
|
||
|
el.classList.add('closed')
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|