-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
482 lines (277 loc) · 13.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html>
<head>
<title>
ACIM notes
</title>
<meta name="description" content="A guiding rope I wish I had back when I started reading the Course">
<meta name="keywords" content="A Course in Miracles quotes, quotes from ACIM, a course in miracles explained, principles of miracles, true forgiveness, genuine forgiveness">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, viewport-fit=cover">
<!-- <link rel='stylesheet'href='//fonts.googleapis.com/css?family=Open+Sans:400,400italic,600'> -->
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600" rel="stylesheet"> -->
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Montserrat'>
<!-- <link rel='stylesheet' href='//fonts.googleapis.com/css?family=Montserrat&text=ACIM%20notes'> -->
<link rel="stylesheet" href="/static/bas.css">
<!-- <link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5" crossorigin="anonymous"> -->
<!-- <script type="text/javascript" src="/static/js/my.js"> -->
<script>
function $ (selector) {
var elements = document.querySelectorAll(selector);
if (elements.length > 0) {
return (elements.length > 1) ? elements : elements[0];
}
return null;
}
</script>
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
<!-- <style>
@media (min-device-width : 1300px) {
div#wrap {
max-width: 1100px;
}
}
</style> -->
</head>
<body>
<!-- <div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.7";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script> -->
<div id="wrap">
<header class="centered">
<h1>ACIM-notes</h1>
<p style="margin-top: 0;">a guiding rope I wish I had back when I started reading the Course</p>
<nav>
<h2>
<ul>
<li><a href="/" title='my notes about ACIM'>notes</a></li>
<li><a href="/fortune-cookies/" title="random quote from ACIM">fortunes</a></li>
<!-- <li><a href="" title='online study groups'>groups</a></li>
<li><a href="">about</a></li>
<li><a href="" title='ACIM in practice'>healing</a></li> -->
</ul>
</h2>
</nav>
</header>
<script>
// highlights the active page in the nav header.
nav_links = $('nav a');
for (var i = 0; i < nav_links.length; i++) {
if ( nav_links[i].getAttribute('href') === document.location.pathname ) {
nav_links[i].classList.add("active-page");
break;
}
}
</script>
<!-- #content begin -->
<!-- <div id="content"> -->
<!-- #fb-page start -->
<!-- <aside id="fb-page"> -->
<!-- <div class="fb-page"
data-href="https://www.facebook.com/ACIMnotes/"
data-tabs="timeline"
data-height="2000"
data-small-header="true"
data-adapt-container-width="true"
data-hide-cover="true"
data-show-facepile="false">
<blockquote cite="https://www.facebook.com/ACIMnotes/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/ACIMnotes/">ACIMnotes</a></blockquote>
</div> -->
<!-- <iframe id="fb" height="100%" width="100%" allowtransparency="true" allowfullscreen="true" scrolling="no" title="fb:page Facebook Social Plugin" style="overflow-y: hidden; border: none; visibility: visible;" src="https://www.facebook.com/v2.8/plugins/page.php?adapt_container_width=true&width=330&height=2000&hide_cover=true&href=https%3A%2F%2Fwww.facebook.com%2FACIMnotes%2F&locale=en_US&sdk=joey&show_facepile=false&small_header=true&tabs=timeline" frameborder="0"></iframe> -->
<!-- </aside> -->
<!-- #fb-page end -->
<!-- #notes begin -->
<div id="notes">
<!-- <ul > -->
<!-- <section> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.0 Principles of Miracles
</p>
</blockquote>
<p>Please do not take these notes as my attempt at teaching you the Course, look at it rather as (hopefully!) the Holy Spirit's answers to my own struggles with the book...</p>
<p class="to-comments">
<a href="/notes/T-1.1.0/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.1 There is no order of difficulty in miracles. One is not "harder" or "bigger" than another.
</p>
</blockquote>
<p>ACIM begins by stating some of it's concepts that are most difficult to grasp and so they will remain unknown to you for quite awhile. Don't push it, don't try to squeeze the meaning from it but allow it to surprise you and to reveal itself for you instead...</p>
<p class="to-comments">
<a href="/notes/T-1.1.1/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.6 Miracles are natural. When they do not occur something has gone wrong.
</p>
</blockquote>
<p>This brings the light to yet another facet of the diamond which genuine forgiveness is: you practice not in it alone. Your willingness and your allowance are the key to let Divinity step in...</p>
<p class="to-comments">
<a href="/notes/T-1.1.6/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.7 Miracles are everyone's right, but purification is necessary first.
</p>
</blockquote>
<p>Fear not the images related to this word your memories have brought. Recall what author said in introduction: removing blocks to love is Course's one concern...</p>
<p class="to-comments">
<a href="/notes/T-1.1.7/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.16 Miracles are teaching devices for demonstrating it is as blessed to give as to receive.
</p>
</blockquote>
<p>Please do not use this statement to justify a charity of any kind. The author speaks about the level of the Mind...</p>
<p class="to-comments">
<a href="/notes/T-1.1.16/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.17 Miracles transcend the body.
</p>
</blockquote>
<p>Let us perform a thought experiment: imagine your reactions if you hear that wildfires have destroyed your house. Compare it to another made up news that now your enemy has burned your house...</p>
<p class="to-comments">
<a href="/notes/T-1.1.17/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.18 A miracle is a service. It is the maximal service you can render to another. It is a way of loving your neighbor as yourself.
</p>
</blockquote>
<p>What service could be better for your brother then to undo all curses you have cast on him? You don't perceive your grievances and judgments as harmful spells so far, and yet when being held against your brothers this is exactly what they are...</p>
<p class="to-comments">
<a href="/notes/T-1.1.18/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.20 Miracles reawaken the awareness that the spirit, not the body, is the altar of truth.
</p>
</blockquote>
<p>How many times you thought a heavy bank account will make you happy? How many times you thought the same about careers, romantic lovers, fame or children and villa on a sheer...</p>
<p class="to-comments">
<a href="/notes/T-1.1.20/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.25 Miracles are part of an interlocking chain of forgiveness which, when completed, is the Atonement.
</p>
</blockquote>
<p>How much humility would take for you to order all your guillotines to stop? So many efforts you have put to set this bloody operation going that now it's hard to even think of turning it on hold...</p>
<p class="to-comments">
<a href="/notes/T-1.1.25/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.26 Miracles represent freedom from fear. "Atoning" means "undoing." The undoing of fear is an essential part of the atonement value of miracles.
</p>
</blockquote>
<p>This is a very crucial topic. Fear stands among the leaders of bad decisions' motivators so when you'll grasp the depth of meaning for this subject your life will never be the same...</p>
<p class="to-comments">
<a href="/notes/T-1.1.26/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.27 A miracle is a universal blessing from God through me to all my brothers. It is the privilege of the forgiven to forgive.
</p>
</blockquote>
<p>The Prince of Peace, also known as Jesus or Jeshua or simply J calls YOU! To join his Holy Crusade in undoing your ego...</p>
<p class="to-comments">
<a href="/notes/T-1.1.27/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- <li class="pure-u-md-1-3"> -->
<article>
<blockquote class="main-quote">
<p>
T-1.1.35 Miracles are expressions of love, but they may not always have observable effects.
</p>
</blockquote>
<p>Ignorance of the love's presence does not exempt you from being loved.</p>
<p>The steps you take in this direction produce consequences you cannot comprehend...</p>
<p class="to-comments">
<a href="/notes/T-1.1.35/">Go To Note</a>
</p>
</article>
<!-- </li> -->
<!-- </section> -->
<!-- </ul> -->
</div> <!-- #notes end -->
<!-- </div> #content end -->
<footer></footer>
</div>
<!-- start onload -->
<script>
window.onload = function() {
function change_outer_links_targets (links) {
for (var index in links) {
if (links[index].hostname != window.location.hostname) {
links[index].target = '_blank'; }
}
}
change_outer_links_targets(document.links);
// make_articles_clickable()
// google analytics code
// (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
// (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
// m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
// })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
// ga('create', 'UA-90571826-1', 'auto');
// ga('send', 'pageview');
}
// end onload
</script>
</body>
</html>