diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..427b9616 --- /dev/null +++ b/.env.example @@ -0,0 +1,15 @@ +# Optional override for the hosted contact-form endpoint configured in src/config/contact.ts. +PUBLIC_CONTACT_FORM_ENDPOINT= + +# Optional comma-separated fallback recipients used by the mailto fallback. +PUBLIC_CONTACT_RECIPIENTS=directors@familyfed.ie,info@familyfed.ie,media@familyfed.ie + +# Optional override for the submissions URL configured in src/config/contact.ts. +PUBLIC_CONTACT_SUBMISSIONS_URL= + +# Optional override for the Cloudflare Web Analytics dashboard link in admin. +PUBLIC_ANALYTICS_DASHBOARD_URL= + +# Optional Plausible tracking in addition to Cloudflare Web Analytics. +PUBLIC_PLAUSIBLE_DOMAIN=familyfed.ie +PUBLIC_PLAUSIBLE_SCRIPT_SRC=https://plausible.io/js/script.js diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 434f8d38..86ffca93 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -1,25 +1,87 @@ +name: Build and publish static site + on: push: - branches: [main] + workflow_dispatch: + +concurrency: + group: site-${{ github.ref }} + cancel-in-progress: true jobs: - deploy: + build: runs-on: docker + container: + image: node:24-bookworm + timeout-minutes: 30 + env: + NODE_OPTIONS: --max-old-space-size=768 + PUBLIC_ANALYTICS_DASHBOARD_URL: ${{ secrets.PUBLIC_ANALYTICS_DASHBOARD_URL }} + PUBLIC_CONTACT_FORM_ENDPOINT: ${{ secrets.PUBLIC_CONTACT_FORM_ENDPOINT }} + PUBLIC_CONTACT_RECIPIENTS: ${{ secrets.PUBLIC_CONTACT_RECIPIENTS }} + PUBLIC_CONTACT_SUBMISSIONS_URL: ${{ secrets.PUBLIC_CONTACT_SUBMISSIONS_URL }} + PUBLIC_PLAUSIBLE_DOMAIN: ${{ secrets.PUBLIC_PLAUSIBLE_DOMAIN }} + PUBLIC_PLAUSIBLE_SCRIPT_SRC: ${{ secrets.PUBLIC_PLAUSIBLE_SCRIPT_SRC }} steps: - uses: actions/checkout@v4 - - name: Restart Nomad allocation - env: - NOMAD_ADDR: ${{ secrets.NOMAD_ADDR }} - NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} + - name: Install validation tools run: | - set -e - ALLOC_ID=$(curl -sf \ - -H "X-Nomad-Token: $NOMAD_TOKEN" \ - "$NOMAD_ADDR/v1/job/familyfed/allocations" \ - | python3 -c "import sys,json; allocs=json.load(sys.stdin); print(next(a['ID'] for a in allocs if a['ClientStatus']=='running'))") - echo "Stopping allocation to trigger fresh prestart: $ALLOC_ID" - curl -sf -X POST \ - -H "X-Nomad-Token: $NOMAD_TOKEN" \ - "$NOMAD_ADDR/v1/allocation/$ALLOC_ID/stop" - echo "Deploy triggered — Nomad will schedule a new alloc that re-fetches the site." + apt-get update -qq + apt-get install -y -q python3 + + - name: Install dependencies + run: npm ci --no-audit --no-fund + + - name: Build and validate Astro output + run: npm run check + + - name: Split public and protected admin bundles + run: | + set -eu + rm -rf bundle-public bundle-admin + mkdir -p bundle-public bundle-admin/admin bundle-admin/css + cp -a dist/. bundle-public/ + rm -rf bundle-public/admin bundle-public/admin.html + test ! -e bundle-public/admin + test ! -e bundle-public/admin.html + + cp dist/admin/index.html bundle-admin/index.html + cp dist/admin/index.html bundle-admin/admin/index.html + cp -a dist/admin/content bundle-admin/admin/content + cp dist/css/admin.css bundle-admin/css/admin.css + + - name: Install Garage publishing tools + if: github.ref == 'refs/heads/main' + run: | + set -eu + apt-get update -qq + apt-get install -y -q ca-certificates python3-venv + python3 -m venv /opt/awscli + /opt/awscli/bin/pip install --quiet awscli + + - name: Publish main to Garage + if: github.ref == 'refs/heads/main' + env: + AWS_ACCESS_KEY_ID: ${{ secrets.GARAGE_REPLICATED_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.GARAGE_REPLICATED_SECRET_ACCESS_KEY }} + AWS_DEFAULT_REGION: garage-replicated + GARAGE_S3_ENDPOINT: https://s3-replicated.bcgen.ie + run: | + set -eu + aws=/opt/awscli/bin/aws + common="--endpoint-url $GARAGE_S3_ENDPOINT --no-progress" + + $aws $common s3 sync bundle-public s3://familyfed.ie --delete \ + --cache-control 'public, max-age=3600, must-revalidate' + $aws $common s3 cp bundle-public s3://familyfed.ie --recursive \ + --exclude '*' --include '*.html' \ + --cache-control 'public, max-age=0, must-revalidate' + $aws $common s3 cp bundle-public s3://familyfed.ie --recursive \ + --exclude '*' --include '*.json' \ + --cache-control 'public, max-age=0, must-revalidate' + + $aws $common s3 sync bundle-admin s3://admin.familyfed.ie --delete \ + --cache-control 'private, max-age=0, must-revalidate' + $aws $common s3 cp bundle-admin s3://admin.familyfed.ie --recursive \ + --cache-control 'private, no-store' diff --git a/AGENTS.md b/AGENTS.md index c0efa389..cc02b214 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -14,6 +14,9 @@ migration continues. ## Working Rules - All files in this repository may be changed when needed. +- For requested website changes, deploy the completed change to the live site by + default. Do not start or present a local preview unless the user explicitly + asks for one. - When the user says to move something, move it. Do not only copy it or create a parallel structure unless the user specifically asks for a copy. - If moving files requires updating links, imports, scripts, stylesheets, image @@ -21,6 +24,8 @@ migration continues. - Keep the structure simple and close to what the user asks for. - `.forgejo/` and deployment configuration are not special unless the user says they are. +- Feature-branch Actions build and validate only. Production Garage publishing + is restricted to commits on `main`. ## Repo Map diff --git a/README.md b/README.md index 8f6dd6e3..d06b59f3 100644 --- a/README.md +++ b/README.md @@ -110,13 +110,18 @@ http://localhost:4321/ ## Deployment -This project deploys as a static Astro build. A deployment job should install -dependencies, run the build, and publish the generated `dist/` directory: +This project deploys as a static Astro build through Forgejo Actions. Every +branch push installs dependencies, builds the complete site, audits its links, +and prepares the separate public and protected-admin bundles. Feature branches +never receive Garage publishing credentials and never change production. + +Only commits on `main` synchronize the validated bundles to `familyfed.ie` and +`admin.familyfed.ie` in Garage. A manual workflow dispatch is subject to the +same branch guard: dispatching a feature branch builds it but cannot publish it. + +The equivalent local validation is: ```bash npm ci -npm run build +npm run check ``` - -Use `npm run start` only when you intentionally want Astro to serve the built -output in an environment such as a local or Nomad preview job. diff --git a/archive-source/2013-sunday-service-archive.html b/archive-source/2013-sunday-service-archive.html index 9ffa191c..173a666e 100644 --- a/archive-source/2013-sunday-service-archive.html +++ b/archive-source/2013-sunday-service-archive.html @@ -7,8 +7,11 @@ 2013 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2013/.

+ diff --git a/archive-source/2014-sunday-services.html b/archive-source/2014-sunday-services.html index baccc921..a00f2bde 100644 --- a/archive-source/2014-sunday-services.html +++ b/archive-source/2014-sunday-services.html @@ -7,8 +7,11 @@ 2014 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2014/.

+ diff --git a/archive-source/2015-sunday-services-archive.html b/archive-source/2015-sunday-services-archive.html index 5687ddc5..f90db0e2 100644 --- a/archive-source/2015-sunday-services-archive.html +++ b/archive-source/2015-sunday-services-archive.html @@ -7,8 +7,11 @@ 2015 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2015/.

+ diff --git a/archive-source/2016-sunday-service-archive.html b/archive-source/2016-sunday-service-archive.html index 6bbcf1ac..8ebda636 100644 --- a/archive-source/2016-sunday-service-archive.html +++ b/archive-source/2016-sunday-service-archive.html @@ -7,8 +7,11 @@ 2016 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2016/.

+ diff --git a/archive-source/2017-sunday-service-archive.html b/archive-source/2017-sunday-service-archive.html index e51f9133..6c5f8823 100644 --- a/archive-source/2017-sunday-service-archive.html +++ b/archive-source/2017-sunday-service-archive.html @@ -7,8 +7,11 @@ 2017 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2017/.

+ diff --git a/archive-source/2018-sunday-service-archive.html b/archive-source/2018-sunday-service-archive.html index 9c78b8be..99ae810e 100644 --- a/archive-source/2018-sunday-service-archive.html +++ b/archive-source/2018-sunday-service-archive.html @@ -7,8 +7,11 @@ 2018 Sunday Services Archive - FFWPU Ireland + +

This page has moved to /archive/sunday-services/2018/.

+ diff --git a/archive-source/about-us-organizations.html b/archive-source/about-us-organizations.html index 89788bf8..f22cc488 100644 --- a/archive-source/about-us-organizations.html +++ b/archive-source/about-us-organizations.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
@@ -138,12 +137,6 @@ The following are just a few of the logos and links to these organizations’ - - + diff --git a/archive-source/about.html b/archive-source/about.html index ba007a23..04c06ab2 100644 --- a/archive-source/about.html +++ b/archive-source/about.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2013.html b/archive-source/archive-sunday-services-2013.html index 12bcd8ee..8517daeb 100644 --- a/archive-source/archive-sunday-services-2013.html +++ b/archive-source/archive-sunday-services-2013.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2014.html b/archive-source/archive-sunday-services-2014.html index 0bf93c24..b3625f44 100644 --- a/archive-source/archive-sunday-services-2014.html +++ b/archive-source/archive-sunday-services-2014.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2015.html b/archive-source/archive-sunday-services-2015.html index dd04be57..0bd67752 100644 --- a/archive-source/archive-sunday-services-2015.html +++ b/archive-source/archive-sunday-services-2015.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2016.html b/archive-source/archive-sunday-services-2016.html index 9c43bc0d..b2edb2da 100644 --- a/archive-source/archive-sunday-services-2016.html +++ b/archive-source/archive-sunday-services-2016.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2017.html b/archive-source/archive-sunday-services-2017.html index c6785588..6516d5cc 100644 --- a/archive-source/archive-sunday-services-2017.html +++ b/archive-source/archive-sunday-services-2017.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/archive-sunday-services-2018.html b/archive-source/archive-sunday-services-2018.html index ff27592f..a57fb110 100644 --- a/archive-source/archive-sunday-services-2018.html +++ b/archive-source/archive-sunday-services-2018.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2013/08/03/news.html b/archive-source/blog/2013/08/03/news.html index 7ea814d5..f713bdca 100644 --- a/archive-source/blog/2013/08/03/news.html +++ b/archive-source/blog/2013/08/03/news.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2013/10/25/add-event.html b/archive-source/blog/2013/10/25/add-event.html index 624360ac..0cb648c0 100644 --- a/archive-source/blog/2013/10/25/add-event.html +++ b/archive-source/blog/2013/10/25/add-event.html @@ -12,20 +12,15 @@ - + - - - + + -
+
@@ -38,7 +33,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - - - - - - - - + diff --git a/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html b/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html index 9caabb8b..6df9f730 100644 --- a/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html +++ b/archive-source/blog/2014/03/30/divine-principle-introduction-evening.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html b/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html index 98e5f5a0..82bc35c1 100644 --- a/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html +++ b/archive-source/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html b/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html index 6a7d2ab8..ebec24d6 100644 --- a/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html +++ b/archive-source/blog/2015/08/26/celebrating-the-life-of-rev-moon.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" @@ -138,12 +137,6 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
- - + diff --git a/archive-source/blog/2016/01/03/happy-new-year.html b/archive-source/blog/2016/01/03/happy-new-year.html index 09780d85..36431eb4 100644 --- a/archive-source/blog/2016/01/03/happy-new-year.html +++ b/archive-source/blog/2016/01/03/happy-new-year.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
-
image_pdf

Happy New Year 2016!

-

Let go of the past year and bring on the new! Check out this article by Dplife.info:

-

2015 Wasn’t What I Thought It Would Be 

-

…and That’s Okay.

+
image_pdf
Happy New Year 2016 greeting

Happy New Year 2016!

+

Let go of the past year and bring on the new.

+

2015 Wasn’t What I Thought It Would Be

+

…and That’s Okay.

image_pdf
@@ -138,12 +137,6 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
- - + diff --git a/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html b/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html index 1459ae98..d83b183d 100644 --- a/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html +++ b/archive-source/blog/2018/05/20/jesus-christ-the-pride-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html b/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html index 70dd24a9..beb0093f 100644 --- a/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html +++ b/archive-source/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html b/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html index 999573f6..379c3fc1 100644 --- a/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html +++ b/archive-source/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html b/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html index bbccf3a5..fc3e2a43 100644 --- a/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html +++ b/archive-source/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html b/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html index 7dee6317..e75903b8 100644 --- a/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html +++ b/archive-source/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html b/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html index 06f93d87..9c1d37c8 100644 --- a/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html +++ b/archive-source/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html b/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html index 7e42b6e0..056eb295 100644 --- a/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html +++ b/archive-source/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html b/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html index 55efebeb..f926e7cc 100644 --- a/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html +++ b/archive-source/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html b/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html index 7924dd46..298d4b21 100644 --- a/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html +++ b/archive-source/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html b/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html index 18b7cce1..92f543f3 100644 --- a/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html +++ b/archive-source/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html b/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html index 249f5b55..362799b2 100644 --- a/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html +++ b/archive-source/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html b/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html index 20212759..bd67335d 100644 --- a/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html +++ b/archive-source/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html b/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html index 318e3827..63dfaf9e 100644 --- a/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html +++ b/archive-source/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html b/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html index 6b2b517e..a70072cb 100644 --- a/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html +++ b/archive-source/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html b/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html index a5a49c65..36bcfa96 100644 --- a/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html +++ b/archive-source/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html b/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html index b3e6d1d0..394db27d 100644 --- a/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html +++ b/archive-source/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html index ccdebdd2..d224c909 100644 --- a/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html b/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html index 0d22d69a..68edd77b 100644 --- a/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html +++ b/archive-source/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html b/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html index dbdba104..7116ec0f 100644 --- a/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html +++ b/archive-source/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html b/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html index b45d672f..e98e0633 100644 --- a/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html +++ b/archive-source/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html b/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html index 71e3e490..f9a38d9d 100644 --- a/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html +++ b/archive-source/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html b/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html index 4e0f9335..f687736e 100644 --- a/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html +++ b/archive-source/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html b/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html index 3b344d1d..602f818c 100644 --- a/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html +++ b/archive-source/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html b/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html index 1b462d82..29d11fc5 100644 --- a/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html +++ b/archive-source/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/for-whom-are-we-living.html b/archive-source/blog/2018/06/04/for-whom-are-we-living.html index e223c8d1..d3aaa772 100644 --- a/archive-source/blog/2018/06/04/for-whom-are-we-living.html +++ b/archive-source/blog/2018/06/04/for-whom-are-we-living.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html b/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html index b7d1b8f8..6ae3f48d 100644 --- a/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html +++ b/archive-source/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html b/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html index 2a7987c7..040db65a 100644 --- a/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html +++ b/archive-source/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html b/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html index 7f775f8c..4cf2e6dc 100644 --- a/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html +++ b/archive-source/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/let-us-untie-the-knot.html b/archive-source/blog/2018/06/04/let-us-untie-the-knot.html index 32b453f5..e93ea1dd 100644 --- a/archive-source/blog/2018/06/04/let-us-untie-the-knot.html +++ b/archive-source/blog/2018/06/04/let-us-untie-the-knot.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html b/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html index e078f967..5ef8d622 100644 --- a/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html +++ b/archive-source/blog/2018/06/04/the-lord-is-my-good-shepherd.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html index 383aa390..97f8f7e7 100644 --- a/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html b/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html index 5f40ae35..76d47aa7 100644 --- a/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html +++ b/archive-source/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html b/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html index e6df622c..6bdea76b 100644 --- a/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html +++ b/archive-source/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/heaven-is-calling-us.html b/archive-source/blog/2018/06/05/heaven-is-calling-us.html index 46271960..ad24a4de 100644 --- a/archive-source/blog/2018/06/05/heaven-is-calling-us.html +++ b/archive-source/blog/2018/06/05/heaven-is-calling-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html b/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html index 47d8e0df..e04c1fc1 100644 --- a/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html +++ b/archive-source/blog/2018/06/05/jesus-true-heart-for-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html b/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html index f4acbf78..68df3c2c 100644 --- a/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html +++ b/archive-source/blog/2018/06/05/let-the-sleeping-world-awaken.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html b/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html index f0501d9a..c0565424 100644 --- a/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html +++ b/archive-source/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html b/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html index d379ff01..2b5ea5ed 100644 --- a/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-a-victor-for-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html b/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html index e5cacc63..a79040f2 100644 --- a/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html b/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html index abc0f1d4..93def44e 100644 --- a/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html +++ b/archive-source/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html b/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html index 8ba37530..d8f83a20 100644 --- a/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html +++ b/archive-source/blog/2018/06/05/let-us-be-the-people-who-attend-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html b/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html index 230002c7..722b1ec6 100644 --- a/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html +++ b/archive-source/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html b/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html index fad2e98e..cab96ee9 100644 --- a/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html +++ b/archive-source/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html b/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html index 47b0af0e..66176f3d 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html index 42db8e01..073888ff 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html b/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html index 4a64c4bb..26f0c52a 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html b/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html index 04dd457e..f7a75b23 100644 --- a/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html +++ b/archive-source/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html b/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html index 88513e04..3ed92884 100644 --- a/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html +++ b/archive-source/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html b/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html index 4739cdb1..7a43cde0 100644 --- a/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html +++ b/archive-source/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html b/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html index 10f876f4..ff0fdd4c 100644 --- a/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html +++ b/archive-source/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html b/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html index 1a524cb5..82a199e2 100644 --- a/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html +++ b/archive-source/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html b/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html index cdaf89a6..2e480eb4 100644 --- a/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html +++ b/archive-source/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html b/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html index 8a1c6411..cdd4006d 100644 --- a/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html +++ b/archive-source/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html b/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html index 14aa4796..36c962bc 100644 --- a/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html +++ b/archive-source/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html b/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html index 62e4fd68..eb83b7fc 100644 --- a/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html +++ b/archive-source/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html b/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html index 23f3c7a1..5a4f86a3 100644 --- a/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html +++ b/archive-source/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html b/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html index 511b2d59..5d4d500c 100644 --- a/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html +++ b/archive-source/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html b/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html index d6ed9b58..7b64a1ca 100644 --- a/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html +++ b/archive-source/blog/2018/06/05/the-meaning-of-the-trinity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html b/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html index 866d843a..4fc5f2fc 100644 --- a/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html +++ b/archive-source/blog/2018/06/05/the-path-its-purpose-and-its-value.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html b/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html index 719d0349..0c39a2d6 100644 --- a/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html +++ b/archive-source/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html b/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html index 989ac2a3..1d20da7d 100644 --- a/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html +++ b/archive-source/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html b/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html index 27a4e6eb..3262bc8d 100644 --- a/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html +++ b/archive-source/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html b/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html index 8701fef5..577fab10 100644 --- a/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html +++ b/archive-source/blog/2018/06/05/when-will-we-stand-before-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html b/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html index c90e75ac..68ea29e5 100644 --- a/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html +++ b/archive-source/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html b/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html index c1859599..7531438c 100644 --- a/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html +++ b/archive-source/blog/2018/06/05/why-does-the-lord-have-to-come-back.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html b/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html index 4df33dbf..fefc609d 100644 --- a/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html +++ b/archive-source/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html b/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html index 6d43a954..a8f71c4e 100644 --- a/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html +++ b/archive-source/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html b/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html index 366421c6..d6fe96b3 100644 --- a/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html +++ b/archive-source/blog/2018/06/06/oh-father-we-welcome-you.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html b/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html index 8344dbf8..a92670d9 100644 --- a/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html +++ b/archive-source/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html b/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html index fa717282..9f795478 100644 --- a/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html +++ b/archive-source/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/to-whom-do-you-belong.html b/archive-source/blog/2018/06/06/to-whom-do-you-belong.html index d9a0161c..58a810c9 100644 --- a/archive-source/blog/2018/06/06/to-whom-do-you-belong.html +++ b/archive-source/blog/2018/06/06/to-whom-do-you-belong.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html b/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html index 56bf1623..325fd399 100644 --- a/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html +++ b/archive-source/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/at-a-field-service.html b/archive-source/blog/2018/06/07/at-a-field-service.html index 9b03ade3..7eef1a55 100644 --- a/archive-source/blog/2018/06/07/at-a-field-service.html +++ b/archive-source/blog/2018/06/07/at-a-field-service.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html b/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html index f2ccaf67..4d976e8a 100644 --- a/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html +++ b/archive-source/blog/2018/06/07/gods-possession-and-our-possession.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html b/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html index d0f3a2dc..854a7f34 100644 --- a/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html +++ b/archive-source/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html b/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html index 37826fe2..15d219ba 100644 --- a/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html +++ b/archive-source/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html b/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html index 8807ec44..b0729024 100644 --- a/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html +++ b/archive-source/blog/2018/06/07/let-us-be-persons-of-forbearance.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html b/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html index 7686aa90..2b682c25 100644 --- a/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html +++ b/archive-source/blog/2018/06/07/let-us-become-beloved-children-and-receive-the-seals.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html b/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html index 818b2afa..1b98460a 100644 --- a/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html +++ b/archive-source/blog/2018/06/07/let-us-become-someone-who-can-hold-jesus-body-and-mourn.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-become-survivors.html b/archive-source/blog/2018/06/07/let-us-become-survivors.html index 6dba014e..6777b538 100644 --- a/archive-source/blog/2018/06/07/let-us-become-survivors.html +++ b/archive-source/blog/2018/06/07/let-us-become-survivors.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html b/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html index 844e9e44..13752b12 100644 --- a/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html +++ b/archive-source/blog/2018/06/07/let-us-become-the-true-sons-god-wants.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html b/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html index e67c81c2..4e8f7798 100644 --- a/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html +++ b/archive-source/blog/2018/06/07/let-us-possess-the-everlasting-love-of-the-father.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html b/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html index 2e4e8af3..586cdc7a 100644 --- a/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html +++ b/archive-source/blog/2018/06/07/let-us-seek-and-establish-the-blessed-land-god-wants-to-administer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html b/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html index 3382f211..f860e819 100644 --- a/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html +++ b/archive-source/blog/2018/06/07/let-us-understand-the-heart-of-the-resurrected-jesus.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/the-forsaken-jesus.html b/archive-source/blog/2018/06/07/the-forsaken-jesus.html index ada58243..10b07f33 100644 --- a/archive-source/blog/2018/06/07/the-forsaken-jesus.html +++ b/archive-source/blog/2018/06/07/the-forsaken-jesus.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html b/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html index cce5164d..0239804a 100644 --- a/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html +++ b/archive-source/blog/2018/06/07/the-freedom-liberation-and-unification-god-seeks-to-attain.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html b/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html index 9ca5c7e1..9d962d1e 100644 --- a/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html +++ b/archive-source/blog/2018/06/07/the-world-of-ideology-which-we-seek.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html b/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html index e777e768..6e954ca9 100644 --- a/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html +++ b/archive-source/blog/2018/06/07/who-will-become-the-friend-of-golgotha.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html b/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html index 06bc6cdb..51f794e4 100644 --- a/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html +++ b/archive-source/blog/2018/06/07/who-will-eliminate-the-debt-of-6000-years.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html b/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html index 1f0e6035..56705fd6 100644 --- a/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html +++ b/archive-source/blog/2018/06/10/a-true-man-a-man-of-truth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html b/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html index aee9634e..1ad31f27 100644 --- a/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html +++ b/archive-source/blog/2018/06/10/god-and-humanity-should-live-together.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html b/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html index 65e81833..063ba223 100644 --- a/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html +++ b/archive-source/blog/2018/06/10/gods-will-which-we-must-untangle.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html b/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html index a586e7ee..5840de16 100644 --- a/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html +++ b/archive-source/blog/2018/06/10/heavens-sorrowful-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html b/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html index 7945e2f1..09189c6b 100644 --- a/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html +++ b/archive-source/blog/2018/06/10/i-am-relating-with-two-worlds.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html b/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html index fa7f1eea..16686c1d 100644 --- a/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html +++ b/archive-source/blog/2018/06/10/i-must-be-the-victor-for-god-standing-on-the-borderline-of-good-and-evil.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/inside-gods-stadium.html b/archive-source/blog/2018/06/10/inside-gods-stadium.html index e4b203db..761ea69b 100644 --- a/archive-source/blog/2018/06/10/inside-gods-stadium.html +++ b/archive-source/blog/2018/06/10/inside-gods-stadium.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html b/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html index abf9b4ba..6e5fc2d4 100644 --- a/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html +++ b/archive-source/blog/2018/06/10/jesus-whom-god-wanted-to-find.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html b/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html index 96e533c0..e81f7826 100644 --- a/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html +++ b/archive-source/blog/2018/06/10/let-us-fathom-the-heart-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html b/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html index 0d9d0ced..3617041f 100644 --- a/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html +++ b/archive-source/blog/2018/06/10/let-us-follow-the-way-of-jesus.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html b/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html index c75a8561..d8dbd947 100644 --- a/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html +++ b/archive-source/blog/2018/06/10/let-us-halt-in-our-steps-and-behold-the-one-who-is-protecting-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html b/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html index 84374321..7008933d 100644 --- a/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html +++ b/archive-source/blog/2018/06/10/let-us-open-our-eyes-once-more-and-behold-the-sky.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html b/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html index 0311f1c7..172620e9 100644 --- a/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html +++ b/archive-source/blog/2018/06/10/let-us-regain-the-victorious-nation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html b/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html index f774492c..5eb8cb78 100644 --- a/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html +++ b/archive-source/blog/2018/06/10/let-us-understand-god-who-wanted-to-be-proud.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/longing-for-eden.html b/archive-source/blog/2018/06/10/longing-for-eden.html index 7f89c012..203982e7 100644 --- a/archive-source/blog/2018/06/10/longing-for-eden.html +++ b/archive-source/blog/2018/06/10/longing-for-eden.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html b/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html index bce28c43..50d5c3c7 100644 --- a/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html +++ b/archive-source/blog/2018/06/10/man-is-an-explorer-in-search-of-truth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html b/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html index 0003308e..0a3e76ed 100644 --- a/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html +++ b/archive-source/blog/2018/06/10/members-who-will-live-in-gods-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html b/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html index 8ff62391..b9909b46 100644 --- a/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html +++ b/archive-source/blog/2018/06/10/men-are-destined-to-go-the-road-of-restoration-returning-home.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html b/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html index f12a2b4b..aed712a7 100644 --- a/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html +++ b/archive-source/blog/2018/06/10/my-new-self-and-the-heaven-where-my-new-self-can-dwell.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/oh-where-shall-i-go.html b/archive-source/blog/2018/06/10/oh-where-shall-i-go.html index 94eeabce..1e439b99 100644 --- a/archive-source/blog/2018/06/10/oh-where-shall-i-go.html +++ b/archive-source/blog/2018/06/10/oh-where-shall-i-go.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/parents-day.html b/archive-source/blog/2018/06/10/parents-day.html index f68797fd..c6ef8a05 100644 --- a/archive-source/blog/2018/06/10/parents-day.html +++ b/archive-source/blog/2018/06/10/parents-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/process-of-restoration.html b/archive-source/blog/2018/06/10/process-of-restoration.html index 2e89547a..dfc06d13 100644 --- a/archive-source/blog/2018/06/10/process-of-restoration.html +++ b/archive-source/blog/2018/06/10/process-of-restoration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-father-and-i.html b/archive-source/blog/2018/06/10/the-father-and-i.html index 1f1534dc..ad26b4b9 100644 --- a/archive-source/blog/2018/06/10/the-father-and-i.html +++ b/archive-source/blog/2018/06/10/the-father-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html index 7cad5fa3..a83b8107 100644 --- a/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/10/the-grieving-father-son-and-daughter-as-they-try-to-establish-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html b/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html index 005250e5..46cc19c0 100644 --- a/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html +++ b/archive-source/blog/2018/06/10/the-heart-of-heaven-in-relation-to-elijah.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html b/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html index e20c616e..0588e82e 100644 --- a/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html +++ b/archive-source/blog/2018/06/10/the-ideal-kingdom-of-heaven-our-hope.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html b/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html index f102e5f4..6cb0ea92 100644 --- a/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html +++ b/archive-source/blog/2018/06/10/the-incarnation-of-jesus-a-pioneer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html b/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html index d1ed5a2d..20e2123d 100644 --- a/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html +++ b/archive-source/blog/2018/06/10/the-path-in-search-of-the-original-homeland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html b/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html index 24fe14b0..0aec3342 100644 --- a/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html +++ b/archive-source/blog/2018/06/10/the-path-of-faith-which-should-be-examined-carefully.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html b/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html index 9aa958b4..6069cef7 100644 --- a/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html +++ b/archive-source/blog/2018/06/10/the-path-of-life-we-must-go-entertaining-hope.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html b/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html index 2773c242..3f30edb7 100644 --- a/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html +++ b/archive-source/blog/2018/06/10/the-person-who-will-serve-the-grieving-father.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-religious-persons-attitude.html b/archive-source/blog/2018/06/10/the-religious-persons-attitude.html index dbdfbd8e..7d58dcd6 100644 --- a/archive-source/blog/2018/06/10/the-religious-persons-attitude.html +++ b/archive-source/blog/2018/06/10/the-religious-persons-attitude.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html b/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html index f3755a76..3fa1b2a5 100644 --- a/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html +++ b/archive-source/blog/2018/06/10/the-sorrowful-heart-of-jesus-as-he-went-to-the-mountain.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html b/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html index 1d8a81d0..25c39ab0 100644 --- a/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html +++ b/archive-source/blog/2018/06/10/the-toil-of-god-as-he-tries-to-raise-up-his-beloved-children.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html b/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html index 725619f3..98eaf612 100644 --- a/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html +++ b/archive-source/blog/2018/06/10/the-true-sons-and-daughters-of-heavenly-father-who-will-remain-in-the-last-days.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/untitled-leaders-address.html b/archive-source/blog/2018/06/10/untitled-leaders-address.html index e8a02732..6e3bdf24 100644 --- a/archive-source/blog/2018/06/10/untitled-leaders-address.html +++ b/archive-source/blog/2018/06/10/untitled-leaders-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html b/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html index 7e193248..e731a0e7 100644 --- a/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html +++ b/archive-source/blog/2018/06/10/we-who-are-walking-a-life-course.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html b/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html index 6ff894bb..39e62cf0 100644 --- a/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html +++ b/archive-source/blog/2018/06/10/what-belongs-to-the-father-belongs-to-me.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html b/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html index 85e47d3f..950638bc 100644 --- a/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html +++ b/archive-source/blog/2018/06/10/when-we-should-stay-awake-with-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html b/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html index 4c5d4af3..53398483 100644 --- a/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html +++ b/archive-source/blog/2018/06/11/a-pioneer-must-have-endurance.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/america-and-gods-will.html b/archive-source/blog/2018/06/11/america-and-gods-will.html index 0861cceb..e89930ae 100644 --- a/archive-source/blog/2018/06/11/america-and-gods-will.html +++ b/archive-source/blog/2018/06/11/america-and-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/boundary-line.html b/archive-source/blog/2018/06/11/boundary-line.html index 551f6e88..837e2af1 100644 --- a/archive-source/blog/2018/06/11/boundary-line.html +++ b/archive-source/blog/2018/06/11/boundary-line.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/childrens-day.html b/archive-source/blog/2018/06/11/childrens-day.html index 05bcd612..6958a572 100644 --- a/archive-source/blog/2018/06/11/childrens-day.html +++ b/archive-source/blog/2018/06/11/childrens-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html b/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html index dfd5cb69..b81a98ef 100644 --- a/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html +++ b/archive-source/blog/2018/06/11/divine-providence-and-the-turning-point-of-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/gods-hope-for-america.html b/archive-source/blog/2018/06/11/gods-hope-for-america.html index b24df6dd..484f245c 100644 --- a/archive-source/blog/2018/06/11/gods-hope-for-america.html +++ b/archive-source/blog/2018/06/11/gods-hope-for-america.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/gods-will-and-christmas.html b/archive-source/blog/2018/06/11/gods-will-and-christmas.html index 96478ee8..c80dac72 100644 --- a/archive-source/blog/2018/06/11/gods-will-and-christmas.html +++ b/archive-source/blog/2018/06/11/gods-will-and-christmas.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html index ecd76fe3..d203f1f1 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-1.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html index 7940f239..64874bb6 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html index 6a106d5c..42515203 100644 --- a/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html +++ b/archive-source/blog/2018/06/11/history-of-the-unification-church-part-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html b/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html index c3f76a5f..d22ae1a8 100644 --- a/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html +++ b/archive-source/blog/2018/06/11/how-god-is-pursuing-his-restoration-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html b/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html index 951f071b..3e4530e2 100644 --- a/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html +++ b/archive-source/blog/2018/06/11/man-the-starting-point-of-hope-the-path-for-our-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/on-jesus-family.html b/archive-source/blog/2018/06/11/on-jesus-family.html index 1eb8ff5f..6f9febdf 100644 --- a/archive-source/blog/2018/06/11/on-jesus-family.html +++ b/archive-source/blog/2018/06/11/on-jesus-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/one-god-one-world-religion.html b/archive-source/blog/2018/06/11/one-god-one-world-religion.html index 90cf5087..e7a0b6a8 100644 --- a/archive-source/blog/2018/06/11/one-god-one-world-religion.html +++ b/archive-source/blog/2018/06/11/one-god-one-world-religion.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/past-and-future-generations.html b/archive-source/blog/2018/06/11/past-and-future-generations.html index 41b32e3f..2172d6fd 100644 --- a/archive-source/blog/2018/06/11/past-and-future-generations.html +++ b/archive-source/blog/2018/06/11/past-and-future-generations.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/perfection-and-gratitude.html b/archive-source/blog/2018/06/11/perfection-and-gratitude.html index 962ef122..ee708be6 100644 --- a/archive-source/blog/2018/06/11/perfection-and-gratitude.html +++ b/archive-source/blog/2018/06/11/perfection-and-gratitude.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/questions-and-answers.html b/archive-source/blog/2018/06/11/questions-and-answers.html index 2ec7b76d..e2df6c7f 100644 --- a/archive-source/blog/2018/06/11/questions-and-answers.html +++ b/archive-source/blog/2018/06/11/questions-and-answers.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/safeguard-the-unified-front.html b/archive-source/blog/2018/06/11/safeguard-the-unified-front.html index cc1c54d2..4c041b4f 100644 --- a/archive-source/blog/2018/06/11/safeguard-the-unified-front.html +++ b/archive-source/blog/2018/06/11/safeguard-the-unified-front.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/self-reflection.html b/archive-source/blog/2018/06/11/self-reflection.html index 3a46498a..329a8e18 100644 --- a/archive-source/blog/2018/06/11/self-reflection.html +++ b/archive-source/blog/2018/06/11/self-reflection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html b/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html index bb700731..6c90a4bb 100644 --- a/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html +++ b/archive-source/blog/2018/06/11/the-age-of-judgment-and-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html b/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html index 7e52c64f..f01e5942 100644 --- a/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html +++ b/archive-source/blog/2018/06/11/the-benefit-and-grace-of-this-time-in-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html b/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html index 63bc5190..8a0af29e 100644 --- a/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html +++ b/archive-source/blog/2018/06/11/the-central-figure-and-the-transitional-period.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html b/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html index 5e52e2c5..f3e6f117 100644 --- a/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html +++ b/archive-source/blog/2018/06/11/the-day-of-the-victory-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html b/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html index 00cceae8..cb92b35b 100644 --- a/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html +++ b/archive-source/blog/2018/06/11/the-final-warning-concerning-good-and-evil.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html b/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html index 0147f65c..7759727d 100644 --- a/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html +++ b/archive-source/blog/2018/06/11/the-formula-for-gods-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-ideal-world.html b/archive-source/blog/2018/06/11/the-ideal-world.html index 90193fac..7de68e9a 100644 --- a/archive-source/blog/2018/06/11/the-ideal-world.html +++ b/archive-source/blog/2018/06/11/the-ideal-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html b/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html index 4ee394f4..790cbb2f 100644 --- a/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html +++ b/archive-source/blog/2018/06/11/the-importance-of-heavenly-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html b/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html index 00b20ea0..cc1c6bc0 100644 --- a/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html +++ b/archive-source/blog/2018/06/11/the-liberation-of-heaven-and-earth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html b/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html index d2be37c3..ed674798 100644 --- a/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html +++ b/archive-source/blog/2018/06/11/the-responsibility-of-cain-and-abel.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html b/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html index 4a3c8fa8..cece42f6 100644 --- a/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html +++ b/archive-source/blog/2018/06/11/the-way-our-blessed-families-should-go.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html b/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html index 6d572aee..c7ef04c7 100644 --- a/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html +++ b/archive-source/blog/2018/06/11/things-found-most-important-in-leading-a-life-of-faith.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html b/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html index 024d4639..173456cb 100644 --- a/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html +++ b/archive-source/blog/2018/06/11/untitled-address-to-conference-of-u-s-and-international-leaders.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html b/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html index 59cb43da..4df430cf 100644 --- a/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html +++ b/archive-source/blog/2018/06/11/what-the-unification-church-is-trying-to-solve-after-taking-the-responsibility-of-jesus-on-earth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/gods-day.html b/archive-source/blog/2018/06/12/gods-day.html index 9be769b3..46be7753 100644 --- a/archive-source/blog/2018/06/12/gods-day.html +++ b/archive-source/blog/2018/06/12/gods-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html b/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html index f0864e67..cef8ba73 100644 --- a/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html +++ b/archive-source/blog/2018/06/12/how-to-witness-to-state-leaders.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/leadership-to-mft-captains.html b/archive-source/blog/2018/06/12/leadership-to-mft-captains.html index 8c02951d..e48b8126 100644 --- a/archive-source/blog/2018/06/12/leadership-to-mft-captains.html +++ b/archive-source/blog/2018/06/12/leadership-to-mft-captains.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html b/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html index be4ade29..682588b8 100644 --- a/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html +++ b/archive-source/blog/2018/06/12/let-us-meet-opportunity-well.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html b/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html index 2bc5ba8a..022009d5 100644 --- a/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html +++ b/archive-source/blog/2018/06/12/our-family-and-the-dispensation-part-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html b/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html index 5eb16769..3160379a 100644 --- a/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html +++ b/archive-source/blog/2018/06/12/our-family-in-light-of-the-dispensation-part-ii.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-blessing.html b/archive-source/blog/2018/06/12/the-blessing.html index 915a8928..09a77bb2 100644 --- a/archive-source/blog/2018/06/12/the-blessing.html +++ b/archive-source/blog/2018/06/12/the-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html b/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html index 9ce4d16e..eeec65e3 100644 --- a/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html +++ b/archive-source/blog/2018/06/12/the-dignity-of-god-and-man.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html b/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html index fd7d36ca..273f7705 100644 --- a/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html +++ b/archive-source/blog/2018/06/12/the-greatest-of-all-is-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html b/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html index af88fb9e..d5f5c91f 100644 --- a/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html +++ b/archive-source/blog/2018/06/12/the-ideal-world-of-subject-and-object.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html b/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html index 0e8d477d..1cba6337 100644 --- a/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html +++ b/archive-source/blog/2018/06/12/the-kingdom-of-god-on-earth-and-the-ideal-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-realm-of-resurrection.html b/archive-source/blog/2018/06/12/the-realm-of-resurrection.html index 94c53002..9dacf643 100644 --- a/archive-source/blog/2018/06/12/the-realm-of-resurrection.html +++ b/archive-source/blog/2018/06/12/the-realm-of-resurrection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html b/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html index e381d414..07dbaea2 100644 --- a/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html +++ b/archive-source/blog/2018/06/12/the-resurrection-of-jesus-and-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html b/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html index e7727c80..e9e25df6 100644 --- a/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html +++ b/archive-source/blog/2018/06/12/the-spirit-world-and-the-physical-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html b/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html index 57b5ddd1..d2f47c59 100644 --- a/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html +++ b/archive-source/blog/2018/06/12/the-will-of-god-and-individual-perfection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/to-whom-do-i-belong.html b/archive-source/blog/2018/06/12/to-whom-do-i-belong.html index 8d359821..81b708aa 100644 --- a/archive-source/blog/2018/06/12/to-whom-do-i-belong.html +++ b/archive-source/blog/2018/06/12/to-whom-do-i-belong.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html b/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html index 27a0d498..7aff3911 100644 --- a/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html +++ b/archive-source/blog/2018/06/12/today-in-the-light-of-dispensational-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/who-am-i.html b/archive-source/blog/2018/06/12/who-am-i.html index 80c73936..b5b4b07d 100644 --- a/archive-source/blog/2018/06/12/who-am-i.html +++ b/archive-source/blog/2018/06/12/who-am-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/who-was-i.html b/archive-source/blog/2018/06/12/who-was-i.html index cf64e8e3..700b02c8 100644 --- a/archive-source/blog/2018/06/12/who-was-i.html +++ b/archive-source/blog/2018/06/12/who-was-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/12/word-and-deed.html b/archive-source/blog/2018/06/12/word-and-deed.html index a4444fb9..c669dcda 100644 --- a/archive-source/blog/2018/06/12/word-and-deed.html +++ b/archive-source/blog/2018/06/12/word-and-deed.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/core-of-unification.html b/archive-source/blog/2018/06/13/core-of-unification.html index 47aa91d7..26566966 100644 --- a/archive-source/blog/2018/06/13/core-of-unification.html +++ b/archive-source/blog/2018/06/13/core-of-unification.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html b/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html index c1f2a78e..fafd65c3 100644 --- a/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html +++ b/archive-source/blog/2018/06/13/god-and-the-building-of-the-kingdom-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/god-depends-on-us-alone.html b/archive-source/blog/2018/06/13/god-depends-on-us-alone.html index 847fdb01..0b601b88 100644 --- a/archive-source/blog/2018/06/13/god-depends-on-us-alone.html +++ b/archive-source/blog/2018/06/13/god-depends-on-us-alone.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/good-day.html b/archive-source/blog/2018/06/13/good-day.html index 6fa57019..d3f4a9b7 100644 --- a/archive-source/blog/2018/06/13/good-day.html +++ b/archive-source/blog/2018/06/13/good-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/happy-unification-church-members.html b/archive-source/blog/2018/06/13/happy-unification-church-members.html index 770cb7da..6aaf3198 100644 --- a/archive-source/blog/2018/06/13/happy-unification-church-members.html +++ b/archive-source/blog/2018/06/13/happy-unification-church-members.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/host-of-the-future.html b/archive-source/blog/2018/06/13/host-of-the-future.html index 7ce3b181..c875f6ad 100644 --- a/archive-source/blog/2018/06/13/host-of-the-future.html +++ b/archive-source/blog/2018/06/13/host-of-the-future.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html b/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html index 5ea7d4c2..58626b99 100644 --- a/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html +++ b/archive-source/blog/2018/06/13/let-us-march-forward-to-our-heavenly-father.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/let-us-thank-god.html b/archive-source/blog/2018/06/13/let-us-thank-god.html index a1500173..b5fba0a8 100644 --- a/archive-source/blog/2018/06/13/let-us-thank-god.html +++ b/archive-source/blog/2018/06/13/let-us-thank-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/let-us-think-once-more.html b/archive-source/blog/2018/06/13/let-us-think-once-more.html index e65fe66d..938bc240 100644 --- a/archive-source/blog/2018/06/13/let-us-think-once-more.html +++ b/archive-source/blog/2018/06/13/let-us-think-once-more.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/living-sacrifice.html b/archive-source/blog/2018/06/13/living-sacrifice.html index 413d3293..7d4a8f87 100644 --- a/archive-source/blog/2018/06/13/living-sacrifice.html +++ b/archive-source/blog/2018/06/13/living-sacrifice.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/men-of-justice-rise-up.html b/archive-source/blog/2018/06/13/men-of-justice-rise-up.html index ce7c2190..116cd30c 100644 --- a/archive-source/blog/2018/06/13/men-of-justice-rise-up.html +++ b/archive-source/blog/2018/06/13/men-of-justice-rise-up.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/our-destined-relationship.html b/archive-source/blog/2018/06/13/our-destined-relationship.html index 606818c4..cd01aa9a 100644 --- a/archive-source/blog/2018/06/13/our-destined-relationship.html +++ b/archive-source/blog/2018/06/13/our-destined-relationship.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/our-newborn-selves.html b/archive-source/blog/2018/06/13/our-newborn-selves.html index 3eecd8a5..9ec9accc 100644 --- a/archive-source/blog/2018/06/13/our-newborn-selves.html +++ b/archive-source/blog/2018/06/13/our-newborn-selves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/our-pride.html b/archive-source/blog/2018/06/13/our-pride.html index 4f398f7d..42a0f8f7 100644 --- a/archive-source/blog/2018/06/13/our-pride.html +++ b/archive-source/blog/2018/06/13/our-pride.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/renewed-pride.html b/archive-source/blog/2018/06/13/renewed-pride.html index a8834d10..3a0a5669 100644 --- a/archive-source/blog/2018/06/13/renewed-pride.html +++ b/archive-source/blog/2018/06/13/renewed-pride.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html b/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html index 7991f358..4172344d 100644 --- a/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html +++ b/archive-source/blog/2018/06/13/the-23rd-anniversary-of-the-unification-church-and-the-history-of-gods-dispensation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html b/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html index b690f850..4aa07b04 100644 --- a/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html +++ b/archive-source/blog/2018/06/13/the-childrens-day-we-have-been-longing-for.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-desire-of-all-things.html b/archive-source/blog/2018/06/13/the-desire-of-all-things.html index 3102ca27..d823d73f 100644 --- a/archive-source/blog/2018/06/13/the-desire-of-all-things.html +++ b/archive-source/blog/2018/06/13/the-desire-of-all-things.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-desire-of-god.html b/archive-source/blog/2018/06/13/the-desire-of-god.html index 287d0174..9702b06e 100644 --- a/archive-source/blog/2018/06/13/the-desire-of-god.html +++ b/archive-source/blog/2018/06/13/the-desire-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-heart-of-reunion.html b/archive-source/blog/2018/06/13/the-heart-of-reunion.html index 109ffd4c..5f4657e4 100644 --- a/archive-source/blog/2018/06/13/the-heart-of-reunion.html +++ b/archive-source/blog/2018/06/13/the-heart-of-reunion.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html b/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html index ef2c534a..9d55ef70 100644 --- a/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html +++ b/archive-source/blog/2018/06/13/the-ones-who-can-receive-gods-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html b/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html index e49bb358..58e3fb34 100644 --- a/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html +++ b/archive-source/blog/2018/06/13/the-participants-in-celebrating-christmas.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html b/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html index e1bc89eb..84b1bd1a 100644 --- a/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html +++ b/archive-source/blog/2018/06/13/the-pinnacle-of-suffering.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-return-to-tears.html b/archive-source/blog/2018/06/13/the-return-to-tears.html index 7f3db8d3..064eabbe 100644 --- a/archive-source/blog/2018/06/13/the-return-to-tears.html +++ b/archive-source/blog/2018/06/13/the-return-to-tears.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html b/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html index 085f24b8..e0c40396 100644 --- a/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html +++ b/archive-source/blog/2018/06/13/the-road-of-religion-and-the-will-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html b/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html index ac49ba14..2cde9202 100644 --- a/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html +++ b/archive-source/blog/2018/06/13/the-things-that-belong-to-god-and-the-things-that-belong-to-man.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html b/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html index 98c3b2b3..945246b7 100644 --- a/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html +++ b/archive-source/blog/2018/06/13/the-tradition-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html b/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html index 39a2ef3c..119818a4 100644 --- a/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html +++ b/archive-source/blog/2018/06/13/true-parents-day-from-the-historical-point-of-view.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/all-things-depend-on-us.html b/archive-source/blog/2018/06/14/all-things-depend-on-us.html index 93a458af..5603d87e 100644 --- a/archive-source/blog/2018/06/14/all-things-depend-on-us.html +++ b/archive-source/blog/2018/06/14/all-things-depend-on-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/gods-day-1978.html b/archive-source/blog/2018/06/14/gods-day-1978.html index 3581fc2d..cbaebecb 100644 --- a/archive-source/blog/2018/06/14/gods-day-1978.html +++ b/archive-source/blog/2018/06/14/gods-day-1978.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/new-morning-of-glory.html b/archive-source/blog/2018/06/14/new-morning-of-glory.html index cf3dfd6d..0d5a35ec 100644 --- a/archive-source/blog/2018/06/14/new-morning-of-glory.html +++ b/archive-source/blog/2018/06/14/new-morning-of-glory.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/sorrow-and-tears.html b/archive-source/blog/2018/06/14/sorrow-and-tears.html index cd27657b..a9974667 100644 --- a/archive-source/blog/2018/06/14/sorrow-and-tears.html +++ b/archive-source/blog/2018/06/14/sorrow-and-tears.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html b/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html index 3134da2b..3ef3f8ac 100644 --- a/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html +++ b/archive-source/blog/2018/06/14/the-basic-formula-for-the-realization-of-the-kingdom-of-god-on-earth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/the-burden-of-destiny.html b/archive-source/blog/2018/06/14/the-burden-of-destiny.html index ace4e58b..413a94ea 100644 --- a/archive-source/blog/2018/06/14/the-burden-of-destiny.html +++ b/archive-source/blog/2018/06/14/the-burden-of-destiny.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html b/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html index 156f3726..480501f7 100644 --- a/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html +++ b/archive-source/blog/2018/06/14/the-course-of-life-and-restoration-by-indemnification.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html b/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html index 7d0a66b8..8c179c43 100644 --- a/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html +++ b/archive-source/blog/2018/06/14/the-dividing-peak-of-restoration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html b/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html index 5791e469..5153beb1 100644 --- a/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html +++ b/archive-source/blog/2018/06/14/the-will-of-god-and-thanksgiving.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html b/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html index 81160cf2..9290bbfd 100644 --- a/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html +++ b/archive-source/blog/2018/06/16/address-at-the-eighth-anniversary-of-the-777-couples-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/breaking-the-barrier.html b/archive-source/blog/2018/06/16/breaking-the-barrier.html index 2d9cb4cd..0dd22a9d 100644 --- a/archive-source/blog/2018/06/16/breaking-the-barrier.html +++ b/archive-source/blog/2018/06/16/breaking-the-barrier.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html b/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html index a64f7111..1804cbf2 100644 --- a/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html +++ b/archive-source/blog/2018/06/16/crossroads-of-life-and-death.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/for-the-future.html b/archive-source/blog/2018/06/16/for-the-future.html index ffb7a795..c9817168 100644 --- a/archive-source/blog/2018/06/16/for-the-future.html +++ b/archive-source/blog/2018/06/16/for-the-future.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/heavy-burden.html b/archive-source/blog/2018/06/16/heavy-burden.html index 8ac5df3e..ab197f67 100644 --- a/archive-source/blog/2018/06/16/heavy-burden.html +++ b/archive-source/blog/2018/06/16/heavy-burden.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/history-and-our-responsibility.html b/archive-source/blog/2018/06/16/history-and-our-responsibility.html index d44f115f..67eff9d3 100644 --- a/archive-source/blog/2018/06/16/history-and-our-responsibility.html +++ b/archive-source/blog/2018/06/16/history-and-our-responsibility.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html b/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html index ab07d301..8cce58ef 100644 --- a/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html +++ b/archive-source/blog/2018/06/16/how-to-gain-spiritual-help.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/how-we-are-born-again.html b/archive-source/blog/2018/06/16/how-we-are-born-again.html index a0395e96..6f137e45 100644 --- a/archive-source/blog/2018/06/16/how-we-are-born-again.html +++ b/archive-source/blog/2018/06/16/how-we-are-born-again.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html b/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html index c8e9cb3e..b18387d4 100644 --- a/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html +++ b/archive-source/blog/2018/06/16/i-proclaim-that-i-know.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/let-us-be-grateful.html b/archive-source/blog/2018/06/16/let-us-be-grateful.html index 03a10b4e..2bd86385 100644 --- a/archive-source/blog/2018/06/16/let-us-be-grateful.html +++ b/archive-source/blog/2018/06/16/let-us-be-grateful.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html b/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html index 3a651fa9..41b62b1a 100644 --- a/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html +++ b/archive-source/blog/2018/06/16/mainstream-of-the-dispensation-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html b/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html index 46882b6d..e52418d1 100644 --- a/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html +++ b/archive-source/blog/2018/06/16/may-the-fatherland-shine-forth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/my-life.html b/archive-source/blog/2018/06/16/my-life.html index 2ab19008..327524e7 100644 --- a/archive-source/blog/2018/06/16/my-life.html +++ b/archive-source/blog/2018/06/16/my-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/one-age-one-generation.html b/archive-source/blog/2018/06/16/one-age-one-generation.html index 4819a05c..e756cdd3 100644 --- a/archive-source/blog/2018/06/16/one-age-one-generation.html +++ b/archive-source/blog/2018/06/16/one-age-one-generation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/parents-day-2.html b/archive-source/blog/2018/06/16/parents-day-2.html index 139459f9..8e1498dd 100644 --- a/archive-source/blog/2018/06/16/parents-day-2.html +++ b/archive-source/blog/2018/06/16/parents-day-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/perseverance-and-contemplation.html b/archive-source/blog/2018/06/16/perseverance-and-contemplation.html index 43a8ea6e..a3d27c6a 100644 --- a/archive-source/blog/2018/06/16/perseverance-and-contemplation.html +++ b/archive-source/blog/2018/06/16/perseverance-and-contemplation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/preparation-for-blessing-i.html b/archive-source/blog/2018/06/16/preparation-for-blessing-i.html index 2bbff6a3..8e0fcfb9 100644 --- a/archive-source/blog/2018/06/16/preparation-for-blessing-i.html +++ b/archive-source/blog/2018/06/16/preparation-for-blessing-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html b/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html index f11d8078..6760d2f3 100644 --- a/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html +++ b/archive-source/blog/2018/06/16/preparation-for-blessing-ii.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html b/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html index f506c605..b2f9cbce 100644 --- a/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html +++ b/archive-source/blog/2018/06/16/resurrected-kingdom-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html b/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html index 81949ee5..24ee3196 100644 --- a/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html +++ b/archive-source/blog/2018/06/16/speech-to-the-one-world-crusade-europe.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/spring.html b/archive-source/blog/2018/06/16/spring.html index 6f8d8288..35ea29c5 100644 --- a/archive-source/blog/2018/06/16/spring.html +++ b/archive-source/blog/2018/06/16/spring.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html b/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html index 5c95e3fc..6ad826f6 100644 --- a/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html +++ b/archive-source/blog/2018/06/16/the-25th-year-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html b/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html index 01393d84..db41c54d 100644 --- a/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html +++ b/archive-source/blog/2018/06/16/the-age-of-new-dispensation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-age-of-repentance.html b/archive-source/blog/2018/06/16/the-age-of-repentance.html index 33db184c..0d5106e1 100644 --- a/archive-source/blog/2018/06/16/the-age-of-repentance.html +++ b/archive-source/blog/2018/06/16/the-age-of-repentance.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html b/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html index 29512bae..1a848fc2 100644 --- a/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html +++ b/archive-source/blog/2018/06/16/the-birth-of-jesus-and-the-consummation-of-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html b/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html index 6722339d..a6723f37 100644 --- a/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html +++ b/archive-source/blog/2018/06/16/the-burden-on-our-shoulders.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html b/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html index 91d471c7..6c072cb4 100644 --- a/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html +++ b/archive-source/blog/2018/06/16/the-completion-period-for-the-dispensation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-day-of-all-things.html b/archive-source/blog/2018/06/16/the-day-of-all-things.html index ae47b3af..cf9f4d66 100644 --- a/archive-source/blog/2018/06/16/the-day-of-all-things.html +++ b/archive-source/blog/2018/06/16/the-day-of-all-things.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-glorious-sortie.html b/archive-source/blog/2018/06/16/the-glorious-sortie.html index 3550dc93..7f092e3f 100644 --- a/archive-source/blog/2018/06/16/the-glorious-sortie.html +++ b/archive-source/blog/2018/06/16/the-glorious-sortie.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-go-world-brass-band.html b/archive-source/blog/2018/06/16/the-go-world-brass-band.html index 4f02e14c..140ce560 100644 --- a/archive-source/blog/2018/06/16/the-go-world-brass-band.html +++ b/archive-source/blog/2018/06/16/the-go-world-brass-band.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-inheritance-of-love.html b/archive-source/blog/2018/06/16/the-inheritance-of-love.html index a0172a7b..b7b5bd95 100644 --- a/archive-source/blog/2018/06/16/the-inheritance-of-love.html +++ b/archive-source/blog/2018/06/16/the-inheritance-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-path-of-the-chosen.html b/archive-source/blog/2018/06/16/the-path-of-the-chosen.html index 856b922e..ea4558dc 100644 --- a/archive-source/blog/2018/06/16/the-path-of-the-chosen.html +++ b/archive-source/blog/2018/06/16/the-path-of-the-chosen.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html b/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html index 5ed056ff..529bce01 100644 --- a/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html +++ b/archive-source/blog/2018/06/16/the-start-of-the-40-day-witnessing-condition.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html b/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html index 561ecfa9..efbc1dac 100644 --- a/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html +++ b/archive-source/blog/2018/06/16/time-and-our-destiny-relationship.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/to-the-crusade.html b/archive-source/blog/2018/06/16/to-the-crusade.html index b2597e8d..28b79ada 100644 --- a/archive-source/blog/2018/06/16/to-the-crusade.html +++ b/archive-source/blog/2018/06/16/to-the-crusade.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/to-the-departing-seminarians.html b/archive-source/blog/2018/06/16/to-the-departing-seminarians.html index dbed663a..879f1a3c 100644 --- a/archive-source/blog/2018/06/16/to-the-departing-seminarians.html +++ b/archive-source/blog/2018/06/16/to-the-departing-seminarians.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/to-the-matching-candidates.html b/archive-source/blog/2018/06/16/to-the-matching-candidates.html index 6cb33ed3..67b4531b 100644 --- a/archive-source/blog/2018/06/16/to-the-matching-candidates.html +++ b/archive-source/blog/2018/06/16/to-the-matching-candidates.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html b/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html index d43321af..70c6e835 100644 --- a/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html +++ b/archive-source/blog/2018/06/16/victorious-sons-and-daughters.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/washington-monument.html b/archive-source/blog/2018/06/16/washington-monument.html index 711ee3ad..4a0ae1f4 100644 --- a/archive-source/blog/2018/06/16/washington-monument.html +++ b/archive-source/blog/2018/06/16/washington-monument.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html b/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html index 8b5930ca..2ae8117a 100644 --- a/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html +++ b/archive-source/blog/2018/06/16/we-who-have-been-called-to-do-gods-work.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/when-are-we-satisfied.html b/archive-source/blog/2018/06/16/when-are-we-satisfied.html index c4a4fd69..d78a2bad 100644 --- a/archive-source/blog/2018/06/16/when-are-we-satisfied.html +++ b/archive-source/blog/2018/06/16/when-are-we-satisfied.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/where-do-we-go.html b/archive-source/blog/2018/06/16/where-do-we-go.html index 99de9a2a..1282ebb4 100644 --- a/archive-source/blog/2018/06/16/where-do-we-go.html +++ b/archive-source/blog/2018/06/16/where-do-we-go.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html b/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html index 3b980dc3..b3683d1e 100644 --- a/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html +++ b/archive-source/blog/2018/06/16/where-god-resides-and-his-course.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/16/yesterdays-and-today.html b/archive-source/blog/2018/06/16/yesterdays-and-today.html index 25307aec..719d6ad7 100644 --- a/archive-source/blog/2018/06/16/yesterdays-and-today.html +++ b/archive-source/blog/2018/06/16/yesterdays-and-today.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/eternal-happiness.html b/archive-source/blog/2018/06/18/eternal-happiness.html index 5aad874a..2ad221f3 100644 --- a/archive-source/blog/2018/06/18/eternal-happiness.html +++ b/archive-source/blog/2018/06/18/eternal-happiness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html b/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html index 79954f2d..af2e80a9 100644 --- a/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html +++ b/archive-source/blog/2018/06/18/home-church-and-the-battle-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html index 9516df90..a278a99d 100644 --- a/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/18/home-church-and-the-completion-of-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html b/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html index 1e877950..39d319d0 100644 --- a/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html +++ b/archive-source/blog/2018/06/18/let-us-restore-our-homeland-and-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/our-position.html b/archive-source/blog/2018/06/18/our-position.html index 088b495e..18b13416 100644 --- a/archive-source/blog/2018/06/18/our-position.html +++ b/archive-source/blog/2018/06/18/our-position.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/restored-family.html b/archive-source/blog/2018/06/18/restored-family.html index 2d467e04..1c277e95 100644 --- a/archive-source/blog/2018/06/18/restored-family.html +++ b/archive-source/blog/2018/06/18/restored-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html b/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html index 77b15e11..7310f83c 100644 --- a/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html +++ b/archive-source/blog/2018/06/18/the-first-day-and-our-lifetime.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/the-present-time.html b/archive-source/blog/2018/06/18/the-present-time.html index 03e0b6c8..5465120c 100644 --- a/archive-source/blog/2018/06/18/the-present-time.html +++ b/archive-source/blog/2018/06/18/the-present-time.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html b/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html index 36f07ce3..19808af0 100644 --- a/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html +++ b/archive-source/blog/2018/06/18/the-sound-of-the-bell-of-the-mind.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html b/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html index 2ee518e9..91aa9d24 100644 --- a/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html +++ b/archive-source/blog/2018/06/18/unification-church-and-heavenly-law.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/18/what-shall-we-do.html b/archive-source/blog/2018/06/18/what-shall-we-do.html index f715d2ff..f9b89ad9 100644 --- a/archive-source/blog/2018/06/18/what-shall-we-do.html +++ b/archive-source/blog/2018/06/18/what-shall-we-do.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html index d871fd46..24a3c062 100644 --- a/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/19/25th-anniversary-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html b/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html index 3d06e4a2..d08cff58 100644 --- a/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html +++ b/archive-source/blog/2018/06/19/abels-right-path-from-the-providential-point-of-view.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/childrens-day-and-tradition.html b/archive-source/blog/2018/06/19/childrens-day-and-tradition.html index 192e7b2d..37e1b5c1 100644 --- a/archive-source/blog/2018/06/19/childrens-day-and-tradition.html +++ b/archive-source/blog/2018/06/19/childrens-day-and-tradition.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/day-of-all-things.html b/archive-source/blog/2018/06/19/day-of-all-things.html index dd7f2a73..9ba9babe 100644 --- a/archive-source/blog/2018/06/19/day-of-all-things.html +++ b/archive-source/blog/2018/06/19/day-of-all-things.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html b/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html index 48914414..e7077c42 100644 --- a/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html +++ b/archive-source/blog/2018/06/19/day-of-the-victory-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/do-not-be-discouraged.html b/archive-source/blog/2018/06/19/do-not-be-discouraged.html index 054ddad2..77f73a9c 100644 --- a/archive-source/blog/2018/06/19/do-not-be-discouraged.html +++ b/archive-source/blog/2018/06/19/do-not-be-discouraged.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/god-of-lamentation.html b/archive-source/blog/2018/06/19/god-of-lamentation.html index 4f7fe9a4..0c2df42d 100644 --- a/archive-source/blog/2018/06/19/god-of-lamentation.html +++ b/archive-source/blog/2018/06/19/god-of-lamentation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/heaven-and-us.html b/archive-source/blog/2018/06/19/heaven-and-us.html index e263583e..a4249700 100644 --- a/archive-source/blog/2018/06/19/heaven-and-us.html +++ b/archive-source/blog/2018/06/19/heaven-and-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html b/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html index f2845e57..e96601bb 100644 --- a/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html +++ b/archive-source/blog/2018/06/19/historical-view-of-the-dispensation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/house-of-providence.html b/archive-source/blog/2018/06/19/house-of-providence.html index 2cda3f6a..347f6401 100644 --- a/archive-source/blog/2018/06/19/house-of-providence.html +++ b/archive-source/blog/2018/06/19/house-of-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/ideal-home.html b/archive-source/blog/2018/06/19/ideal-home.html index 409e71ec..184829da 100644 --- a/archive-source/blog/2018/06/19/ideal-home.html +++ b/archive-source/blog/2018/06/19/ideal-home.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html b/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html index 2fb4bc9a..93b15942 100644 --- a/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html +++ b/archive-source/blog/2018/06/19/let-us-analyze-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/let-us-know-ourselves.html b/archive-source/blog/2018/06/19/let-us-know-ourselves.html index 6b606388..eb59dc51 100644 --- a/archive-source/blog/2018/06/19/let-us-know-ourselves.html +++ b/archive-source/blog/2018/06/19/let-us-know-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/let-us-think.html b/archive-source/blog/2018/06/19/let-us-think.html index 7badf6c1..4537c6d1 100644 --- a/archive-source/blog/2018/06/19/let-us-think.html +++ b/archive-source/blog/2018/06/19/let-us-think.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html b/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html index c721a690..39756861 100644 --- a/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html +++ b/archive-source/blog/2018/06/19/mankind-and-the-ideal-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/men-of-god.html b/archive-source/blog/2018/06/19/men-of-god.html index 1188a59f..90e73773 100644 --- a/archive-source/blog/2018/06/19/men-of-god.html +++ b/archive-source/blog/2018/06/19/men-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/our-one-life.html b/archive-source/blog/2018/06/19/our-one-life.html index 21945fd8..822dc260 100644 --- a/archive-source/blog/2018/06/19/our-one-life.html +++ b/archive-source/blog/2018/06/19/our-one-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/our-present-position.html b/archive-source/blog/2018/06/19/our-present-position.html index 1e32e2a2..35c0e30d 100644 --- a/archive-source/blog/2018/06/19/our-present-position.html +++ b/archive-source/blog/2018/06/19/our-present-position.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/record-setter-of-history.html b/archive-source/blog/2018/06/19/record-setter-of-history.html index c340564b..290b2fd3 100644 --- a/archive-source/blog/2018/06/19/record-setter-of-history.html +++ b/archive-source/blog/2018/06/19/record-setter-of-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/reflection-upon-life.html b/archive-source/blog/2018/06/19/reflection-upon-life.html index 476ac9a0..063942bf 100644 --- a/archive-source/blog/2018/06/19/reflection-upon-life.html +++ b/archive-source/blog/2018/06/19/reflection-upon-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/return-to-hometown.html b/archive-source/blog/2018/06/19/return-to-hometown.html index 689ea383..ed3983f5 100644 --- a/archive-source/blog/2018/06/19/return-to-hometown.html +++ b/archive-source/blog/2018/06/19/return-to-hometown.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/spring-season-of-the-providence.html b/archive-source/blog/2018/06/19/spring-season-of-the-providence.html index 08014cd0..3e9fcf7f 100644 --- a/archive-source/blog/2018/06/19/spring-season-of-the-providence.html +++ b/archive-source/blog/2018/06/19/spring-season-of-the-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/territory-of-goodness.html b/archive-source/blog/2018/06/19/territory-of-goodness.html index bbad2ba6..ec5278da 100644 --- a/archive-source/blog/2018/06/19/territory-of-goodness.html +++ b/archive-source/blog/2018/06/19/territory-of-goodness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html b/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html index bb146171..738bb384 100644 --- a/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html +++ b/archive-source/blog/2018/06/19/thanksgiving-to-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html b/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html index 366edb2a..a3cbbe55 100644 --- a/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html +++ b/archive-source/blog/2018/06/19/the-contrast-between-secular-people-and-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-importance-of-prayer.html b/archive-source/blog/2018/06/19/the-importance-of-prayer.html index d47bd97e..b6011e76 100644 --- a/archive-source/blog/2018/06/19/the-importance-of-prayer.html +++ b/archive-source/blog/2018/06/19/the-importance-of-prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-mission-of-our-life.html b/archive-source/blog/2018/06/19/the-mission-of-our-life.html index 4ed09ec2..c80f5c55 100644 --- a/archive-source/blog/2018/06/19/the-mission-of-our-life.html +++ b/archive-source/blog/2018/06/19/the-mission-of-our-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html b/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html index bcfc0555..aa5ca297 100644 --- a/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html +++ b/archive-source/blog/2018/06/19/the-original-base-of-cosmic-completion.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html b/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html index 33cafc4c..c7030811 100644 --- a/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html +++ b/archive-source/blog/2018/06/19/the-true-meaning-of-christmas.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-trust-placed-in-us.html b/archive-source/blog/2018/06/19/the-trust-placed-in-us.html index 1a9188c1..9749396a 100644 --- a/archive-source/blog/2018/06/19/the-trust-placed-in-us.html +++ b/archive-source/blog/2018/06/19/the-trust-placed-in-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html b/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html index c0ff77d5..b6befe6d 100644 --- a/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html +++ b/archive-source/blog/2018/06/19/the-way-of-prosperity-and-defeat.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/true-couple.html b/archive-source/blog/2018/06/19/true-couple.html index 8237362f..5fc04c2e 100644 --- a/archive-source/blog/2018/06/19/true-couple.html +++ b/archive-source/blog/2018/06/19/true-couple.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html b/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html index 4024ab29..35661549 100644 --- a/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html +++ b/archive-source/blog/2018/06/19/true-parents-day-and-our-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html b/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html index 67818cc2..a8849b6b 100644 --- a/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html +++ b/archive-source/blog/2018/06/19/what-kind-of-thought-do-you-have.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html b/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html index e1cfac48..83c06143 100644 --- a/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html +++ b/archive-source/blog/2018/06/20/christmas-in-view-of-the-will-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/core-love-and-indemnity.html b/archive-source/blog/2018/06/20/core-love-and-indemnity.html index 13469076..e0196572 100644 --- a/archive-source/blog/2018/06/20/core-love-and-indemnity.html +++ b/archive-source/blog/2018/06/20/core-love-and-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/cross-over-the-boundary.html b/archive-source/blog/2018/06/20/cross-over-the-boundary.html index 3f1fb361..0f2074c2 100644 --- a/archive-source/blog/2018/06/20/cross-over-the-boundary.html +++ b/archive-source/blog/2018/06/20/cross-over-the-boundary.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/day-of-all-things-2.html b/archive-source/blog/2018/06/20/day-of-all-things-2.html index 1840c79e..10dc505b 100644 --- a/archive-source/blog/2018/06/20/day-of-all-things-2.html +++ b/archive-source/blog/2018/06/20/day-of-all-things-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html b/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html index ce6dc4d9..32e13f61 100644 --- a/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html +++ b/archive-source/blog/2018/06/20/gods-day-and-my-congratulations.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/grateful-gods-day.html b/archive-source/blog/2018/06/20/grateful-gods-day.html index a0919845..643ce3e9 100644 --- a/archive-source/blog/2018/06/20/grateful-gods-day.html +++ b/archive-source/blog/2018/06/20/grateful-gods-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/historical-childrens-day.html b/archive-source/blog/2018/06/20/historical-childrens-day.html index fe11e79a..02d1f228 100644 --- a/archive-source/blog/2018/06/20/historical-childrens-day.html +++ b/archive-source/blog/2018/06/20/historical-childrens-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html b/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html index a989ee13..8a5ce150 100644 --- a/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html +++ b/archive-source/blog/2018/06/20/historical-standard-of-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html b/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html index fd46dfba..54745ff4 100644 --- a/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html +++ b/archive-source/blog/2018/06/20/history-of-the-providence-through-restoration-by-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/home-church-and-myself.html b/archive-source/blog/2018/06/20/home-church-and-myself.html index ab62a91a..c8121fd3 100644 --- a/archive-source/blog/2018/06/20/home-church-and-myself.html +++ b/archive-source/blog/2018/06/20/home-church-and-myself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html index b69088e8..66677e25 100644 --- a/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/home-church-is-my-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html index 4764c148..60f6bb0a 100644 --- a/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/home-church-is-the-base-of-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html b/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html index 34af1382..ab989ad2 100644 --- a/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html +++ b/archive-source/blog/2018/06/20/i-am-the-center-of-the-whole.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/ideal-nation-of-god.html b/archive-source/blog/2018/06/20/ideal-nation-of-god.html index b4a856f5..8c4a7fcb 100644 --- a/archive-source/blog/2018/06/20/ideal-nation-of-god.html +++ b/archive-source/blog/2018/06/20/ideal-nation-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/individual-course-of-life.html b/archive-source/blog/2018/06/20/individual-course-of-life.html index 1ea38b7b..a2e089ce 100644 --- a/archive-source/blog/2018/06/20/individual-course-of-life.html +++ b/archive-source/blog/2018/06/20/individual-course-of-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/let-us-give-thanks.html b/archive-source/blog/2018/06/20/let-us-give-thanks.html index 662f17a1..96ec705e 100644 --- a/archive-source/blog/2018/06/20/let-us-give-thanks.html +++ b/archive-source/blog/2018/06/20/let-us-give-thanks.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/let-us-set-the-record.html b/archive-source/blog/2018/06/20/let-us-set-the-record.html index fd8623f2..14eb121a 100644 --- a/archive-source/blog/2018/06/20/let-us-set-the-record.html +++ b/archive-source/blog/2018/06/20/let-us-set-the-record.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html b/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html index a3ca17c7..3ae3629d 100644 --- a/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html +++ b/archive-source/blog/2018/06/20/life-of-experience-in-the-realm-of-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/line-of-limitation.html b/archive-source/blog/2018/06/20/line-of-limitation.html index 828db1c5..749e0ce5 100644 --- a/archive-source/blog/2018/06/20/line-of-limitation.html +++ b/archive-source/blog/2018/06/20/line-of-limitation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/liquidation-and-blessing.html b/archive-source/blog/2018/06/20/liquidation-and-blessing.html index ac11dcd3..35f2cf2c 100644 --- a/archive-source/blog/2018/06/20/liquidation-and-blessing.html +++ b/archive-source/blog/2018/06/20/liquidation-and-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/myself.html b/archive-source/blog/2018/06/20/myself.html index ac288e30..57701c92 100644 --- a/archive-source/blog/2018/06/20/myself.html +++ b/archive-source/blog/2018/06/20/myself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/noble-dream.html b/archive-source/blog/2018/06/20/noble-dream.html index 22d57830..5f3c4a5e 100644 --- a/archive-source/blog/2018/06/20/noble-dream.html +++ b/archive-source/blog/2018/06/20/noble-dream.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/our-duty-our-mission.html b/archive-source/blog/2018/06/20/our-duty-our-mission.html index 80bd6469..876bd297 100644 --- a/archive-source/blog/2018/06/20/our-duty-our-mission.html +++ b/archive-source/blog/2018/06/20/our-duty-our-mission.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/our-identity.html b/archive-source/blog/2018/06/20/our-identity.html index cb52089e..6c774c4b 100644 --- a/archive-source/blog/2018/06/20/our-identity.html +++ b/archive-source/blog/2018/06/20/our-identity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/our-pride-2.html b/archive-source/blog/2018/06/20/our-pride-2.html index e6a75dca..e4311064 100644 --- a/archive-source/blog/2018/06/20/our-pride-2.html +++ b/archive-source/blog/2018/06/20/our-pride-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/our-standard.html b/archive-source/blog/2018/06/20/our-standard.html index c324dd54..847fd876 100644 --- a/archive-source/blog/2018/06/20/our-standard.html +++ b/archive-source/blog/2018/06/20/our-standard.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/our-tradition.html b/archive-source/blog/2018/06/20/our-tradition.html index 687fb5d0..9d475fcb 100644 --- a/archive-source/blog/2018/06/20/our-tradition.html +++ b/archive-source/blog/2018/06/20/our-tradition.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/parents-day-and-this-age.html b/archive-source/blog/2018/06/20/parents-day-and-this-age.html index bada5955..39963550 100644 --- a/archive-source/blog/2018/06/20/parents-day-and-this-age.html +++ b/archive-source/blog/2018/06/20/parents-day-and-this-age.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/persecution-and-blessing.html b/archive-source/blog/2018/06/20/persecution-and-blessing.html index 88c4bdf2..5535ca9b 100644 --- a/archive-source/blog/2018/06/20/persecution-and-blessing.html +++ b/archive-source/blog/2018/06/20/persecution-and-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/prayer.html b/archive-source/blog/2018/06/20/prayer.html index 8d5a6f40..10ddfa03 100644 --- a/archive-source/blog/2018/06/20/prayer.html +++ b/archive-source/blog/2018/06/20/prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/searching-after-true-parents.html b/archive-source/blog/2018/06/20/searching-after-true-parents.html index 56e2a325..35664184 100644 --- a/archive-source/blog/2018/06/20/searching-after-true-parents.html +++ b/archive-source/blog/2018/06/20/searching-after-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/seeking-the-true-master.html b/archive-source/blog/2018/06/20/seeking-the-true-master.html index 7f4ca342..9e6cc130 100644 --- a/archive-source/blog/2018/06/20/seeking-the-true-master.html +++ b/archive-source/blog/2018/06/20/seeking-the-true-master.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/stony-path-of-death.html b/archive-source/blog/2018/06/20/stony-path-of-death.html index b13b4918..e29a9d72 100644 --- a/archive-source/blog/2018/06/20/stony-path-of-death.html +++ b/archive-source/blog/2018/06/20/stony-path-of-death.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-best-thing.html b/archive-source/blog/2018/06/20/the-best-thing.html index 1caf537f..95fc407a 100644 --- a/archive-source/blog/2018/06/20/the-best-thing.html +++ b/archive-source/blog/2018/06/20/the-best-thing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-center-and-my-position.html b/archive-source/blog/2018/06/20/the-center-and-my-position.html index 3fc2a835..131ef834 100644 --- a/archive-source/blog/2018/06/20/the-center-and-my-position.html +++ b/archive-source/blog/2018/06/20/the-center-and-my-position.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html b/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html index 1d8e4a4a..78ab39b6 100644 --- a/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html +++ b/archive-source/blog/2018/06/20/the-completion-of-the-providence-and-parents-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html b/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html index 4b0533ba..263242b1 100644 --- a/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html +++ b/archive-source/blog/2018/06/20/the-day-of-the-victory-of-heaven-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html b/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html index 126c0e39..36fcdec8 100644 --- a/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html +++ b/archive-source/blog/2018/06/20/the-dispensation-of-restoration-and-myself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-necessity-of-prayer.html b/archive-source/blog/2018/06/20/the-necessity-of-prayer.html index a2043d57..46f2380e 100644 --- a/archive-source/blog/2018/06/20/the-necessity-of-prayer.html +++ b/archive-source/blog/2018/06/20/the-necessity-of-prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-public-and-private-way.html b/archive-source/blog/2018/06/20/the-public-and-private-way.html index fd13fdbb..a35d38fb 100644 --- a/archive-source/blog/2018/06/20/the-public-and-private-way.html +++ b/archive-source/blog/2018/06/20/the-public-and-private-way.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-realm-of-existence.html b/archive-source/blog/2018/06/20/the-realm-of-existence.html index d24f8958..cff70637 100644 --- a/archive-source/blog/2018/06/20/the-realm-of-existence.html +++ b/archive-source/blog/2018/06/20/the-realm-of-existence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html b/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html index 38802f34..cfce240a 100644 --- a/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html +++ b/archive-source/blog/2018/06/20/the-things-we-want-to-be-proud-of.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html b/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html index 11c309b8..86f366c6 100644 --- a/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html +++ b/archive-source/blog/2018/06/20/the-two-worlds-of-good-and-evil.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-victorious-day.html b/archive-source/blog/2018/06/20/the-victorious-day.html index 39a5cbd0..c06b2a66 100644 --- a/archive-source/blog/2018/06/20/the-victorious-day.html +++ b/archive-source/blog/2018/06/20/the-victorious-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-way-of-original-form.html b/archive-source/blog/2018/06/20/the-way-of-original-form.html index 8e5220b5..2e600587 100644 --- a/archive-source/blog/2018/06/20/the-way-of-original-form.html +++ b/archive-source/blog/2018/06/20/the-way-of-original-form.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-way-of-tuna.html b/archive-source/blog/2018/06/20/the-way-of-tuna.html index 8e385ba9..8dac950d 100644 --- a/archive-source/blog/2018/06/20/the-way-of-tuna.html +++ b/archive-source/blog/2018/06/20/the-way-of-tuna.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html b/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html index 8aff5b45..aec69c3b 100644 --- a/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html +++ b/archive-source/blog/2018/06/20/the-world-of-good-and-evil-and-my-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/things-that-are-important-to-you.html b/archive-source/blog/2018/06/20/things-that-are-important-to-you.html index 6ac8893f..8898e159 100644 --- a/archive-source/blog/2018/06/20/things-that-are-important-to-you.html +++ b/archive-source/blog/2018/06/20/things-that-are-important-to-you.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/thinking-back-historically.html b/archive-source/blog/2018/06/20/thinking-back-historically.html index b6428848..450c96b5 100644 --- a/archive-source/blog/2018/06/20/thinking-back-historically.html +++ b/archive-source/blog/2018/06/20/thinking-back-historically.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/to-the-mft.html b/archive-source/blog/2018/06/20/to-the-mft.html index 9d43f89c..921b75c0 100644 --- a/archive-source/blog/2018/06/20/to-the-mft.html +++ b/archive-source/blog/2018/06/20/to-the-mft.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/total-self-reevaluation.html b/archive-source/blog/2018/06/20/total-self-reevaluation.html index 7c3a0295..966cc407 100644 --- a/archive-source/blog/2018/06/20/total-self-reevaluation.html +++ b/archive-source/blog/2018/06/20/total-self-reevaluation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html b/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html index 6a7c0c77..03a7fea6 100644 --- a/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html +++ b/archive-source/blog/2018/06/20/true-parents-and-our-responsibility.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/true-parents-mission.html b/archive-source/blog/2018/06/20/true-parents-mission.html index ccbf9f1b..91ace206 100644 --- a/archive-source/blog/2018/06/20/true-parents-mission.html +++ b/archive-source/blog/2018/06/20/true-parents-mission.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html b/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html index c23561a8..48fe2c50 100644 --- a/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html +++ b/archive-source/blog/2018/06/20/wanting-to-live-in-the-kingdom-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html b/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html index c4edc7ba..b489c555 100644 --- a/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html +++ b/archive-source/blog/2018/06/20/who-is-god-and-who-am-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/destiny-and-judgment.html b/archive-source/blog/2018/06/22/destiny-and-judgment.html index 606fbd0b..171ae39c 100644 --- a/archive-source/blog/2018/06/22/destiny-and-judgment.html +++ b/archive-source/blog/2018/06/22/destiny-and-judgment.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html b/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html index 5121d3da..f94b4d2d 100644 --- a/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html +++ b/archive-source/blog/2018/06/22/everyone-is-heading-somewhere.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/god-and-my-home.html b/archive-source/blog/2018/06/22/god-and-my-home.html index 777a6412..7b8f89f2 100644 --- a/archive-source/blog/2018/06/22/god-and-my-home.html +++ b/archive-source/blog/2018/06/22/god-and-my-home.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/god-and-us.html b/archive-source/blog/2018/06/22/god-and-us.html index 9956dfe6..af256e9c 100644 --- a/archive-source/blog/2018/06/22/god-and-us.html +++ b/archive-source/blog/2018/06/22/god-and-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html b/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html index 8819b26e..31733f40 100644 --- a/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html +++ b/archive-source/blog/2018/06/22/ideal-family-and-ideal-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/in-the-presence-of-god.html b/archive-source/blog/2018/06/22/in-the-presence-of-god.html index ece84ea1..bdffda15 100644 --- a/archive-source/blog/2018/06/22/in-the-presence-of-god.html +++ b/archive-source/blog/2018/06/22/in-the-presence-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/let-us-protect-ourselves.html b/archive-source/blog/2018/06/22/let-us-protect-ourselves.html index 24f38745..748ef35e 100644 --- a/archive-source/blog/2018/06/22/let-us-protect-ourselves.html +++ b/archive-source/blog/2018/06/22/let-us-protect-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/public-life.html b/archive-source/blog/2018/06/22/public-life.html index 256cae70..09369d2a 100644 --- a/archive-source/blog/2018/06/22/public-life.html +++ b/archive-source/blog/2018/06/22/public-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html b/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html index 03ce482a..6397869b 100644 --- a/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html +++ b/archive-source/blog/2018/06/22/the-deep-desire-of-our-original-nature.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html b/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html index df496d8e..caa2e0ef 100644 --- a/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html +++ b/archive-source/blog/2018/06/22/the-ideal-world-of-adam.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html b/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html index 51eda951..c6e028fe 100644 --- a/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html +++ b/archive-source/blog/2018/06/22/the-present-situation-centering-upon-the-will-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-road-of-gods-will.html b/archive-source/blog/2018/06/22/the-road-of-gods-will.html index d1791309..72bf366d 100644 --- a/archive-source/blog/2018/06/22/the-road-of-gods-will.html +++ b/archive-source/blog/2018/06/22/the-road-of-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html b/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html index 154f8213..bd854366 100644 --- a/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html +++ b/archive-source/blog/2018/06/22/the-road-of-the-saint-and-the-righteous-man.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-vibration-of-true-love.html b/archive-source/blog/2018/06/22/the-vibration-of-true-love.html index 6c60500e..ebb7a219 100644 --- a/archive-source/blog/2018/06/22/the-vibration-of-true-love.html +++ b/archive-source/blog/2018/06/22/the-vibration-of-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html b/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html index ce1f27bb..732826ca 100644 --- a/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html +++ b/archive-source/blog/2018/06/22/the-victorious-person-and-the-defeated-person.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html b/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html index 4efef079..6388b389 100644 --- a/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html +++ b/archive-source/blog/2018/06/22/total-completion-of-the-ideal.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/true-parents-day.html b/archive-source/blog/2018/06/22/true-parents-day.html index dbfbe40e..19587a9f 100644 --- a/archive-source/blog/2018/06/22/true-parents-day.html +++ b/archive-source/blog/2018/06/22/true-parents-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/victory-and-peace.html b/archive-source/blog/2018/06/22/victory-and-peace.html index 69a85e0e..e53655f6 100644 --- a/archive-source/blog/2018/06/22/victory-and-peace.html +++ b/archive-source/blog/2018/06/22/victory-and-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/victory-of-god.html b/archive-source/blog/2018/06/22/victory-of-god.html index 47b46e01..2a9f0ac1 100644 --- a/archive-source/blog/2018/06/22/victory-of-god.html +++ b/archive-source/blog/2018/06/22/victory-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html b/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html index e09b00dd..e50bcaf7 100644 --- a/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html +++ b/archive-source/blog/2018/06/22/victory-of-home-church-midnight-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html b/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html index 69dd2690..fea66156 100644 --- a/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html +++ b/archive-source/blog/2018/06/22/victory-of-home-church-morning-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/about-myself.html b/archive-source/blog/2018/06/23/about-myself.html index c2a9fa63..d9e78790 100644 --- a/archive-source/blog/2018/06/23/about-myself.html +++ b/archive-source/blog/2018/06/23/about-myself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html b/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html index 48ca13c0..14585179 100644 --- a/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html +++ b/archive-source/blog/2018/06/23/absolute-values-and-the-new-cultural-revolution.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html b/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html index 1278b132..f03564b2 100644 --- a/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html +++ b/archive-source/blog/2018/06/23/analysis-of-the-present-time-and-the-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/before-and-after-the-blessing.html b/archive-source/blog/2018/06/23/before-and-after-the-blessing.html index 91b6230d..e1328009 100644 --- a/archive-source/blog/2018/06/23/before-and-after-the-blessing.html +++ b/archive-source/blog/2018/06/23/before-and-after-the-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/blessed-family.html b/archive-source/blog/2018/06/23/blessed-family.html index a25a999b..61a2c73c 100644 --- a/archive-source/blog/2018/06/23/blessed-family.html +++ b/archive-source/blog/2018/06/23/blessed-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/childrens-day-1982.html b/archive-source/blog/2018/06/23/childrens-day-1982.html index 2237a70c..8fea805e 100644 --- a/archive-source/blog/2018/06/23/childrens-day-1982.html +++ b/archive-source/blog/2018/06/23/childrens-day-1982.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/childrens-day-2.html b/archive-source/blog/2018/06/23/childrens-day-2.html index cd8d636f..c79eac8d 100644 --- a/archive-source/blog/2018/06/23/childrens-day-2.html +++ b/archive-source/blog/2018/06/23/childrens-day-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/creation-of-the-fatherland.html b/archive-source/blog/2018/06/23/creation-of-the-fatherland.html index 6deb570b..d939fad9 100644 --- a/archive-source/blog/2018/06/23/creation-of-the-fatherland.html +++ b/archive-source/blog/2018/06/23/creation-of-the-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/day-of-all-things-1984.html b/archive-source/blog/2018/06/23/day-of-all-things-1984.html index 7e7441e8..19e0c150 100644 --- a/archive-source/blog/2018/06/23/day-of-all-things-1984.html +++ b/archive-source/blog/2018/06/23/day-of-all-things-1984.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/day-of-heavenly-victory.html b/archive-source/blog/2018/06/23/day-of-heavenly-victory.html index cd275125..6a58d124 100644 --- a/archive-source/blog/2018/06/23/day-of-heavenly-victory.html +++ b/archive-source/blog/2018/06/23/day-of-heavenly-victory.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/emergency-time-period.html b/archive-source/blog/2018/06/23/emergency-time-period.html index 34820e2f..0510076e 100644 --- a/archive-source/blog/2018/06/23/emergency-time-period.html +++ b/archive-source/blog/2018/06/23/emergency-time-period.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/farewell-speech.html b/archive-source/blog/2018/06/23/farewell-speech.html index e1f57fac..f61b0d37 100644 --- a/archive-source/blog/2018/06/23/farewell-speech.html +++ b/archive-source/blog/2018/06/23/farewell-speech.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html b/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html index 8aafbcf5..173e0ff0 100644 --- a/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html +++ b/archive-source/blog/2018/06/23/final-world-centered-upon-good-and-evil.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html b/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html index c138ba60..1915cb6a 100644 --- a/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html +++ b/archive-source/blog/2018/06/23/generation-record-of-the-true-parents-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html b/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html index 2ded0d50..ed894fb1 100644 --- a/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html +++ b/archive-source/blog/2018/06/23/god-the-contemporary-discussion.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/gods-day-1983.html b/archive-source/blog/2018/06/23/gods-day-1983.html index 4b5b6178..daa2a714 100644 --- a/archive-source/blog/2018/06/23/gods-day-1983.html +++ b/archive-source/blog/2018/06/23/gods-day-1983.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/gods-day-1984.html b/archive-source/blog/2018/06/23/gods-day-1984.html index 770cff8b..0995b72b 100644 --- a/archive-source/blog/2018/06/23/gods-day-1984.html +++ b/archive-source/blog/2018/06/23/gods-day-1984.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/heavenly-life.html b/archive-source/blog/2018/06/23/heavenly-life.html index 4e0538fe..767c2c43 100644 --- a/archive-source/blog/2018/06/23/heavenly-life.html +++ b/archive-source/blog/2018/06/23/heavenly-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html b/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html index 17029242..a1a84371 100644 --- a/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html +++ b/archive-source/blog/2018/06/23/heavens-side-and-satans-side.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html b/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html index 46cffcb1..9bb66494 100644 --- a/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html +++ b/archive-source/blog/2018/06/23/home-church-is-our-land-of-settlement.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/in-search-of-our-home.html b/archive-source/blog/2018/06/23/in-search-of-our-home.html index 38457210..63a700d7 100644 --- a/archive-source/blog/2018/06/23/in-search-of-our-home.html +++ b/archive-source/blog/2018/06/23/in-search-of-our-home.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/let-this-be-a-good-year.html b/archive-source/blog/2018/06/23/let-this-be-a-good-year.html index 6f031c34..3e92bcb4 100644 --- a/archive-source/blog/2018/06/23/let-this-be-a-good-year.html +++ b/archive-source/blog/2018/06/23/let-this-be-a-good-year.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html b/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html index 064332db..cb9c12c5 100644 --- a/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html +++ b/archive-source/blog/2018/06/23/let-us-go-over-the-hill.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/love-forever.html b/archive-source/blog/2018/06/23/love-forever.html index c95ec245..987e85d5 100644 --- a/archive-source/blog/2018/06/23/love-forever.html +++ b/archive-source/blog/2018/06/23/love-forever.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/master-guests-and-others.html b/archive-source/blog/2018/06/23/master-guests-and-others.html index 63356b66..7f9a7473 100644 --- a/archive-source/blog/2018/06/23/master-guests-and-others.html +++ b/archive-source/blog/2018/06/23/master-guests-and-others.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/mission-and-prayer.html b/archive-source/blog/2018/06/23/mission-and-prayer.html index 94c6c0e3..11511f88 100644 --- a/archive-source/blog/2018/06/23/mission-and-prayer.html +++ b/archive-source/blog/2018/06/23/mission-and-prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/my-new-self.html b/archive-source/blog/2018/06/23/my-new-self.html index 6e6b094f..8b67538a 100644 --- a/archive-source/blog/2018/06/23/my-new-self.html +++ b/archive-source/blog/2018/06/23/my-new-self.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/myself-part-two.html b/archive-source/blog/2018/06/23/myself-part-two.html index 9f57f5e3..2dcf6765 100644 --- a/archive-source/blog/2018/06/23/myself-part-two.html +++ b/archive-source/blog/2018/06/23/myself-part-two.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/new-family-given-by-god.html b/archive-source/blog/2018/06/23/new-family-given-by-god.html index af1a8beb..58258abf 100644 --- a/archive-source/blog/2018/06/23/new-family-given-by-god.html +++ b/archive-source/blog/2018/06/23/new-family-given-by-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html b/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html index 46d8c654..af7a1e87 100644 --- a/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html +++ b/archive-source/blog/2018/06/23/original-eden-centering-on-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html b/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html index e14fb861..3786c197 100644 --- a/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html +++ b/archive-source/blog/2018/06/23/original-palace-of-utmost-happiness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-race-from-one-lineage.html b/archive-source/blog/2018/06/23/original-race-from-one-lineage.html index 8f489ab5..9fa5b808 100644 --- a/archive-source/blog/2018/06/23/original-race-from-one-lineage.html +++ b/archive-source/blog/2018/06/23/original-race-from-one-lineage.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-root-and-self.html b/archive-source/blog/2018/06/23/original-root-and-self.html index 78aa498a..ee217f91 100644 --- a/archive-source/blog/2018/06/23/original-root-and-self.html +++ b/archive-source/blog/2018/06/23/original-root-and-self.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-way-of-gods-will.html b/archive-source/blog/2018/06/23/original-way-of-gods-will.html index d1b32ddd..bf1b18c2 100644 --- a/archive-source/blog/2018/06/23/original-way-of-gods-will.html +++ b/archive-source/blog/2018/06/23/original-way-of-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/original-world-and-present-world.html b/archive-source/blog/2018/06/23/original-world-and-present-world.html index 31b75062..9682ad83 100644 --- a/archive-source/blog/2018/06/23/original-world-and-present-world.html +++ b/archive-source/blog/2018/06/23/original-world-and-present-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-basic-attitude.html b/archive-source/blog/2018/06/23/our-basic-attitude.html index 97603688..37c7f4a2 100644 --- a/archive-source/blog/2018/06/23/our-basic-attitude.html +++ b/archive-source/blog/2018/06/23/our-basic-attitude.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-fatherland.html b/archive-source/blog/2018/06/23/our-fatherland.html index 3e859c22..1b77e409 100644 --- a/archive-source/blog/2018/06/23/our-fatherland.html +++ b/archive-source/blog/2018/06/23/our-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-front-line.html b/archive-source/blog/2018/06/23/our-front-line.html index 133d180d..6bc82cb1 100644 --- a/archive-source/blog/2018/06/23/our-front-line.html +++ b/archive-source/blog/2018/06/23/our-front-line.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-one.html b/archive-source/blog/2018/06/23/our-ideal-home-part-one.html index 9d71d6bc..1c17a21a 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-one.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-one.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-three.html b/archive-source/blog/2018/06/23/our-ideal-home-part-three.html index 37b2a2cc..2a9648cf 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-three.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-three.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-ideal-home-part-two.html b/archive-source/blog/2018/06/23/our-ideal-home-part-two.html index 16ec0cf1..a090158e 100644 --- a/archive-source/blog/2018/06/23/our-ideal-home-part-two.html +++ b/archive-source/blog/2018/06/23/our-ideal-home-part-two.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-pledge.html b/archive-source/blog/2018/06/23/our-pledge.html index f8da114f..a897fa6d 100644 --- a/archive-source/blog/2018/06/23/our-pledge.html +++ b/archive-source/blog/2018/06/23/our-pledge.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/our-position-from-now-on.html b/archive-source/blog/2018/06/23/our-position-from-now-on.html index fff8239b..b44f83f4 100644 --- a/archive-source/blog/2018/06/23/our-position-from-now-on.html +++ b/archive-source/blog/2018/06/23/our-position-from-now-on.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html b/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html index a326eef4..2f6b8307 100644 --- a/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html +++ b/archive-source/blog/2018/06/23/parents-children-and-the-world-centered-upon-oneself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/parents-day-1984.html b/archive-source/blog/2018/06/23/parents-day-1984.html index afffcbaf..c2912bc3 100644 --- a/archive-source/blog/2018/06/23/parents-day-1984.html +++ b/archive-source/blog/2018/06/23/parents-day-1984.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html b/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html index 9b94b624..352a43a9 100644 --- a/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html +++ b/archive-source/blog/2018/06/23/perfection-of-restoration-by-indemnity-through-human-responsibility.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html b/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html index fda46f3b..ca48ed56 100644 --- a/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html +++ b/archive-source/blog/2018/06/23/pinnacle-of-the-heavenly-universe.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html b/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html index 05d50a5b..9036b075 100644 --- a/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html +++ b/archive-source/blog/2018/06/23/pure-way-of-truth-and-public-righteousness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html b/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html index 6824fa58..4c0c1506 100644 --- a/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html +++ b/archive-source/blog/2018/06/23/standing-in-the-presence-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html b/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html index b1e02a91..4a502196 100644 --- a/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html +++ b/archive-source/blog/2018/06/23/testimony-at-the-hearing-on-religious-freedom.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/textbook-of-love.html b/archive-source/blog/2018/06/23/textbook-of-love.html index ffb77f66..66ebe53c 100644 --- a/archive-source/blog/2018/06/23/textbook-of-love.html +++ b/archive-source/blog/2018/06/23/textbook-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html b/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html index 56a62fba..5eec202d 100644 --- a/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html +++ b/archive-source/blog/2018/06/23/the-birth-of-a-new-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html b/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html index bf224606..4b4be33b 100644 --- a/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html +++ b/archive-source/blog/2018/06/23/the-center-of-responsibility-and-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html b/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html index 4034cb99..415dd662 100644 --- a/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html +++ b/archive-source/blog/2018/06/23/the-day-of-all-things-1982.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html b/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html index 91afb3ca..c23d86c4 100644 --- a/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html +++ b/archive-source/blog/2018/06/23/the-day-of-all-things-1983.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html b/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html index dba792c4..19e28fb0 100644 --- a/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html +++ b/archive-source/blog/2018/06/23/the-day-of-the-love-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html b/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html index 710c672a..1d0503fb 100644 --- a/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html +++ b/archive-source/blog/2018/06/23/the-harvest-season-for-gods-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-heavenly-possession.html b/archive-source/blog/2018/06/23/the-heavenly-possession.html index 125c46a7..28b57b08 100644 --- a/archive-source/blog/2018/06/23/the-heavenly-possession.html +++ b/archive-source/blog/2018/06/23/the-heavenly-possession.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html b/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html index 6511faa2..da35b750 100644 --- a/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html +++ b/archive-source/blog/2018/06/23/the-history-of-the-struggle-of-good-and-evil-and-oneself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html b/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html index b8018dc2..2d7e89d7 100644 --- a/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/23/the-necessity-for-the-day-of-victory-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html b/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html index e44c28ed..0c8d3fe7 100644 --- a/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html +++ b/archive-source/blog/2018/06/23/the-original-world-and-the-enemy-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html b/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html index d4bf587a..c5a08ee2 100644 --- a/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html +++ b/archive-source/blog/2018/06/23/the-purpose-of-life-coming-and-going.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-secret-of-total-success.html b/archive-source/blog/2018/06/23/the-secret-of-total-success.html index 011cdf5d..fdc761b2 100644 --- a/archive-source/blog/2018/06/23/the-secret-of-total-success.html +++ b/archive-source/blog/2018/06/23/the-secret-of-total-success.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html b/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html index e6f2dbf3..e17ab973 100644 --- a/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html +++ b/archive-source/blog/2018/06/23/the-way-god-is-pursuing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html index 37a9296d..84b7e30e 100644 --- a/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/23/thirtieth-anniversary-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/true-man-true-church-true-country.html b/archive-source/blog/2018/06/23/true-man-true-church-true-country.html index e1e797d4..d67af90a 100644 --- a/archive-source/blog/2018/06/23/true-man-true-church-true-country.html +++ b/archive-source/blog/2018/06/23/true-man-true-church-true-country.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/true-way-of-life.html b/archive-source/blog/2018/06/23/true-way-of-life.html index 0d0a113d..b68efff6 100644 --- a/archive-source/blog/2018/06/23/true-way-of-life.html +++ b/archive-source/blog/2018/06/23/true-way-of-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/universality.html b/archive-source/blog/2018/06/23/universality.html index 8be61f54..2c610265 100644 --- a/archive-source/blog/2018/06/23/universality.html +++ b/archive-source/blog/2018/06/23/universality.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/victor-throughout-three-ages.html b/archive-source/blog/2018/06/23/victor-throughout-three-ages.html index 5bbbab0b..f7b733e4 100644 --- a/archive-source/blog/2018/06/23/victor-throughout-three-ages.html +++ b/archive-source/blog/2018/06/23/victor-throughout-three-ages.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html b/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html index 4d0d357c..bccbe834 100644 --- a/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html +++ b/archive-source/blog/2018/06/23/who-goes-the-way-of-indemnity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/23/with-whom-shall-i-live.html b/archive-source/blog/2018/06/23/with-whom-shall-i-live.html index 2c68faa4..07543324 100644 --- a/archive-source/blog/2018/06/23/with-whom-shall-i-live.html +++ b/archive-source/blog/2018/06/23/with-whom-shall-i-live.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html b/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html index 8cbdadbd..d675460d 100644 --- a/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html +++ b/archive-source/blog/2018/06/24/absolute-values-and-the-new-cultural-revolution-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/causa-seminar-speech.html b/archive-source/blog/2018/06/24/causa-seminar-speech.html index 5540dcff..427b91ea 100644 --- a/archive-source/blog/2018/06/24/causa-seminar-speech.html +++ b/archive-source/blog/2018/06/24/causa-seminar-speech.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html b/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html index 8c52460a..54897788 100644 --- a/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html +++ b/archive-source/blog/2018/06/24/creation-of-the-fatherland-and-gods-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/highest-ownership.html b/archive-source/blog/2018/06/24/highest-ownership.html index 1a70e139..c64858bc 100644 --- a/archive-source/blog/2018/06/24/highest-ownership.html +++ b/archive-source/blog/2018/06/24/highest-ownership.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/holy-water-ceremony.html b/archive-source/blog/2018/06/24/holy-water-ceremony.html index 7331500b..bccee9f9 100644 --- a/archive-source/blog/2018/06/24/holy-water-ceremony.html +++ b/archive-source/blog/2018/06/24/holy-water-ceremony.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/ideal-home-church.html b/archive-source/blog/2018/06/24/ideal-home-church.html index c177ddb4..8c00f408 100644 --- a/archive-source/blog/2018/06/24/ideal-home-church.html +++ b/archive-source/blog/2018/06/24/ideal-home-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html b/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html index 25ccf78e..ecaac15d 100644 --- a/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html +++ b/archive-source/blog/2018/06/24/one-year-anniversary-of-the-seung-hwa-ceremony-of-heung-jin-moon.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/parents-day-3.html b/archive-source/blog/2018/06/24/parents-day-3.html index b51fe019..b66221d5 100644 --- a/archive-source/blog/2018/06/24/parents-day-3.html +++ b/archive-source/blog/2018/06/24/parents-day-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/reflection-of-1986.html b/archive-source/blog/2018/06/24/reflection-of-1986.html index 9979bdfb..75bfc179 100644 --- a/archive-source/blog/2018/06/24/reflection-of-1986.html +++ b/archive-source/blog/2018/06/24/reflection-of-1986.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/road-toward-the-ideal.html b/archive-source/blog/2018/06/24/road-toward-the-ideal.html index 346b438d..adc77996 100644 --- a/archive-source/blog/2018/06/24/road-toward-the-ideal.html +++ b/archive-source/blog/2018/06/24/road-toward-the-ideal.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html b/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html index 59496934..efe3c40a 100644 --- a/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html +++ b/archive-source/blog/2018/06/24/the-building-and-creation-of-the-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-day-of-all-things-2.html b/archive-source/blog/2018/06/24/the-day-of-all-things-2.html index 89d943ae..d93e30af 100644 --- a/archive-source/blog/2018/06/24/the-day-of-all-things-2.html +++ b/archive-source/blog/2018/06/24/the-day-of-all-things-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html b/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html index b5fec8e5..0edc5ad3 100644 --- a/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html +++ b/archive-source/blog/2018/06/24/the-day-of-the-victory-of-heaven-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html b/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html index 367af0f7..98d127c4 100644 --- a/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html +++ b/archive-source/blog/2018/06/24/the-future-of-the-religious-person.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-globe-is-our-home.html b/archive-source/blog/2018/06/24/the-globe-is-our-home.html index 6930f282..a4445202 100644 --- a/archive-source/blog/2018/06/24/the-globe-is-our-home.html +++ b/archive-source/blog/2018/06/24/the-globe-is-our-home.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-glory-of-the-victor.html b/archive-source/blog/2018/06/24/the-glory-of-the-victor.html index 880299a9..0c483dc9 100644 --- a/archive-source/blog/2018/06/24/the-glory-of-the-victor.html +++ b/archive-source/blog/2018/06/24/the-glory-of-the-victor.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html b/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html index 22a1d3ec..0ef98491 100644 --- a/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html +++ b/archive-source/blog/2018/06/24/the-heavenly-family-and-the-american-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-last-frontier.html b/archive-source/blog/2018/06/24/the-last-frontier.html index 85e4f5a8..846ade2d 100644 --- a/archive-source/blog/2018/06/24/the-last-frontier.html +++ b/archive-source/blog/2018/06/24/the-last-frontier.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html b/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html index 23656a4a..f57084b5 100644 --- a/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html +++ b/archive-source/blog/2018/06/24/the-standard-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/true-parents-and-i.html b/archive-source/blog/2018/06/24/true-parents-and-i.html index beee4942..68f77e40 100644 --- a/archive-source/blog/2018/06/24/true-parents-and-i.html +++ b/archive-source/blog/2018/06/24/true-parents-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/true-parents-birthday.html b/archive-source/blog/2018/06/24/true-parents-birthday.html index 3ceca956..b399e2d0 100644 --- a/archive-source/blog/2018/06/24/true-parents-birthday.html +++ b/archive-source/blog/2018/06/24/true-parents-birthday.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/24/victory-celebration.html b/archive-source/blog/2018/06/24/victory-celebration.html index 6342725d..ab12e38a 100644 --- a/archive-source/blog/2018/06/24/victory-celebration.html +++ b/archive-source/blog/2018/06/24/victory-celebration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html b/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html index ee3741f6..70e737c5 100644 --- a/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html +++ b/archive-source/blog/2018/06/25/7th-day-of-the-victory-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html b/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html index 4d034ff7..e139e547 100644 --- a/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html +++ b/archive-source/blog/2018/06/25/a-life-of-attendance-and-the-heavenly-kingdom.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html b/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html index f23f89bd..7ad2c406 100644 --- a/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html +++ b/archive-source/blog/2018/06/25/childrens-day-1988-from-the-viewpoint-of-the-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html b/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html index 3fa930fa..67a34555 100644 --- a/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html +++ b/archive-source/blog/2018/06/25/childrens-day-and-the-unification-of-our-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html b/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html index 665a2552..957e367c 100644 --- a/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html +++ b/archive-source/blog/2018/06/25/completion-of-the-dispensation-and-our-father-country.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html b/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html index bb5aab1f..6d36997c 100644 --- a/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html +++ b/archive-source/blog/2018/06/25/day-of-the-victory-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/declaration-of-true-parents.html b/archive-source/blog/2018/06/25/declaration-of-true-parents.html index cb9c30dc..3e7ef5ae 100644 --- a/archive-source/blog/2018/06/25/declaration-of-true-parents.html +++ b/archive-source/blog/2018/06/25/declaration-of-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/early-spring-of-life.html b/archive-source/blog/2018/06/25/early-spring-of-life.html index 50a37146..cddcc8a2 100644 --- a/archive-source/blog/2018/06/25/early-spring-of-life.html +++ b/archive-source/blog/2018/06/25/early-spring-of-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html b/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html index 62c92cc1..076c49e3 100644 --- a/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html +++ b/archive-source/blog/2018/06/25/fathers-seventieth-birthday-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html b/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html index 9facc897..5d9694c2 100644 --- a/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html +++ b/archive-source/blog/2018/06/25/fifth-anniversary-of-the-8000-couples-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html b/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html index a69dd9f1..a3e16a49 100644 --- a/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html +++ b/archive-source/blog/2018/06/25/founding-anniversary-and-final-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/god-and-i.html b/archive-source/blog/2018/06/25/god-and-i.html index fd06ce34..30dcfab9 100644 --- a/archive-source/blog/2018/06/25/god-and-i.html +++ b/archive-source/blog/2018/06/25/god-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/gods-and-our-decision.html b/archive-source/blog/2018/06/25/gods-and-our-decision.html index 814ded8e..3fc17b2f 100644 --- a/archive-source/blog/2018/06/25/gods-and-our-decision.html +++ b/archive-source/blog/2018/06/25/gods-and-our-decision.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html b/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html index 6d756e01..f96e584b 100644 --- a/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html +++ b/archive-source/blog/2018/06/25/gods-day-1990-morning-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html b/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html index 3a1ace0f..4e5126ea 100644 --- a/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html +++ b/archive-source/blog/2018/06/25/gods-day-1990-the-unification-of-my-country.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/gods-day-2.html b/archive-source/blog/2018/06/25/gods-day-2.html index 0c7695ea..ea6d4d21 100644 --- a/archive-source/blog/2018/06/25/gods-day-2.html +++ b/archive-source/blog/2018/06/25/gods-day-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html b/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html index 3a54780e..dcd738c8 100644 --- a/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html +++ b/archive-source/blog/2018/06/25/gods-providential-course-and-the-course-of-human-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/harvest-time.html b/archive-source/blog/2018/06/25/harvest-time.html index 520da3c4..22d0cfc4 100644 --- a/archive-source/blog/2018/06/25/harvest-time.html +++ b/archive-source/blog/2018/06/25/harvest-time.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html b/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html index da0df567..7e7125d4 100644 --- a/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html +++ b/archive-source/blog/2018/06/25/heaven-and-man-unite-and-create-goodness.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/heavenly-fatherism.html b/archive-source/blog/2018/06/25/heavenly-fatherism.html index e07faaf7..17abafba 100644 --- a/archive-source/blog/2018/06/25/heavenly-fatherism.html +++ b/archive-source/blog/2018/06/25/heavenly-fatherism.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/hometown.html b/archive-source/blog/2018/06/25/hometown.html index 533307c3..9c289c0c 100644 --- a/archive-source/blog/2018/06/25/hometown.html +++ b/archive-source/blog/2018/06/25/hometown.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html b/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html index 231f20d4..a3be4b4a 100644 --- a/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html +++ b/archive-source/blog/2018/06/25/i-shall-follow-with-gratitude-and-obedience.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/in-yun-and-encounter.html b/archive-source/blog/2018/06/25/in-yun-and-encounter.html index f36f59c9..2aa13067 100644 --- a/archive-source/blog/2018/06/25/in-yun-and-encounter.html +++ b/archive-source/blog/2018/06/25/in-yun-and-encounter.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/isolation-and-liberation.html b/archive-source/blog/2018/06/25/isolation-and-liberation.html index 3881dfad..140848f6 100644 --- a/archive-source/blog/2018/06/25/isolation-and-liberation.html +++ b/archive-source/blog/2018/06/25/isolation-and-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/leaders-meeting.html b/archive-source/blog/2018/06/25/leaders-meeting.html index a6350723..28b4ee84 100644 --- a/archive-source/blog/2018/06/25/leaders-meeting.html +++ b/archive-source/blog/2018/06/25/leaders-meeting.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html b/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html index 7a70f197..98ca4c10 100644 --- a/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html +++ b/archive-source/blog/2018/06/25/let-us-go-over-the-original-boundary.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/let-us-liberate-god.html b/archive-source/blog/2018/06/25/let-us-liberate-god.html index ff9d8d2b..d37966c7 100644 --- a/archive-source/blog/2018/06/25/let-us-liberate-god.html +++ b/archive-source/blog/2018/06/25/let-us-liberate-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/let-us-live-well.html b/archive-source/blog/2018/06/25/let-us-live-well.html index 3d1e3def..225217b5 100644 --- a/archive-source/blog/2018/06/25/let-us-live-well.html +++ b/archive-source/blog/2018/06/25/let-us-live-well.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html b/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html index 0ccaa1db..49acb8b8 100644 --- a/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html +++ b/archive-source/blog/2018/06/25/let-us-return-to-gods-side.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html b/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html index d4eee3b0..a057984b 100644 --- a/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html +++ b/archive-source/blog/2018/06/25/liberation-of-the-spirit-world-and-physical-world-and-the-unification-of-the-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/lifestyle-of-prayer.html b/archive-source/blog/2018/06/25/lifestyle-of-prayer.html index 62b892e3..0fc5c820 100644 --- a/archive-source/blog/2018/06/25/lifestyle-of-prayer.html +++ b/archive-source/blog/2018/06/25/lifestyle-of-prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html b/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html index e961ca84..bbfe279c 100644 --- a/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html +++ b/archive-source/blog/2018/06/25/living-in-the-highest-historical-age.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html b/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html index 929f46c6..086d9d6f 100644 --- a/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html +++ b/archive-source/blog/2018/06/25/original-family-and-the-family-of-today.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html b/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html index f71c15fe..39b2c4ac 100644 --- a/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html +++ b/archive-source/blog/2018/06/25/original-homeland-and-the-realm-of-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html b/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html index a7000375..898e4176 100644 --- a/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html +++ b/archive-source/blog/2018/06/25/our-church-and-korea-as-seen-from-the-providence-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html b/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html index d3e25467..4eacbfbe 100644 --- a/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html +++ b/archive-source/blog/2018/06/25/our-posture-on-the-new-year.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/our-pride-3.html b/archive-source/blog/2018/06/25/our-pride-3.html index cd5d66ae..37a0f0fa 100644 --- a/archive-source/blog/2018/06/25/our-pride-3.html +++ b/archive-source/blog/2018/06/25/our-pride-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/parents-day-and-i.html b/archive-source/blog/2018/06/25/parents-day-and-i.html index e352c1ef..e739431f 100644 --- a/archive-source/blog/2018/06/25/parents-day-and-i.html +++ b/archive-source/blog/2018/06/25/parents-day-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/parents-day-and-our-path.html b/archive-source/blog/2018/06/25/parents-day-and-our-path.html index 1a9cd4ae..9fc4b758 100644 --- a/archive-source/blog/2018/06/25/parents-day-and-our-path.html +++ b/archive-source/blog/2018/06/25/parents-day-and-our-path.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html b/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html index dfd9d04f..ae33e343 100644 --- a/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html +++ b/archive-source/blog/2018/06/25/perfect-digestion-and-the-age-of-perfection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html b/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html index 05c5fe80..add9ff18 100644 --- a/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html +++ b/archive-source/blog/2018/06/25/perfect-settlement-of-the-will-and-sovereign-thought.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html b/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html index 2d3acc22..3ca4a4ee 100644 --- a/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html +++ b/archive-source/blog/2018/06/25/pinnacle-of-the-heavenly-universe-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/precious-existence.html b/archive-source/blog/2018/06/25/precious-existence.html index 59553604..e90d656a 100644 --- a/archive-source/blog/2018/06/25/precious-existence.html +++ b/archive-source/blog/2018/06/25/precious-existence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/proclamation-of-true-parents.html b/archive-source/blog/2018/06/25/proclamation-of-true-parents.html index 7fcf90ed..d8ffcb36 100644 --- a/archive-source/blog/2018/06/25/proclamation-of-true-parents.html +++ b/archive-source/blog/2018/06/25/proclamation-of-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html b/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html index c8abbc8c..7c6f9a6f 100644 --- a/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html +++ b/archive-source/blog/2018/06/25/proclamation-of-true-sons-and-daughters-and-freedom.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html b/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html index 0ad31778..584ac2c4 100644 --- a/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html +++ b/archive-source/blog/2018/06/25/program-for-peace-islam-and-the-establishment-of-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html b/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html index b0274059..11b78615 100644 --- a/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html +++ b/archive-source/blog/2018/06/25/seventieth-birthday-celebration-banquet.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html b/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html index ab2de654..5094693f 100644 --- a/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html +++ b/archive-source/blog/2018/06/25/thank-you-for-protecting-us.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-11th-world-media-conference.html b/archive-source/blog/2018/06/25/the-11th-world-media-conference.html index d36faf7b..8c9cd809 100644 --- a/archive-source/blog/2018/06/25/the-11th-world-media-conference.html +++ b/archive-source/blog/2018/06/25/the-11th-world-media-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html b/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html index f1465d13..9ad1e1af 100644 --- a/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html +++ b/archive-source/blog/2018/06/25/the-blessed-family-is-very-precious.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html b/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html index f8d07cc3..4ae38865 100644 --- a/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html +++ b/archive-source/blog/2018/06/25/the-creation-of-my-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html b/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html index 495f097c..cde4b613 100644 --- a/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html +++ b/archive-source/blog/2018/06/25/the-end-of-the-world-and-our-age.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html b/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html index 58487160..17ceee85 100644 --- a/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html +++ b/archive-source/blog/2018/06/25/the-flower-of-absolute-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html b/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html index 65133d10..96241b42 100644 --- a/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html +++ b/archive-source/blog/2018/06/25/the-model-and-those-who-are-recognized-in-providential-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html b/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html index b1f4bea6..4afa01c5 100644 --- a/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html +++ b/archive-source/blog/2018/06/25/the-official-course-of-true-love-and-heavenly-fate.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html b/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html index e1824ae7..fd44eea3 100644 --- a/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html +++ b/archive-source/blog/2018/06/25/the-palace-of-peaceful-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html b/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html index 12d21707..949f72f0 100644 --- a/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html +++ b/archive-source/blog/2018/06/25/the-pride-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html b/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html index a692a626..9b9568f5 100644 --- a/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html +++ b/archive-source/blog/2018/06/25/the-reunification-of-korea-and-cooperation-between-east-and-west.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-tide-of-the-heart.html b/archive-source/blog/2018/06/25/the-tide-of-the-heart.html index 1512efb0..ef6366a5 100644 --- a/archive-source/blog/2018/06/25/the-tide-of-the-heart.html +++ b/archive-source/blog/2018/06/25/the-tide-of-the-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-tribal-messiah.html b/archive-source/blog/2018/06/25/the-tribal-messiah.html index f582eeeb..c25fafba 100644 --- a/archive-source/blog/2018/06/25/the-tribal-messiah.html +++ b/archive-source/blog/2018/06/25/the-tribal-messiah.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html b/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html index 82bddba0..64283ffe 100644 --- a/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html +++ b/archive-source/blog/2018/06/25/the-way-of-the-victory-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-way-to-grow.html b/archive-source/blog/2018/06/25/the-way-to-grow.html index 25bfa1d0..0992003d 100644 --- a/archive-source/blog/2018/06/25/the-way-to-grow.html +++ b/archive-source/blog/2018/06/25/the-way-to-grow.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/the-will-and-i.html b/archive-source/blog/2018/06/25/the-will-and-i.html index aee149a0..03f9fcf1 100644 --- a/archive-source/blog/2018/06/25/the-will-and-i.html +++ b/archive-source/blog/2018/06/25/the-will-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/this-is-the-time-of-change.html b/archive-source/blog/2018/06/25/this-is-the-time-of-change.html index 3f281d4f..d1d50168 100644 --- a/archive-source/blog/2018/06/25/this-is-the-time-of-change.html +++ b/archive-source/blog/2018/06/25/this-is-the-time-of-change.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html b/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html index 53f9e399..97e654d3 100644 --- a/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html +++ b/archive-source/blog/2018/06/25/true-parents-and-the-realm-of-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/unification-church-national-conference.html b/archive-source/blog/2018/06/25/unification-church-national-conference.html index 9180f532..ec1e3c0c 100644 --- a/archive-source/blog/2018/06/25/unification-church-national-conference.html +++ b/archive-source/blog/2018/06/25/unification-church-national-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html b/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html index cb1cde30..5b1e523b 100644 --- a/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html +++ b/archive-source/blog/2018/06/25/unification-of-the-cosmos-and-the-family-ideal.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/unification-of-the-fatherland.html b/archive-source/blog/2018/06/25/unification-of-the-fatherland.html index 59da86ac..4dc84e76 100644 --- a/archive-source/blog/2018/06/25/unification-of-the-fatherland.html +++ b/archive-source/blog/2018/06/25/unification-of-the-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html b/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html index 9f5aab16..1298768e 100644 --- a/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html +++ b/archive-source/blog/2018/06/25/unite-the-kingdom-of-heaven-is-at-hand.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/wake-up-america.html b/archive-source/blog/2018/06/25/wake-up-america.html index 2c65309e..e87c37e4 100644 --- a/archive-source/blog/2018/06/25/wake-up-america.html +++ b/archive-source/blog/2018/06/25/wake-up-america.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html b/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html index 08ac676d..f731ef7c 100644 --- a/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html +++ b/archive-source/blog/2018/06/25/we-shall-live-in-the-original-homeland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html b/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html index 62657c0c..930ab04f 100644 --- a/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html +++ b/archive-source/blog/2018/06/25/when-it-was-over-it-turned-out-to-be-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/25/where-god-and-man-meet.html b/archive-source/blog/2018/06/25/where-god-and-man-meet.html index 4439a7aa..67810d2e 100644 --- a/archive-source/blog/2018/06/25/where-god-and-man-meet.html +++ b/archive-source/blog/2018/06/25/where-god-and-man-meet.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html b/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html index 35a87d5f..d78168f1 100644 --- a/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html +++ b/archive-source/blog/2018/06/26/absolute-values-and-the-new-world-order-19th-icus-8th-pwpa.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html b/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html index c87f5dcc..74156ae8 100644 --- a/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html +++ b/archive-source/blog/2018/06/26/absolute-values-and-the-reassessment-of-the-contemporary-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html b/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html index 63e36144..a95f3a49 100644 --- a/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html +++ b/archive-source/blog/2018/06/26/apply-wisdom-to-the-realization-of-gods-ideal.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html b/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html index 41c4d0f0..7e3858d7 100644 --- a/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html +++ b/archive-source/blog/2018/06/26/bearing-fruits-of-the-world-of-faith-and-strength.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html b/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html index 65a4502e..7b209a95 100644 --- a/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html +++ b/archive-source/blog/2018/06/26/blessed-families-and-true-tradition.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/blessing-and-resurrection.html b/archive-source/blog/2018/06/26/blessing-and-resurrection.html index 8a75455f..c5796631 100644 --- a/archive-source/blog/2018/06/26/blessing-and-resurrection.html +++ b/archive-source/blog/2018/06/26/blessing-and-resurrection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html b/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html index f2a70ec0..51b9005a 100644 --- a/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html +++ b/archive-source/blog/2018/06/26/completion-of-the-responsibilities-of-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/day-of-victory-of-love.html b/archive-source/blog/2018/06/26/day-of-victory-of-love.html index a1beed54..230fbf2d 100644 --- a/archive-source/blog/2018/06/26/day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/26/day-of-victory-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/founders-address.html b/archive-source/blog/2018/06/26/founders-address.html index 4562d797..b78d060c 100644 --- a/archive-source/blog/2018/06/26/founders-address.html +++ b/archive-source/blog/2018/06/26/founders-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html b/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html index 6e600343..ef71d120 100644 --- a/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html +++ b/archive-source/blog/2018/06/26/from-the-realm-of-death-to-the-realm-of-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/gods-day-midnight-address.html b/archive-source/blog/2018/06/26/gods-day-midnight-address.html index 45619fa4..ec7abe4e 100644 --- a/archive-source/blog/2018/06/26/gods-day-midnight-address.html +++ b/archive-source/blog/2018/06/26/gods-day-midnight-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/gods-day-morning-address.html b/archive-source/blog/2018/06/26/gods-day-morning-address.html index 55ff9ca3..c39cafd9 100644 --- a/archive-source/blog/2018/06/26/gods-day-morning-address.html +++ b/archive-source/blog/2018/06/26/gods-day-morning-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html b/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html index 69c06a0e..d823430f 100644 --- a/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html +++ b/archive-source/blog/2018/06/26/historical-debt-and-the-liberation-of-ourselves.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html b/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html index 8d9eed4f..d515f3de 100644 --- a/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html +++ b/archive-source/blog/2018/06/26/i-will-live-with-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/international-leaders-conference.html b/archive-source/blog/2018/06/26/international-leaders-conference.html index c69443f3..2b08c5da 100644 --- a/archive-source/blog/2018/06/26/international-leaders-conference.html +++ b/archive-source/blog/2018/06/26/international-leaders-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html b/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html index d87c0867..1126184e 100644 --- a/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html +++ b/archive-source/blog/2018/06/26/investing-in-the-couples-who-are-blessed-by-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html b/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html index 7d5058f2..d60087d7 100644 --- a/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html +++ b/archive-source/blog/2018/06/26/leaders-building-a-world-of-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/leaders-meeting-2.html b/archive-source/blog/2018/06/26/leaders-meeting-2.html index aa7a5747..5512d4a8 100644 --- a/archive-source/blog/2018/06/26/leaders-meeting-2.html +++ b/archive-source/blog/2018/06/26/leaders-meeting-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html b/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html index da7e4ace..7bfcc3e3 100644 --- a/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html +++ b/archive-source/blog/2018/06/26/let-us-inherit-the-realm-of-victory-of-our-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html b/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html index 13e95839..58cb2023 100644 --- a/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html +++ b/archive-source/blog/2018/06/26/liability-the-debt-we-owe-the-past-and-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/liberation-and-my-ownership.html b/archive-source/blog/2018/06/26/liberation-and-my-ownership.html index 27bee731..0be35bef 100644 --- a/archive-source/blog/2018/06/26/liberation-and-my-ownership.html +++ b/archive-source/blog/2018/06/26/liberation-and-my-ownership.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html b/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html index 12006fc4..ca584b20 100644 --- a/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html +++ b/archive-source/blog/2018/06/26/liquidation-or-the-completion-of-the-dispensation-of-salvation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/my-whole-life.html b/archive-source/blog/2018/06/26/my-whole-life.html index 8a99574c..10a63ebf 100644 --- a/archive-source/blog/2018/06/26/my-whole-life.html +++ b/archive-source/blog/2018/06/26/my-whole-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html b/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html index 4f38ff6e..c1eb4d12 100644 --- a/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html +++ b/archive-source/blog/2018/06/26/new-family-and-the-completed-testament.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html index 58d4f363..a53b012a 100644 --- a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html +++ b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html index 53fe9d33..8baae7a8 100644 --- a/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html +++ b/archive-source/blog/2018/06/26/new-heaven-and-new-earth-centering-on-our-pledge.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/new-nation-and-new-family.html b/archive-source/blog/2018/06/26/new-nation-and-new-family.html index b81465bc..5639515c 100644 --- a/archive-source/blog/2018/06/26/new-nation-and-new-family.html +++ b/archive-source/blog/2018/06/26/new-nation-and-new-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html b/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html index 92e81e56..18e7a340 100644 --- a/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html +++ b/archive-source/blog/2018/06/26/our-mission-during-the-time-of-world-transition.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html b/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html index 44e4bb65..79d9469c 100644 --- a/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html +++ b/archive-source/blog/2018/06/26/our-portion-of-responsibility-and-the-subject-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html b/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html index ee3f088f..87a3ed24 100644 --- a/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html +++ b/archive-source/blog/2018/06/26/parents-day-true-parents-and-blessed-couples.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html b/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html index ff080049..7bd1e00b 100644 --- a/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html +++ b/archive-source/blog/2018/06/26/religions-mission-for-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html b/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html index 0692ff17..02f3988a 100644 --- a/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html +++ b/archive-source/blog/2018/06/26/restoration-from-the-origin-and-rebirth-are-for-myself.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html index ffcb9db5..60e5e0de 100644 --- a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html +++ b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html index bd4bceab..ae7f0985 100644 --- a/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html +++ b/archive-source/blog/2018/06/26/resurrection-and-liberation-of-the-worlds-women-part-ii.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/returning-to-the-home-country.html b/archive-source/blog/2018/06/26/returning-to-the-home-country.html index ab224e6e..30bbeae5 100644 --- a/archive-source/blog/2018/06/26/returning-to-the-home-country.html +++ b/archive-source/blog/2018/06/26/returning-to-the-home-country.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/royal-family-of-true-love.html b/archive-source/blog/2018/06/26/royal-family-of-true-love.html index 340f0f31..935c1537 100644 --- a/archive-source/blog/2018/06/26/royal-family-of-true-love.html +++ b/archive-source/blog/2018/06/26/royal-family-of-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html b/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html index ac0fec4c..dfbbe3d3 100644 --- a/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html +++ b/archive-source/blog/2018/06/26/sunday-sermon-and-conference-memos.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/sunday-service.html b/archive-source/blog/2018/06/26/sunday-service.html index 067c1e65..cd08f3f3 100644 --- a/archive-source/blog/2018/06/26/sunday-service.html +++ b/archive-source/blog/2018/06/26/sunday-service.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html b/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html index c9b5f90b..a593a962 100644 --- a/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html +++ b/archive-source/blog/2018/06/26/the-38th-anniversary-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html b/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html index c9011fc2..82a9fb97 100644 --- a/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html +++ b/archive-source/blog/2018/06/26/the-ceremony-of-the-declaration-of-gods-eternal-blessing.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html b/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html index e1b8637f..513da285 100644 --- a/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html +++ b/archive-source/blog/2018/06/26/the-completed-testament-era-and-me.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html b/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html index f37681f4..0400753c 100644 --- a/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html +++ b/archive-source/blog/2018/06/26/the-day-of-all-things-and-the-fruits-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html b/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html index 49e37d7d..f1fd6c1d 100644 --- a/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html +++ b/archive-source/blog/2018/06/26/the-dispensational-era-of-the-unification-of-the-first-second-and-third-generations.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html b/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html index 89a52f90..852b3a19 100644 --- a/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html +++ b/archive-source/blog/2018/06/26/the-dividing-peak-of-the-dispensation-of-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html b/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html index 4448f4ef..744e4813 100644 --- a/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html +++ b/archive-source/blog/2018/06/26/the-dream-of-the-unification-church.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html b/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html index 226a5ee3..19d012a6 100644 --- a/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html +++ b/archive-source/blog/2018/06/26/the-joining-of-heaven-earth-and-man.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html index b2618412..94cd595e 100644 --- a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html +++ b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-in-dispensational-history-part-one.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html index 987718a1..aa1f69f6 100644 --- a/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html +++ b/archive-source/blog/2018/06/26/the-mainstream-and-point-of-origin-of-dispensational-history-part-ii.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html b/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html index b550a8b6..3d8d3da8 100644 --- a/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html +++ b/archive-source/blog/2018/06/26/the-mission-of-the-media-in-the-21st-century.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html b/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html index 1d3da4ec..3bce269a 100644 --- a/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html +++ b/archive-source/blog/2018/06/26/the-realm-of-heavenly-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html b/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html index eea14a20..282072fd 100644 --- a/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html +++ b/archive-source/blog/2018/06/26/the-reappearance-of-the-second-coming-and-the-completed-testament-era.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html b/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html index 966712d7..52d4c09e 100644 --- a/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html +++ b/archive-source/blog/2018/06/26/the-responsibility-of-tribal-messiahship.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html b/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html index 9b577281..7e2336cb 100644 --- a/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html +++ b/archive-source/blog/2018/06/26/the-seed-and-root-of-true-love-is-the-blessed-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html b/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html index ad1e12b5..79bf99de 100644 --- a/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html +++ b/archive-source/blog/2018/06/26/the-tribal-messiah-and-my-homeland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html b/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html index 7da62a73..75108433 100644 --- a/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html +++ b/archive-source/blog/2018/06/26/the-truthful-family-is-the-homeland-of-all-perfections.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html b/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html index df19ade6..f8bcec9f 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html +++ b/archive-source/blog/2018/06/26/the-unification-church-and-the-land-and-the-sea.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html b/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html index 2d2cb3f9..13bc5f0a 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html +++ b/archive-source/blog/2018/06/26/the-unification-church-and-the-mainstream-thought-of-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-unification-church-our-pride.html b/archive-source/blog/2018/06/26/the-unification-church-our-pride.html index a062be22..8ce2e134 100644 --- a/archive-source/blog/2018/06/26/the-unification-church-our-pride.html +++ b/archive-source/blog/2018/06/26/the-unification-church-our-pride.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/the-way-to-world-peace.html b/archive-source/blog/2018/06/26/the-way-to-world-peace.html index 8165f9a6..177234f4 100644 --- a/archive-source/blog/2018/06/26/the-way-to-world-peace.html +++ b/archive-source/blog/2018/06/26/the-way-to-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/tribal-messiahship.html b/archive-source/blog/2018/06/26/tribal-messiahship.html index 40372d35..3ef07563 100644 --- a/archive-source/blog/2018/06/26/tribal-messiahship.html +++ b/archive-source/blog/2018/06/26/tribal-messiahship.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html b/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html index b9d05562..2be5db20 100644 --- a/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html +++ b/archive-source/blog/2018/06/26/true-family-resurrection-and-world-liberation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html index 892770a9..8c349d53 100644 --- a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html +++ b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html index 4e5801d0..da7e5baa 100644 --- a/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html +++ b/archive-source/blog/2018/06/26/true-love-and-one-unified-thought.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html b/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html index 785b42e2..865012df 100644 --- a/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html +++ b/archive-source/blog/2018/06/26/true-parents-1993-american-speaking-tour-celebration.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html b/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html index 30f492ec..1c93a5d9 100644 --- a/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html +++ b/archive-source/blog/2018/06/26/true-parents-and-the-realm-of-resurrection.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-2.html b/archive-source/blog/2018/06/26/true-parents-birthday-2.html index 61c1a939..fae8b674 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-2.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html b/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html index 028dcc22..0f908e7b 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-main-ceremony.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html b/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html index 511101ca..fc4645d7 100644 --- a/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html +++ b/archive-source/blog/2018/06/26/true-parents-birthday-sung-ni-han-champumonim-victorious-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html b/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html index 47bfd3e3..f1d0d770 100644 --- a/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html +++ b/archive-source/blog/2018/06/27/1994-gods-day-addresses-and-day-of-victory-of-love-leaders-meeting-instructions.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html b/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html index 86d25e65..2f46b20b 100644 --- a/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html +++ b/archive-source/blog/2018/06/27/39th-true-childrens-day-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/address-to-the-blessed-children.html b/archive-source/blog/2018/06/27/address-to-the-blessed-children.html index e25c9114..2e9443c5 100644 --- a/archive-source/blog/2018/06/27/address-to-the-blessed-children.html +++ b/archive-source/blog/2018/06/27/address-to-the-blessed-children.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html b/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html index 0a709adf..c10292e2 100644 --- a/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html +++ b/archive-source/blog/2018/06/27/declaration-day-of-heavenly-parentism.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html b/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html index e2526811..3963bae0 100644 --- a/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html +++ b/archive-source/blog/2018/06/27/development-of-civilization-seen-from-the-viewpoint-of-the-principle.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/everybody-wants-true-love.html b/archive-source/blog/2018/06/27/everybody-wants-true-love.html index e520d898..05621c20 100644 --- a/archive-source/blog/2018/06/27/everybody-wants-true-love.html +++ b/archive-source/blog/2018/06/27/everybody-wants-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html b/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html index 62a138ff..9d84a6ed 100644 --- a/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html +++ b/archive-source/blog/2018/06/27/fathers-prayer-on-true-parents-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/find-your-true-self.html b/archive-source/blog/2018/06/27/find-your-true-self.html index 40f3748d..07517bdc 100644 --- a/archive-source/blog/2018/06/27/find-your-true-self.html +++ b/archive-source/blog/2018/06/27/find-your-true-self.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html b/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html index 4c24d30b..4dfb7f1a 100644 --- a/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html +++ b/archive-source/blog/2018/06/27/following-the-cosmic-true-love-way.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html b/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html index 3a861269..97bd49c9 100644 --- a/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html +++ b/archive-source/blog/2018/06/27/gods-chest-and-our-chest.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/gods-fatherland.html b/archive-source/blog/2018/06/27/gods-fatherland.html index 0fbddc32..fffd925f 100644 --- a/archive-source/blog/2018/06/27/gods-fatherland.html +++ b/archive-source/blog/2018/06/27/gods-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html b/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html index 588bf6fe..f2480d75 100644 --- a/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html +++ b/archive-source/blog/2018/06/27/in-search-of-the-origin-of-the-universe.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html b/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html index 3b47599c..e71859c8 100644 --- a/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html +++ b/archive-source/blog/2018/06/27/inter-religious-and-international-federation-for-world-peace-inaugural-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leaders-conference.html b/archive-source/blog/2018/06/27/leaders-conference.html index 458819c0..ffa4dd33 100644 --- a/archive-source/blog/2018/06/27/leaders-conference.html +++ b/archive-source/blog/2018/06/27/leaders-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leaders-meeting-3.html b/archive-source/blog/2018/06/27/leaders-meeting-3.html index 75838a18..e58f51e3 100644 --- a/archive-source/blog/2018/06/27/leaders-meeting-3.html +++ b/archive-source/blog/2018/06/27/leaders-meeting-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leaders-meeting-4.html b/archive-source/blog/2018/06/27/leaders-meeting-4.html index 92c77440..8cfafcf5 100644 --- a/archive-source/blog/2018/06/27/leaders-meeting-4.html +++ b/archive-source/blog/2018/06/27/leaders-meeting-4.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leadership-conference-2.html b/archive-source/blog/2018/06/27/leadership-conference-2.html index 86fa7617..1c848c1c 100644 --- a/archive-source/blog/2018/06/27/leadership-conference-2.html +++ b/archive-source/blog/2018/06/27/leadership-conference-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leadership-conference.html b/archive-source/blog/2018/06/27/leadership-conference.html index 8e4c7db9..1bfab240 100644 --- a/archive-source/blog/2018/06/27/leadership-conference.html +++ b/archive-source/blog/2018/06/27/leadership-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/leadership-meeting.html b/archive-source/blog/2018/06/27/leadership-meeting.html index 8e0860d2..86d17508 100644 --- a/archive-source/blog/2018/06/27/leadership-meeting.html +++ b/archive-source/blog/2018/06/27/leadership-meeting.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/let-us-find-our-true-self.html b/archive-source/blog/2018/06/27/let-us-find-our-true-self.html index 29f9ddf5..6527a9d0 100644 --- a/archive-source/blog/2018/06/27/let-us-find-our-true-self.html +++ b/archive-source/blog/2018/06/27/let-us-find-our-true-self.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html b/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html index c6b09821..a42fe398 100644 --- a/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html +++ b/archive-source/blog/2018/06/27/let-us-realize-and-pledge-that-my-family-is-a-representative-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html b/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html index 0913057d..fded7dbe 100644 --- a/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html +++ b/archive-source/blog/2018/06/27/midnight-benediction-true-gods-day-1998.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/my-life-of-faith.html b/archive-source/blog/2018/06/27/my-life-of-faith.html index e3a532f0..90465235 100644 --- a/archive-source/blog/2018/06/27/my-life-of-faith.html +++ b/archive-source/blog/2018/06/27/my-life-of-faith.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html b/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html index 04b2c8e0..4921da07 100644 --- a/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html +++ b/archive-source/blog/2018/06/27/my-lifes-fate-and-destiny.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/original-family-and-blessed-family.html b/archive-source/blog/2018/06/27/original-family-and-blessed-family.html index 1ed4ab09..539a526b 100644 --- a/archive-source/blog/2018/06/27/original-family-and-blessed-family.html +++ b/archive-source/blog/2018/06/27/original-family-and-blessed-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html b/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html index 6c703d12..4c4d296d 100644 --- a/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html +++ b/archive-source/blog/2018/06/27/our-responsibility-in-becoming-children-of-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html b/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html index f4bc0ec8..ddd6e931 100644 --- a/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html +++ b/archive-source/blog/2018/06/27/peace-and-the-21st-century-the-fundamental-principle-of-true-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html b/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html index 36c97228..f8684a2c 100644 --- a/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html +++ b/archive-source/blog/2018/06/27/perfection-of-the-true-self-and-safe-settlement-of-the-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/restoration-of-true-sonship.html b/archive-source/blog/2018/06/27/restoration-of-true-sonship.html index cbcf464c..7607ca68 100644 --- a/archive-source/blog/2018/06/27/restoration-of-true-sonship.html +++ b/archive-source/blog/2018/06/27/restoration-of-true-sonship.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html b/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html index 93bd0da0..1ac6fc6e 100644 --- a/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html +++ b/archive-source/blog/2018/06/27/the-43rd-anniversary-of-foundation-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html b/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html index 78eb366b..1a5a466c 100644 --- a/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html +++ b/archive-source/blog/2018/06/27/the-age-of-great-victory-in-the-history-of-gods-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html b/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html index d452bf24..a76aa297 100644 --- a/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html +++ b/archive-source/blog/2018/06/27/the-family-federation-for-cosmic-peace-and-unification-and-the-cosmic-era-of-blessed-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html b/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html index 54caa3cc..b1f515bd 100644 --- a/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html +++ b/archive-source/blog/2018/06/27/the-focal-point-of-settlement-which-god-desires.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html b/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html index bc8f9bdf..47c7c14f 100644 --- a/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html +++ b/archive-source/blog/2018/06/27/the-grand-clean-up-period-in-the-history-of-good-and-evil.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html b/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html index 5b050580..5751309a 100644 --- a/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html +++ b/archive-source/blog/2018/06/27/the-ideal-family-is-the-base-for-peace-and-unification.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-leaders-conference.html b/archive-source/blog/2018/06/27/the-leaders-conference.html index 963ddd1b..48618980 100644 --- a/archive-source/blog/2018/06/27/the-leaders-conference.html +++ b/archive-source/blog/2018/06/27/the-leaders-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting-2.html b/archive-source/blog/2018/06/27/the-leaders-meeting-2.html index 1144eb0b..2da04434 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting-2.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting-3.html b/archive-source/blog/2018/06/27/the-leaders-meeting-3.html index 99317fe8..cd79474f 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting-3.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-leaders-meeting.html b/archive-source/blog/2018/06/27/the-leaders-meeting.html index 2e2cfb98..d13a7767 100644 --- a/archive-source/blog/2018/06/27/the-leaders-meeting.html +++ b/archive-source/blog/2018/06/27/the-leaders-meeting.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-leadership-conference.html b/archive-source/blog/2018/06/27/the-leadership-conference.html index 863458d5..78f684ba 100644 --- a/archive-source/blog/2018/06/27/the-leadership-conference.html +++ b/archive-source/blog/2018/06/27/the-leadership-conference.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html b/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html index 6d4a4fc0..c5c5eb90 100644 --- a/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html +++ b/archive-source/blog/2018/06/27/the-meaning-of-the-day-of-victory-of-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-new-family-pledge.html b/archive-source/blog/2018/06/27/the-new-family-pledge.html index 1045603d..b79b9d1c 100644 --- a/archive-source/blog/2018/06/27/the-new-family-pledge.html +++ b/archive-source/blog/2018/06/27/the-new-family-pledge.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html b/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html index 0cd6ee17..efb96108 100644 --- a/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html +++ b/archive-source/blog/2018/06/27/the-parents-of-heaven-and-earth-and-the-family-of-absolute-unity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html b/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html index e78615c5..b989b350 100644 --- a/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html +++ b/archive-source/blog/2018/06/27/the-role-of-the-island-nations-in-the-21st-century.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html b/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html index 473bb595..d0417084 100644 --- a/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html +++ b/archive-source/blog/2018/06/27/the-settlement-of-true-love-begins-from-the-top-central-position.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html b/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html index ed582264..f0c18f4d 100644 --- a/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html +++ b/archive-source/blog/2018/06/27/the-time-of-liberation-for-the-family-of-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html b/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html index 7552704e..3886f94e 100644 --- a/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html +++ b/archive-source/blog/2018/06/27/the-time-of-liberation-in-the-providence-and-our-safe-settlement.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-time-of-youth.html b/archive-source/blog/2018/06/27/the-time-of-youth.html index eecb3723..9224d0e1 100644 --- a/archive-source/blog/2018/06/27/the-time-of-youth.html +++ b/archive-source/blog/2018/06/27/the-time-of-youth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-true-family-and-i.html b/archive-source/blog/2018/06/27/the-true-family-and-i.html index 4528a35c..2e1adcd4 100644 --- a/archive-source/blog/2018/06/27/the-true-family-and-i.html +++ b/archive-source/blog/2018/06/27/the-true-family-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html b/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html index f5843f72..eb1d6805 100644 --- a/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html +++ b/archive-source/blog/2018/06/27/the-true-foundation-day-for-the-nation-of-the-unified-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html b/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html index 70fbe74b..7965f5d6 100644 --- a/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html +++ b/archive-source/blog/2018/06/27/the-viewpoint-of-cosmic-history-and-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html b/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html index 5db453dd..a17147b6 100644 --- a/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html +++ b/archive-source/blog/2018/06/27/the-way-of-the-martial-arts-federation-for-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html b/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html index 7bd01897..fb945844 100644 --- a/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html +++ b/archive-source/blog/2018/06/27/total-calculation-or-accounting-of-gods-historical-providence.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html b/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html index 30f2dd2a..01d3d44c 100644 --- a/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html +++ b/archive-source/blog/2018/06/27/true-day-of-all-things-and-the-initiator-of-harmony.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html b/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html index 291d72d7..2f6a6bb4 100644 --- a/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html +++ b/archive-source/blog/2018/06/27/true-family-and-true-universe-centering-on-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-family-and-world-peace.html b/archive-source/blog/2018/06/27/true-family-and-world-peace.html index 4250af6b..ef122bd2 100644 --- a/archive-source/blog/2018/06/27/true-family-and-world-peace.html +++ b/archive-source/blog/2018/06/27/true-family-and-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html b/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html index a7dad143..96fbbcc4 100644 --- a/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html +++ b/archive-source/blog/2018/06/27/true-fathers-forty-years-of-life-alone.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-gods-day-2.html b/archive-source/blog/2018/06/27/true-gods-day-2.html index d1ee440a..12dedf8e 100644 --- a/archive-source/blog/2018/06/27/true-gods-day-2.html +++ b/archive-source/blog/2018/06/27/true-gods-day-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html b/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html index df7ed342..f1faa6a6 100644 --- a/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html +++ b/archive-source/blog/2018/06/27/true-gods-day-midnight-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-gods-day.html b/archive-source/blog/2018/06/27/true-gods-day.html index 284e6e5c..60985951 100644 --- a/archive-source/blog/2018/06/27/true-gods-day.html +++ b/archive-source/blog/2018/06/27/true-gods-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html b/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html index d9ea7f9d..c11637df 100644 --- a/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html +++ b/archive-source/blog/2018/06/27/true-parents-and-the-creation-of-the-ideal-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-and-true-family.html b/archive-source/blog/2018/06/27/true-parents-and-true-family.html index a3db7181..fde1fb9b 100644 --- a/archive-source/blog/2018/06/27/true-parents-and-true-family.html +++ b/archive-source/blog/2018/06/27/true-parents-and-true-family.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-birthday-3.html b/archive-source/blog/2018/06/27/true-parents-birthday-3.html index 345aa8f3..0118d643 100644 --- a/archive-source/blog/2018/06/27/true-parents-birthday-3.html +++ b/archive-source/blog/2018/06/27/true-parents-birthday-3.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-birthday-4.html b/archive-source/blog/2018/06/27/true-parents-birthday-4.html index 39cb86ff..37d065c6 100644 --- a/archive-source/blog/2018/06/27/true-parents-birthday-4.html +++ b/archive-source/blog/2018/06/27/true-parents-birthday-4.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html b/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html index aede1bcd..21823896 100644 --- a/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html +++ b/archive-source/blog/2018/06/27/true-parents-day-address-true-parents-day-is-my-true-sons-day.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html b/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html index 808819e3..6c775dbb 100644 --- a/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html +++ b/archive-source/blog/2018/06/27/true-parents-wedding-anniversary-address.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/true-world-peace.html b/archive-source/blog/2018/06/27/true-world-peace.html index 7460c50d..073ce4b9 100644 --- a/archive-source/blog/2018/06/27/true-world-peace.html +++ b/archive-source/blog/2018/06/27/true-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html b/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html index 0467d247..593db83d 100644 --- a/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html +++ b/archive-source/blog/2018/06/27/truly-thank-you-all-perfection-is-from-my-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html b/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html index de8ae426..9fc39280 100644 --- a/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html +++ b/archive-source/blog/2018/06/27/view-of-the-principle-of-the-providential-history-of-salvation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html b/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html index 97cb65ca..4adaaa1b 100644 --- a/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html +++ b/archive-source/blog/2018/06/27/we-have-to-restore-the-original-seed.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html b/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html index e6cfc616..de8b2e5a 100644 --- a/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html +++ b/archive-source/blog/2018/06/27/where-and-how-do-you-want-to-live-your-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html b/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html index 5dd3d72a..fc9a17ca 100644 --- a/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html +++ b/archive-source/blog/2018/06/27/where-is-the-base-for-the-true-ideal.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html b/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html index 76170711..3195cd50 100644 --- a/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html +++ b/archive-source/blog/2018/06/27/who-are-the-parents-of-heaven-and-earth-and-the-unified-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/who-was-i-2.html b/archive-source/blog/2018/06/27/who-was-i-2.html index 95c01a47..6ed014a4 100644 --- a/archive-source/blog/2018/06/27/who-was-i-2.html +++ b/archive-source/blog/2018/06/27/who-was-i-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/with-jungsung-and-love.html b/archive-source/blog/2018/06/27/with-jungsung-and-love.html index 791d4126..8b9850f8 100644 --- a/archive-source/blog/2018/06/27/with-jungsung-and-love.html +++ b/archive-source/blog/2018/06/27/with-jungsung-and-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html b/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html index b9dd408f..aa13cd1b 100644 --- a/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html +++ b/archive-source/blog/2018/06/27/yeon-jin-nims-birthday.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html b/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html index ac843614..a8541d89 100644 --- a/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html +++ b/archive-source/blog/2018/06/27/youth-federation-for-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html b/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html index 5a18f221..62e68249 100644 --- a/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html +++ b/archive-source/blog/2018/06/29/breaking-down-boundaries-and-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html b/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html index 2f49563a..898dd7c1 100644 --- a/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html +++ b/archive-source/blog/2018/06/29/god-is-our-king-and-true-parent.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html b/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html index f07dd9eb..86a037d3 100644 --- a/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html +++ b/archive-source/blog/2018/06/29/let-us-discover-the-true-meaning-of-i.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html b/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html index e4728f3c..8d981183 100644 --- a/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html +++ b/archive-source/blog/2018/06/29/renewing-the-united-nations-to-build-lasting-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html b/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html index d044e60d..955d0ede 100644 --- a/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html +++ b/archive-source/blog/2018/06/29/the-coronation-ceremony-of-the-kingship-of-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html b/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html index 2bc11d33..2289eb25 100644 --- a/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html +++ b/archive-source/blog/2018/06/29/the-cosmos-is-our-hometown-and-our-fatherland.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html b/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html index ab440d5f..f31a98bc 100644 --- a/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html +++ b/archive-source/blog/2018/06/29/the-kingdom-of-heaven-who-will-enter-it-and-how-will-they-get-there.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html b/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html index e554ea80..3610fe64 100644 --- a/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html +++ b/archive-source/blog/2018/06/29/the-path-for-america-and-humanity-in-the-last-days.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html b/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html index ff6174b1..9d34cd26 100644 --- a/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html +++ b/archive-source/blog/2018/06/29/the-path-to-world-peace-in-view-of-gods-will.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html b/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html index 75c2d47b..bf94cd25 100644 --- a/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html +++ b/archive-source/blog/2018/06/29/world-unification-and-north-south-unification-will-be-accomplished-by-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html b/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html index bde01c5c..8bb85feb 100644 --- a/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html +++ b/archive-source/blog/2018/06/30/36th-true-gods-day-new-year-midnight-prayer.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html b/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html index 29bd08e1..d60ab127 100644 --- a/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html +++ b/archive-source/blog/2018/06/30/address-given-at-the-groundbreaking-ceremony-of-the-gimpo-aviation-industrial-complex-of-the-times-aviation-of-korea.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html b/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html index 138d5182..79047e25 100644 --- a/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/belvedere-hoon-dok-hae.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html b/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html index f82ef269..0bb6c78a 100644 --- a/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html +++ b/archive-source/blog/2018/06/30/ceremony-for-the-total-liberation-of-6000-years-of-providential-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html b/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html index 45561963..2f2918ce 100644 --- a/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html +++ b/archive-source/blog/2018/06/30/cheon-il-guk-is-the-ideal-heavenly-kingdom-of-eternal-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html b/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html index dffd1e1f..c1e3c617 100644 --- a/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html +++ b/archive-source/blog/2018/06/30/declaring-the-era-of-the-peace-kingdom.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html b/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html index 58a7e203..76416588 100644 --- a/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html +++ b/archive-source/blog/2018/06/30/father-to-aclc-clergy-sheraton-national-hotel.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html b/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html index 441f60b3..9819110d 100644 --- a/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/fathers-remarks-from-hoon-dok-hae.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html b/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html index 0b876556..63a7ef6f 100644 --- a/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html +++ b/archive-source/blog/2018/06/30/fathers-words-in-washington-d-c.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html b/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html index 4141c0ee..91582f76 100644 --- a/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html +++ b/archive-source/blog/2018/06/30/filial-children-of-god-are-patriots-who-strive-to-liberate-his-heart.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html b/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html index d1770402..a59815e3 100644 --- a/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html +++ b/archive-source/blog/2018/06/30/freedom-family-and-faith-the-role-of-the-media-in-the-21st-century.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html b/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html index 14c41bf2..721f0ad0 100644 --- a/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html +++ b/archive-source/blog/2018/06/30/god-and-a-united-world-of-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html index d28d9948..ef6b97b5 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-age-of-kingship-in-cheon-il-guk.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html index d9aea894..6cb77f2f 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html index 186c0770..92d4365f 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-one-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html b/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html index 5d9eeb5d..f7fe14a0 100644 --- a/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html +++ b/archive-source/blog/2018/06/30/gods-fatherland-and-the-peace-kingdom.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html b/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html index 98cecee1..8a369e70 100644 --- a/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html +++ b/archive-source/blog/2018/06/30/gods-homeland-and-the-peace-kingdom-are-built-on-the-foundation-of-the-realm-of-his-liberation-and-release.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html b/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html index 23578ded..ecec0fda 100644 --- a/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html +++ b/archive-source/blog/2018/06/30/gods-ideal-family-and-the-kingdom-of-the-peaceful-ideal-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html b/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html index e382ca45..20d7e71d 100644 --- a/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html +++ b/archive-source/blog/2018/06/30/gods-ideal-family-the-model-for-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html b/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html index 43eeef20..55313e3f 100644 --- a/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html +++ b/archive-source/blog/2018/06/30/gods-model-for-absoluteness-peace-and-the-ideal-is-the-family-and-global-kingdom-upholding-absolute-sexual-morality.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html b/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html index 18d742f2..a9b01412 100644 --- a/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html +++ b/archive-source/blog/2018/06/30/gods-peace-kingdom-is-the-eternal-homeland-for-all-blessed-families.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html b/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html index f16a5203..16339178 100644 --- a/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html +++ b/archive-source/blog/2018/06/30/gods-providence-to-establish-the-world-transcending-religions-and-nations-based-upon-the-absolute-values-of-true-love.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html b/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html index 6b8c9a7b..74f88c70 100644 --- a/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html +++ b/archive-source/blog/2018/06/30/gods-true-love-and-the-liberation-of-the-relationship-of-heaven-and-earth-and-humankind.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/hoon-dok-hae.html b/archive-source/blog/2018/06/30/hoon-dok-hae.html index 4d25466d..5b0cf158 100644 --- a/archive-source/blog/2018/06/30/hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/hoon-dok-hae.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html b/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html index 8073c29d..35c13dde 100644 --- a/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html +++ b/archive-source/blog/2018/06/30/in-order-to-realize-the-world-of-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html b/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html index 3c13ae27..590590df 100644 --- a/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html +++ b/archive-source/blog/2018/06/30/let-us-perfect-the-peace-kingdom-through-the-peace-united-nations.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html b/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html index 804ac8f4..1b82b26c 100644 --- a/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html +++ b/archive-source/blog/2018/06/30/message-of-heung-jin-nim-from-the-spiritual-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html b/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html index b4875210..bb161eb0 100644 --- a/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html +++ b/archive-source/blog/2018/06/30/middle-east-peace-initiative-beyond-co-existence-toward-a-new-culture-of-peace-closing-plenary.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html b/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html index df6513c8..098f6b92 100644 --- a/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html +++ b/archive-source/blog/2018/06/30/our-mission-in-the-last-days-of-providential-history.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one.html b/archive-source/blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one.html index eb389b9e..7a15a427 100644 --- a/archive-source/blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one.html +++ b/archive-source/blog/2018/06/30/the-holy-marriage-blessing-is-the-path-to-unite-the-virtues-of-heaven-and-earth-and-harmonize-and-unify-the-universe-as-one.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days.html b/archive-source/blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days.html index 35a0ddc9..b6aa7888 100644 --- a/archive-source/blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days.html +++ b/archive-source/blog/2018/06/30/the-life-of-jesus-as-seen-from-gods-will-and-gods-warning-to-the-present-age-the-period-of-the-last-days.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html b/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html index f6c0f3f6..19cbd4b4 100644 --- a/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html +++ b/archive-source/blog/2018/06/30/the-messiah-and-true-parents.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html b/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html index 192c8f39..5a8889b5 100644 --- a/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html +++ b/archive-source/blog/2018/06/30/the-mission-of-the-clan-messiah-in-the-revolutionary-era-after-the-coming-of-heaven.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html b/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html index 9e572da1..c8b4fcf6 100644 --- a/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html +++ b/archive-source/blog/2018/06/30/the-new-elimination-of-boundaries-and-world-peace.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-owner-of-re-creation.html b/archive-source/blog/2018/06/30/the-owner-of-re-creation.html index 2fe9c8b4..0affbd4f 100644 --- a/archive-source/blog/2018/06/30/the-owner-of-re-creation.html +++ b/archive-source/blog/2018/06/30/the-owner-of-re-creation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-owners-of-re-creation.html b/archive-source/blog/2018/06/30/the-owners-of-re-creation.html index 6ad14cea..d5c25de9 100644 --- a/archive-source/blog/2018/06/30/the-owners-of-re-creation.html +++ b/archive-source/blog/2018/06/30/the-owners-of-re-creation.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html b/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html index 49278ae4..635affe0 100644 --- a/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html +++ b/archive-source/blog/2018/06/30/the-true-owners-in-establishing-the-kingdom-of-peace-and-unity-in-heaven-and-on-earth.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html b/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html index 4ec06598..88031029 100644 --- a/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html +++ b/archive-source/blog/2018/06/30/true-father-rev-sun-myung-moon.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html b/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html index 04ab82ba..df356bec 100644 --- a/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html +++ b/archive-source/blog/2018/06/30/true-father-reverend-sun-myung-moon.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html b/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html index 9c5c1fa1..845958b1 100644 --- a/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/true-fathers-word-at-hoon-dok-hae.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html b/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html index 4c294e0d..4f0c40a0 100644 --- a/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html +++ b/archive-source/blog/2018/06/30/true-fathers-words-at-hoon-dok-hae.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html b/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html index f185b30f..46002683 100644 --- a/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html +++ b/archive-source/blog/2018/06/30/true-parents-arrival-and-joyful-gathering.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html b/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html index 7c8b0057..064baedd 100644 --- a/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html +++ b/archive-source/blog/2018/06/30/true-parents-hoon-dok-hae-and-sunday-message.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html b/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html index 705f2b78..8dba43d5 100644 --- a/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html +++ b/archive-source/blog/2018/07/20/blessed-marriage-and-eternal-life.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html b/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html index 9378c34a..b87705f0 100644 --- a/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html +++ b/archive-source/blog/2018/07/20/the-central-role-of-women-in-the-ideal-world.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html b/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html index 57c6bcd4..35c95c81 100644 --- a/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html +++ b/archive-source/blog/2018/07/20/the-nation-and-world-of-peace-sought-by-god-and-humanity.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html b/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html index 299f6f55..8a7345ca 100644 --- a/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html +++ b/archive-source/blog/2018/07/20/the-origin-of-peace-is-god.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html b/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html index 7ab90804..23f546b7 100644 --- a/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html +++ b/archive-source/blog/2018/07/20/the-path-of-life-for-all-humankind.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html b/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html index 97dcc1f2..8b56d964 100644 --- a/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html +++ b/archive-source/blog/2018/07/20/true-parents-and-the-completed-testament-age.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html b/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html index b6a31a18..27a670ae 100644 --- a/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html +++ b/archive-source/blog/2018/07/20/world-peace-and-the-role-of-women.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html b/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html index 06c18d0d..932b6fe9 100644 --- a/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html +++ b/archive-source/blog/2018/07/20/youth-federation-for-world-peace-2.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html b/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html index 9ff13f0f..52fe2c53 100644 --- a/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html +++ b/archive-source/blog/2019/03/01/marriage-blessing-celebration-event.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/categories/announcements.html b/archive-source/blog/categories/announcements.html index 159b4c4f..4b55ac69 100644 --- a/archive-source/blog/categories/announcements.html +++ b/archive-source/blog/categories/announcements.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/categories/events.html b/archive-source/blog/categories/events.html index 6e40e6a6..0ef340d8 100644 --- a/archive-source/blog/categories/events.html +++ b/archive-source/blog/categories/events.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
@@ -215,12 +214,6 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"
- - + diff --git a/archive-source/blog/categories/news.html b/archive-source/blog/categories/news.html index 2c4079ce..a0a39aa6 100644 --- a/archive-source/blog/categories/news.html +++ b/archive-source/blog/categories/news.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/categories/uncategorized.html b/archive-source/blog/categories/uncategorized.html index 1813ed4b..724da8e9 100644 --- a/archive-source/blog/categories/uncategorized.html +++ b/archive-source/blog/categories/uncategorized.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - - - - - - - - + diff --git a/archive-source/blog/tags/blessing.html b/archive-source/blog/tags/blessing.html index e45b8d8b..98ec5436 100644 --- a/archive-source/blog/tags/blessing.html +++ b/archive-source/blog/tags/blessing.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/tags/god.html b/archive-source/blog/tags/god.html index 642b1843..cba1456e 100644 --- a/archive-source/blog/tags/god.html +++ b/archive-source/blog/tags/god.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/tags/marriage.html b/archive-source/blog/tags/marriage.html index 2d937bb2..b7f5a9c2 100644 --- a/archive-source/blog/tags/marriage.html +++ b/archive-source/blog/tags/marriage.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/blog/tags/relationships.html b/archive-source/blog/tags/relationships.html index 15caef93..1f33c3b5 100644 --- a/archive-source/blog/tags/relationships.html +++ b/archive-source/blog/tags/relationships.html @@ -10,19 +10,14 @@ - + - - - + + -
+
@@ -35,7 +30,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - + diff --git a/archive-source/contact.html b/archive-source/contact.html index 7f0abe9b..2471ce29 100644 --- a/archive-source/contact.html +++ b/archive-source/contact.html @@ -10,20 +10,15 @@ - + - - - + + -
+
@@ -36,7 +31,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - - + diff --git a/archive-source/events.html b/archive-source/events.html index 696d4ef8..446c231a 100644 --- a/archive-source/events.html +++ b/archive-source/events.html @@ -22,21 +22,14 @@ - + - - - - - + + -
+
@@ -49,7 +42,11 @@ var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1" - - - - - - - - - - - - - - - - - - - - - + diff --git a/archive-source/index.html b/archive-source/index.html index 5d62e8b7..7dd0d3f5 100644 --- a/archive-source/index.html +++ b/archive-source/index.html @@ -10,20 +10,14 @@ - + - - - - + + -
+
@@ -36,7 +30,11 @@ var parabola_settings = {"masonry":"1","magazine":"1","mobile":"1","fitvids":"1"