Compare commits

..

1 commit

Author SHA1 Message Date
be89204140 content: repoint dead unification.net + 404 links to Wayback captures
www.unification.net is a suspended domain and two external posts 404. Rewrote
the remaining dead links to verified Internet Archive captures (200), preserving
anchor text and #fragments:

- 13 unification.net URLs across About, Videos and 6 speeches -> web.archive.org
  captures. dp96/dp96-1-2.html has no archived capture, so its About/Videos link
  falls back to the archived Divine Principle index (dp96/).
- familyfed.org news story and dplife.info post -> their web.archive.org captures.
- Removed the hotlinked techicy.com 'Happy New Year' image (404, no archive);
  the caption text is kept.

Archive links are a safe fallback; the Divine Principle links on About/Videos
could later be pointed at a live mirror (tparents.org / unification.org).
2026-07-03 13:23:04 +01:00
1039 changed files with 18041 additions and 15094 deletions

View file

@ -1,15 +1,14 @@
# Optional override for the hosted contact-form endpoint configured in src/config/contact.ts. # Hosted form endpoint used by the contact form.
# Examples: Formspree, Basin, Getform, or a self-hosted POST endpoint.
PUBLIC_CONTACT_FORM_ENDPOINT= PUBLIC_CONTACT_FORM_ENDPOINT=
# Optional comma-separated fallback recipients used by the mailto fallback. # Optional comma-separated fallback recipients used by the mailto fallback.
PUBLIC_CONTACT_RECIPIENTS=directors@familyfed.ie,info@familyfed.ie,media@familyfed.ie PUBLIC_CONTACT_RECIPIENTS=directors@familyfed.ie,info@familyfed.ie,media@familyfed.ie
# Optional override for the submissions URL configured in src/config/contact.ts. # Optional admin URL for reviewing stored contact form submissions.
PUBLIC_CONTACT_SUBMISSIONS_URL= PUBLIC_CONTACT_SUBMISSIONS_URL=
# Optional override for the Cloudflare Web Analytics dashboard link in admin. # Optional Plausible analytics configuration.
PUBLIC_ANALYTICS_DASHBOARD_URL=
# Optional Plausible tracking in addition to Cloudflare Web Analytics.
PUBLIC_PLAUSIBLE_DOMAIN=familyfed.ie PUBLIC_PLAUSIBLE_DOMAIN=familyfed.ie
PUBLIC_PLAUSIBLE_SCRIPT_SRC=https://plausible.io/js/script.js PUBLIC_PLAUSIBLE_SCRIPT_SRC=https://plausible.io/js/script.js
PUBLIC_ANALYTICS_DASHBOARD_URL=

View file

@ -1,87 +1,60 @@
name: Build and publish static site
on: on:
push: push:
branches: [main]
workflow_dispatch: workflow_dispatch:
concurrency: concurrency:
group: site-${{ github.ref }} group: deploy-main
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
build: deploy:
runs-on: docker runs-on: self-hosted
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: steps:
- uses: actions/checkout@v4 - name: Build Astro and restart Nomad
- name: Install validation tools
run: |
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: env:
AWS_ACCESS_KEY_ID: ${{ secrets.GARAGE_REPLICATED_ACCESS_KEY_ID }} NOMAD_ADDR: ${{ secrets.NOMAD_ADDR }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.GARAGE_REPLICATED_SECRET_ACCESS_KEY }} NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }}
AWS_DEFAULT_REGION: garage-replicated PUBLIC_ANALYTICS_DASHBOARD_URL: ${{ secrets.PUBLIC_ANALYTICS_DASHBOARD_URL }}
GARAGE_S3_ENDPOINT: https://s3-replicated.bcgen.ie 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 }}
REPO_URL: https://git.bcgen.ie/familyfedie/familyfedie-website.git
run: | run: |
set -eu set -eu
aws=/opt/awscli/bin/aws rm -rf source
common="--endpoint-url $GARAGE_S3_ENDPOINT --no-progress" export REF_NAME="${GITHUB_REF_NAME:-main}"
$aws $common s3 sync bundle-public s3://familyfed.ie --delete \ nix --extra-experimental-features "nix-command flakes" \
--cache-control 'public, max-age=3600, must-revalidate' shell nixpkgs#git \
$aws $common s3 cp bundle-public s3://familyfed.ie --recursive \ -c git clone --depth 1 --branch "$REF_NAME" "$REPO_URL" source
--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 \ cd source
--cache-control 'private, max-age=0, must-revalidate' nix --extra-experimental-features "nix-command flakes" \
$aws $common s3 cp bundle-admin s3://admin.familyfed.ie --recursive \ shell nixpkgs#nodejs_24 \
--cache-control 'private, no-store' -c npm ci
rm -rf dist
nix --extra-experimental-features "nix-command flakes" \
shell nixpkgs#nodejs_24 \
-c npm run build
test -f dist/index.html
test -f dist/admin/index.html
test -f dist/speeches/index.html
test -f dist/assets/icons/familyfed-favicon.png
ALLOC_ID=$(nix --extra-experimental-features "nix-command flakes" \
shell nixpkgs#curl nixpkgs#jq \
-c sh -c 'curl -sf -H "X-Nomad-Token: $NOMAD_TOKEN" "$NOMAD_ADDR/v1/job/familyfed/allocations" | jq -r "map(select(.ClientStatus == \"running\"))[0].ID"')
test -n "$ALLOC_ID"
test "$ALLOC_ID" != "null"
echo "Stopping allocation to trigger fresh prestart: $ALLOC_ID"
nix --extra-experimental-features "nix-command flakes" \
shell nixpkgs#curl \
-c 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."

View file

@ -14,9 +14,6 @@ migration continues.
## Working Rules ## Working Rules
- All files in this repository may be changed when needed. - 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 - 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. parallel structure unless the user specifically asks for a copy.
- If moving files requires updating links, imports, scripts, stylesheets, image - If moving files requires updating links, imports, scripts, stylesheets, image
@ -24,8 +21,6 @@ migration continues.
- Keep the structure simple and close to what the user asks for. - Keep the structure simple and close to what the user asks for.
- `.forgejo/` and deployment configuration are not special unless the user says - `.forgejo/` and deployment configuration are not special unless the user says
they are. they are.
- Feature-branch Actions build and validate only. Production Garage publishing
is restricted to commits on `main`.
## Repo Map ## Repo Map

View file

@ -110,18 +110,13 @@ http://localhost:4321/
## Deployment ## Deployment
This project deploys as a static Astro build through Forgejo Actions. Every This project deploys as a static Astro build. A deployment job should install
branch push installs dependencies, builds the complete site, audits its links, dependencies, run the build, and publish the generated `dist/` directory:
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 ```bash
npm ci npm ci
npm run check npm run build
``` ```
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.

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2013.html"> <link rel="canonical" href="/archive-sunday-services-2013.html">
<title>2013 Sunday Services Archive - FFWPU Ireland</title> <title>2013 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2013/');</script> <script>window.location.replace('/archive/sunday-services/2013/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2013.html">/archive/sunday-services/2013/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2013.html">/archive/sunday-services/2013/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2014.html"> <link rel="canonical" href="/archive-sunday-services-2014.html">
<title>2014 Sunday Services Archive - FFWPU Ireland</title> <title>2014 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2014/');</script> <script>window.location.replace('/archive/sunday-services/2014/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2014.html">/archive/sunday-services/2014/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2014.html">/archive/sunday-services/2014/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2015.html"> <link rel="canonical" href="/archive-sunday-services-2015.html">
<title>2015 Sunday Services Archive - FFWPU Ireland</title> <title>2015 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2015/');</script> <script>window.location.replace('/archive/sunday-services/2015/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2015.html">/archive/sunday-services/2015/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2015.html">/archive/sunday-services/2015/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2016.html"> <link rel="canonical" href="/archive-sunday-services-2016.html">
<title>2016 Sunday Services Archive - FFWPU Ireland</title> <title>2016 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2016/');</script> <script>window.location.replace('/archive/sunday-services/2016/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2016.html">/archive/sunday-services/2016/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2016.html">/archive/sunday-services/2016/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2017.html"> <link rel="canonical" href="/archive-sunday-services-2017.html">
<title>2017 Sunday Services Archive - FFWPU Ireland</title> <title>2017 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2017/');</script> <script>window.location.replace('/archive/sunday-services/2017/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2017.html">/archive/sunday-services/2017/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2017.html">/archive/sunday-services/2017/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -7,11 +7,8 @@
<link rel="canonical" href="/archive-sunday-services-2018.html"> <link rel="canonical" href="/archive-sunday-services-2018.html">
<title>2018 Sunday Services Archive - FFWPU Ireland</title> <title>2018 Sunday Services Archive - FFWPU Ireland</title>
<script>window.location.replace('/archive/sunday-services/2018/');</script> <script>window.location.replace('/archive/sunday-services/2018/');</script>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body> <body>
<p>This page has moved to <a href="/archive-sunday-services-2018.html">/archive/sunday-services/2018/</a>.</p> <p>This page has moved to <a href="/archive-sunday-services-2018.html">/archive/sunday-services/2018/</a>.</p>
<script defer src="/js/site-20260715.js"></script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/about-us-organizations.html"> <link rel="canonical" href="/about-us-organizations.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-124 page-child parent-pageid-29 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-124 page-child parent-pageid-29 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -89,9 +90,9 @@ The following are just a few of the logos and links to these organizations&#8217
<hr /> <hr />
<p><a href="http://unificationnews.com/"><img decoding="async" class="alignleft wp-image-177" alt="Logo_UC_Fit3" src="/assets/uploads/2013/10/Logo_UC_Fit31.png" width="117" height="117" /></a> The Unification Church is the religious definition used by those who  choose to study and follow the teachings of Rev. Moon and Dr. Hak  Ja Han moon. It is an international religious movement commonly  known for the mass Blessing-Marriage ceremonies held in Korea  each year. For more information you can also check out the <a href="http://unification.ie/">Unification Church in Ireland </a>.</p> <p><a href="http://unificationnews.com/"><img decoding="async" class="alignleft wp-image-177" alt="Logo_UC_Fit3" src="/assets/uploads/2013/10/Logo_UC_Fit31.png" width="117" height="117" /></a> The Unification Church is the religious definition used by those who  choose to study and follow the teachings of Rev. Moon and Dr. Hak  Ja Han moon. It is an international religious movement commonly  known for the mass Blessing-Marriage ceremonies held in Korea  each year. For more information you can also check out the <a href="http://unification.ie/">Unification Church in Ireland </a>.</p>
<hr /> <hr />
<p><a href="https://www.wfwp.org/our-story"><img decoding="async" class="alignleft wp-image-180" alt="Logo_WFWP_Fit3" src="/assets/uploads/2013/10/Logo_WFWP_Fit3.png" width="117" height="117" /></a>The Womens Federation for World Peace, or WFWP, was founded by Rev. Moon&#8217;s wife, Dr. Hak Ja Han Moon in 1992 in the conviction that a better future for the world is in the hands of women. WFWP aims to encourage and raise new women leaders that can take part in building a better society.</p> <p><a href="http://www.wfwp.org/wfwpi/index.cfm"><img decoding="async" class="alignleft wp-image-180" alt="Logo_WFWP_Fit3" src="/assets/uploads/2013/10/Logo_WFWP_Fit3.png" width="117" height="117" /></a>The Womens Federation for World Peace, or WFWP, was founded by Rev. Moon&#8217;s wife, Dr. Hak Ja Han Moon in 1992 in the conviction that a better future for the world is in the hands of women. WFWP aims to encourage and raise new women leaders that can take part in building a better society.</p>
<hr /> <hr />
<p><a href="https://www.irff-uk.org/"><img loading="lazy" decoding="async" class="alignleft wp-image-176" alt="Logo_IRFF_Fit3" src="/assets/uploads/2013/10/Logo_IRFF_Fit3.png" width="117" height="117" /></a>The IRFF UK, or International Relief Friendship Foundation UK, seeks a world of ethical action, social justice, self-reliance and opportunity. Through educational service projects that promote sustainability,  opportunities for human development, community welfare and social progress are created.</p> <p><a href="http://www.irff.org/"><img loading="lazy" decoding="async" class="alignleft wp-image-176" alt="Logo_IRFF_Fit3" src="/assets/uploads/2013/10/Logo_IRFF_Fit3.png" width="117" height="117" /></a>The IRFF, or Internationa Relief Friendship Foundation, seeks a world of ethical action, social justice, self-reliance and opportunity. Through educational service projects that promote sustainability,  opportunities for human development, community welfare and social progress are created.</p>
<p>&nbsp;</p> <p>&nbsp;</p>
</div><!-- .entry-content --> </div><!-- .entry-content -->
</div><!-- #post-## --> </div><!-- #post-## -->
@ -137,6 +138,12 @@ The following are just a few of the logos and links to these organizations&#8217
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/about.html"> <link rel="canonical" href="/about.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-29 page-parent custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template page-template-templates page-template-template-twocolumns-right page-template-templatestemplate-twocolumns-right-php page page-id-29 page-parent custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -141,6 +142,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2013.html"> <link rel="canonical" href="/archive-sunday-services-2013.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-405 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-405 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -135,6 +136,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2014.html"> <link rel="canonical" href="/archive-sunday-services-2014.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-442 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-442 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -99,7 +100,7 @@
<p><a title="Testimony" href="https://vimeo.com/101295376" target="_blank">July 20, 2014</a> &#8220;Testimony&#8221; (Rosin &amp; Rose)</p> <p><a title="Testimony" href="https://vimeo.com/101295376" target="_blank">July 20, 2014</a> &#8220;Testimony&#8221; (Rosin &amp; Rose)</p>
<p><a title="Rev. An" href="https://vimeo.com/101295375" target="_blank">July 13, 2014</a>  (Rev. An)</p> <p><a title="Rev. An" href="https://vimeo.com/101295375" target="_blank">July 13, 2014</a>  (Rev. An)</p>
<p><a title="&quot;Back to Basics&quot;" href="https://vimeo.com/100027786" target="_blank">July 6, 2014</a> &#8220;Back to Basics&#8221; (Halvard)</p> <p><a title="&quot;Back to Basics&quot;" href="https://vimeo.com/100027786" target="_blank">July 6, 2014</a> &#8220;Back to Basics&#8221; (Halvard)</p>
<p>June 29, 2014 &#8220;Vision 2020 Recap&#8221; (Ely)</p> <p><a title="&quot;Vision 2020 Recap&quot;" href="https://vimeo.com/99452573" target="_blank">June 29, 2014</a> &#8220;Vision 2020 Recap&#8221; (Ely)</p>
<p><a title="&quot;Ideal Couples&quot;" href="https://vimeo.com/98851086" target="_blank">June 22, 2014</a> &#8220;Ideal Couples&#8221; (John)</p> <p><a title="&quot;Ideal Couples&quot;" href="https://vimeo.com/98851086" target="_blank">June 22, 2014</a> &#8220;Ideal Couples&#8221; (John)</p>
<p><a title="&quot;Blessing Testimony&quot;" href="https://vimeo.com/97035770" target="_blank">June 1, 2014</a> &#8220;Blessing Testimony&#8221; (Lisa &amp; Alex)</p> <p><a title="&quot;Blessing Testimony&quot;" href="https://vimeo.com/97035770" target="_blank">June 1, 2014</a> &#8220;Blessing Testimony&#8221; (Lisa &amp; Alex)</p>
<p><a title="&quot;Grace&quot;" href="https://vimeo.com/94829881" target="_blank">May 11, 2014</a> &#8220;Grace&#8221; (John)</p> <p><a title="&quot;Grace&quot;" href="https://vimeo.com/94829881" target="_blank">May 11, 2014</a> &#8220;Grace&#8221; (John)</p>
@ -160,6 +161,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2015.html"> <link rel="canonical" href="/archive-sunday-services-2015.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-637 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-637 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -145,6 +146,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2016.html"> <link rel="canonical" href="/archive-sunday-services-2016.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-705 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-705 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -144,6 +145,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2017.html"> <link rel="canonical" href="/archive-sunday-services-2017.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-2500 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-2500 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -151,6 +152,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/archive-sunday-services-2018.html"> <link rel="canonical" href="/archive-sunday-services-2018.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="page-template-default page page-id-2510 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="page-template-default page page-id-2510 custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -135,6 +136,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2013/08/03/news.html"> <link rel="canonical" href="/blog/2013/08/03/news.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-1 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-1 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -134,6 +135,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -12,15 +12,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2013/10/25/add-event.html"> <link rel="canonical" href="/blog/2013/10/25/add-event.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-215 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-215 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -33,11 +38,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -144,6 +145,19 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript" src="/assets/vendor/forms/public/assets/js/jquery.validate.min.js?ver=1.9.0" id="jquery-form-validation-js"></script>
<script type="text/javascript" src="/assets/vendor/forms/public/assets/js/vfb-validation.min.js?ver=2014.04.12" id="visual-form-builder-validation-js"></script>
<script type="text/javascript" src="/assets/vendor/forms/public/assets/js/jquery.metadata.js?ver=2.0" id="visual-form-builder-metadata-js"></script>
<script type="text/javascript" src="/assets/vendor/forms/public/assets/js/i18n/validate/messages-en_US.js?ver=1.9.0" id="vfb-validation-i18n-js"></script>
<script type="text/javascript" src="/assets/vendor/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
<script type="text/javascript" src="/assets/vendor/jquery/ui/datepicker.min.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script>
<script type="text/javascript" src="/assets/vendor/forms/public/assets/js/i18n/datepicker/datepicker-en_US.js?ver=1.0" id="vfb-datepicker-i18n-js"></script>
<script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2014/03/30/divine-principle-introduction-evening.html"> <link rel="canonical" href="/blog/2014/03/30/divine-principle-introduction-evening.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-428 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-428 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -136,6 +137,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html"> <link rel="canonical" href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-475 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-475 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -83,7 +84,7 @@
<div class="entry-content"> <div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p>Announcement from familyfed.org:</p> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p>Announcement from familyfed.org:</p>
<p><em>&#8220;IPeace TV has released its October issue of True Peace magazine, a monthly electronic publication that highlights True Parents words—past and present—as well as recent events and regional news&#8230;&#8230;</em></p> <p><em>&#8220;IPeace TV has released its October issue of True Peace magazine, a monthly electronic publication that highlights True Parents words—past and present—as well as recent events and regional news&#8230;&#8230;</em></p>
<p><em>This month <em>True Peace</em> magazine features the <a href="https://2021.familyfed.org/news-story/yeon-jin-moon-and-jeung-jin-moons-joint-holy-wedding-6255/" target="_blank">joint Holy Wedding of True Parents youngest children</a>, Yeon-jin Moon and Jeung-jin Moon, and celebrates this joyful time for the two couples. Other articles include a message that True Father gave in 1988 to commemorate the 38th anniversary of his release from the Heungnam Special Labor Camp, True Mothers message on September 1 and her keynote address which was read at the Global Youth Festival, the founders address read by Dr. Sun-jin Moon at the 2014 World Summit, and some of the latest major events in Japan and the United States.</em></p> <p><em>This month <em>True Peace</em> magazine features the <a href="http://familyfed.org/news-story/yeon-jin-moon-and-jeung-jin-moons-joint-holy-wedding-6255/" target="_blank">joint Holy Wedding of True Parents youngest children</a>, Yeon-jin Moon and Jeung-jin Moon, and celebrates this joyful time for the two couples. Other articles include a message that True Father gave in 1988 to commemorate the 38th anniversary of his release from the Heungnam Special Labor Camp, True Mothers message on September 1 and her keynote address which was read at the Global Youth Festival, the founders address read by Dr. Sun-jin Moon at the 2014 World Summit, and some of the latest major events in Japan and the United States.</em></p>
<p><em> The October issue of True Peace magazine can be downloaded <a href="http://en.ipeacetv.com/board/EBOOK/Ebook_list.asp?code=E0201" target="_blank">here</a>. The True Peace magazine editorial team is now preparing for the next issue and beyond. Look forward to more great stories and speeches, and <a href="http://en.ipeacetv.com/" target="_blank">visit the website</a> to keep up with the latest news and publications. &#8220;</em></p> <p><em> The October issue of True Peace magazine can be downloaded <a href="http://en.ipeacetv.com/board/EBOOK/Ebook_list.asp?code=E0201" target="_blank">here</a>. The True Peace magazine editorial team is now preparing for the next issue and beyond. Look forward to more great stories and speeches, and <a href="http://en.ipeacetv.com/" target="_blank">visit the website</a> to keep up with the latest news and publications. &#8220;</em></p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content --> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2014/10/24/check-out-the-latest-issue-of-true-peace-magazine.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
@ -137,6 +138,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html"> <link rel="canonical" href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-624 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-624 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -84,7 +85,7 @@
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><a href="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-626" src="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png" alt="Father's 3rd SeongHwa flier" width="724" height="510" srcset="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png 724w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-300x211.png 300w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-213x150.png 213w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-150x106.png 150w" sizes="(max-width: 724px) 100vw, 724px" /></a></p> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><p><a href="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png"><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-626" src="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png" alt="Father's 3rd SeongHwa flier" width="724" height="510" srcset="/assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier.png 724w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-300x211.png 300w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-213x150.png 213w, /assets/uploads/2015/08/Fathers-3rd-SeongHwa-flier-150x106.png 150w" sizes="(max-width: 724px) 100vw, 724px" /></a></p>
<p class="ai1ec-field-value ai1ec-col-sm-9 dt-duration">Come celebrate with us the life of Rev. Moon, the founder of the Unification Church and a Global Peace Citizen.</p> <p class="ai1ec-field-value ai1ec-col-sm-9 dt-duration">Come celebrate with us the life of Rev. Moon, the founder of the Unification Church and a Global Peace Citizen.</p>
<p class="ai1ec-field-label ai1ec-col-sm-3">To RSVP: Click<a title="RSVP" href="#"> HERE</a></p> <p class="ai1ec-field-label ai1ec-col-sm-3">To RSVP: Click<a title="RSVP" href="#"> HERE</a></p>
<p class="ai1ec-field-label ai1ec-col-sm-3">Find out more about Rev. Moon&#8217;s life and legacy: <strong><a title="Rev. Moon" href="https://familyfed.org/about-us" target="_blank">Official FamilyFed founder biography</a></strong></p> <p class="ai1ec-field-label ai1ec-col-sm-3">Find out more about Rev. Moon&#8217;s life and legacy: <strong><a title="Rev. Moon" href="http://www.washingtontimes.com/news/2012/sep/2/rev-sun-myung-moon-founder-times-dies-92/?page=all" target="_blank">Rev. Moon, Times founder, dies at 92</a> </strong>(The Washington Times, Sept. 2, 2012)</p>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content --> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2015/08/26/celebrating-the-life-of-rev-moon.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
@ -137,6 +138,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2016/01/03/happy-new-year.html"> <link rel="canonical" href="/blog/2016/01/03/happy-new-year.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-660 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-660 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -81,10 +82,10 @@
&nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2016-01-03T05:14:47+00:00"> <a href="/blog/2016/01/03/happy-new-year.html" rel="bookmark">January 3, 2016</a> </time></span><time class="updated" datetime="2016-01-03T05:14:47+00:00">January 3, 2016</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta --> &nbsp; <span class="author vcard" >By <a class="url fn n" rel="author" href="#" title="View all posts by Fami1yfed">Fami1yfed</a></span> <span><time class="onDate date published" datetime="2016-01-03T05:14:47+00:00"> <a href="/blog/2016/01/03/happy-new-year.html" rel="bookmark">January 3, 2016</a> </time></span><time class="updated" datetime="2016-01-03T05:14:47+00:00">January 3, 2016</time> <span class="bl_categ"> <a href="/blog/categories/uncategorized.html" rel="tag">Uncategorized</a> </span> </div><!-- .entry-meta -->
<div class="entry-content"> <div class="entry-content">
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><div style="width: 628px" class="wp-caption alignnone"><img fetchpriority="high" decoding="async" class="" src="/assets/uploads/2016/01/happy-new-year-2016.svg" alt="Happy New Year 2016 greeting" width="618" height="453" /><p class="wp-caption-text">Happy New Year 2016!</p></div> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div><div style="width: 628px" class="wp-caption alignnone"><img fetchpriority="high" decoding="async" class="" src="https://www.techicy.com/assets/uploads/2014/12/happy-New-Year-greetings-2015-3.jpg" alt="" width="618" height="453" /><p class="wp-caption-text">Happy New Year 2016!</p></div>
<h4>Let go of the past year and bring on the new.</h4> <h4>Let go of the past year and bring on the new! Check out this article by Dplife.info:</h4>
<h1>2015 Wasnt What I Thought It Would Be</h1> <h1><a title="dplife.info/2015 Wasn't What I thought" href="http://dplife.info/blog/view/2015-wasnt-what-i-thought-it-would-be/" target="_blank">2015 Wasnt What I Thought It Would Be </a></h1>
<h3>&#8230;and That&#8217;s Okay.</h3> <h3><a title="dplife.info/2015 Wasn't What I thought" href="http://dplife.info/blog/view/2015-wasnt-what-i-thought-it-would-be/" target="_blank">&#8230;and That&#8217;s Okay.</a></h3>
<div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content --> <div class="pdfprnt-buttons pdfprnt-buttons-post pdfprnt-top-bottom-left"><a href="/blog/2016/01/03/happy-new-year.html?print=pdf" class="pdfprnt-button pdfprnt-button-pdf" target="_blank"><img decoding="async" src="/assets/vendor/pdf/images/pdf.png" alt="image_pdf" title="Download PDF" /></a></div> </div><!-- .entry-content -->
@ -137,6 +138,12 @@
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html"> <link rel="canonical" href="/blog/2018/05/20/jesus-christ-the-pride-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-725 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-725 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -241,6 +242,12 @@ Seoul, Korea</strong></center></p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html"> <link rel="canonical" href="/blog/2018/05/20/jesus-is-searching-for-us-in-this-way.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-727 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-727 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -209,6 +210,12 @@ Seoul, Korea</strong></center></p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html"> <link rel="canonical" href="/blog/2018/05/20/let-us-become-the-elite-troop-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-719 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-719 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -223,6 +224,12 @@ II Timothy 2:1-13</center></p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html"> <link rel="canonical" href="/blog/2018/05/21/jesus-christ-who-went-and-came-and-who-will-come-and-go-for-the-sake-of-heaven-and-earth.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-729 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-729 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -215,6 +216,12 @@ Seoul, Korea</strong></center></p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html"> <link rel="canonical" href="/blog/2018/05/21/like-jesus-let-us-return-the-glory-of-the-resurrection-to-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-731 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-731 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -198,6 +199,12 @@ Beloved Father, how much did You want the Jewish people and the believers in Jud
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html"> <link rel="canonical" href="/blog/2018/05/22/let-us-become-people-who-pay-back-our-debts.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-737 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-737 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -232,6 +233,12 @@ the Debt of Love, and the Debt of Karma</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html"> <link rel="canonical" href="/blog/2018/05/22/let-us-bring-out-the-value-of-restoration.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-745 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-745 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -231,6 +232,12 @@ Through the Cooperation of the Holy Spirit</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html"> <link rel="canonical" href="/blog/2018/05/22/let-us-claim-back-the-world-of-gods-dominion-and-offer-it-to-him.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-739 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-739 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -244,6 +245,12 @@ Desperately Seeking for 6,000 Years</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html"> <link rel="canonical" href="/blog/2018/05/22/let-us-fulfill-the-will-of-gods-love-that-seeks-to-bring-unification.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-735 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-735 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -203,6 +204,12 @@ Seoul, Korea</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html"> <link rel="canonical" href="/blog/2018/05/22/the-pledge-that-must-be-fulfilled.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-748 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-748 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -207,6 +208,12 @@ Requested Us to &#8220;Love One Another&#8221;</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html"> <link rel="canonical" href="/blog/2018/05/22/the-responsibility-of-those-who-have-become-the-root.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-741 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-741 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -249,6 +250,12 @@ the Hidden Foundation of Moses&#8217; Devotion</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html"> <link rel="canonical" href="/blog/2018/05/23/behold-the-little-lamb-of-god-who-is-bearing-the-sins-of-the-world.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-758 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-758 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -257,6 +258,12 @@ You Must Maintain Unchanging Faith</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html"> <link rel="canonical" href="/blog/2018/05/23/jesus-is-the-hero-of-the-universal-revolution.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-756 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-756 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -243,6 +244,12 @@ the Last Days Must Awaken</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html"> <link rel="canonical" href="/blog/2018/05/23/let-us-become-the-one-who-attends-the-lord-who-has-come-for-the-sake-of-all-humankind.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-766 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-766 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -302,6 +303,12 @@ to Console the Father</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html"> <link rel="canonical" href="/blog/2018/05/23/let-us-claim-back-the-eternal-ideal-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-754 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-754 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -225,6 +226,12 @@ that Jesus Established</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html"> <link rel="canonical" href="/blog/2018/05/23/let-us-take-part-in-the-glory-that-god-recognizes.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-752 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-752 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -227,6 +228,12 @@ Headquarters Church, Seoul, Korea</p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html"> <link rel="canonical" href="/blog/2018/05/23/the-people-chosen-for-the-restoration-of-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-768 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-768 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -278,6 +279,12 @@ and Return Glory</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html"> <link rel="canonical" href="/blog/2018/05/23/the-providence-of-god-and-the-nature-of-the-adventure-that-transcends-reality.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-762 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-762 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -267,6 +268,12 @@ Our Ancestors and Jesus</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html"> <link rel="canonical" href="/blog/2018/05/23/those-who-will-possess-the-kingdom-of-heaven-of-hope.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-764 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-764 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -280,6 +281,12 @@ and Jesus Did Not Change</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html"> <link rel="canonical" href="/blog/2018/05/23/why-did-jesus-become-the-little-lamb-who-bore-all-the-sins-of-this-world.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-750 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-750 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -194,6 +195,12 @@ Headquarters Church, Seoul, Korea</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html"> <link rel="canonical" href="/blog/2018/06/02/jesus-view-of-life-for-the-sake-of-the-restoration.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-781 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-781 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -216,6 +217,12 @@ MUST HAVE IN THE LAST DAYS</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html"> <link rel="canonical" href="/blog/2018/06/02/jesus-who-is-to-establish-heavens-love.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-788 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-788 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -249,6 +250,12 @@ AS THE UNDEFILED SACRIFICE</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html"> <link rel="canonical" href="/blog/2018/06/02/jesus-who-looks-back-on-walking-the-path-of-his-fate.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-784 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-784 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -214,6 +215,12 @@ WHO IS TO LOOK BACK AT JESUS</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html"> <link rel="canonical" href="/blog/2018/06/02/let-us-be-the-ones-jesus-wants.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-786 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-786 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -247,6 +248,12 @@ STANDARD OF HIS OR HER PERFECTION</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/for-whom-are-we-living.html"> <link rel="canonical" href="/blog/2018/06/04/for-whom-are-we-living.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-808 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-808 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -170,6 +171,12 @@ April 7, 1957</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html"> <link rel="canonical" href="/blog/2018/06/04/let-us-be-the-harvest-of-goodness-heaven-desires.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-792 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-792 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -242,6 +243,12 @@ THAT TRANSCENDED HISTORY</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html"> <link rel="canonical" href="/blog/2018/06/04/let-us-become-the-elite-troops-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-810 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-810 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -226,6 +227,12 @@ of Liberating All People</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html"> <link rel="canonical" href="/blog/2018/06/04/let-us-step-beyond-this-world-that-has-become-a-sacrifice.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-796 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-796 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -216,6 +217,12 @@ the Mission of the Tribe of Levi</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/let-us-untie-the-knot.html"> <link rel="canonical" href="/blog/2018/06/04/let-us-untie-the-knot.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-803 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-803 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -161,6 +162,12 @@ March 24, 1957</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html"> <link rel="canonical" href="/blog/2018/06/04/the-lord-is-my-good-shepherd.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-806 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-806 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -209,6 +210,12 @@ with the Love, Life and Hope of God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html"> <link rel="canonical" href="/blog/2018/06/04/we-are-the-ones-who-must-possess-the-key-to-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-800 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-800 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -278,6 +279,12 @@ Perfected Love, Life and Truth</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html"> <link rel="canonical" href="/blog/2018/06/04/what-kind-of-resurrection-are-you-trying-to-accomplish.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-794 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-794 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -209,6 +210,12 @@ in the Glorious Resurrection</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html"> <link rel="canonical" href="/blog/2018/06/05/gods-power-is-revealed-where-one-heart-and-one-will-have-been-realized.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-884 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-884 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -224,6 +225,12 @@ Seoul, Korea</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/heaven-is-calling-us.html"> <link rel="canonical" href="/blog/2018/06/05/heaven-is-calling-us.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-892 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-892 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -207,6 +208,12 @@ Who Have Received the Royal Summons</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/jesus-true-heart-for-god.html"> <link rel="canonical" href="/blog/2018/06/05/jesus-true-heart-for-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-846 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-846 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -225,6 +226,12 @@ Who Should Follow Jesus&#8217; Example</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-the-sleeping-world-awaken.html"> <link rel="canonical" href="/blog/2018/06/05/let-the-sleeping-world-awaken.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-819 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-819 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -256,6 +257,12 @@ the Event of Judgment in Substitution</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-avoid-being-punished-for-our-sins-by-restoring-the-original-nature-of-goodness.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-841 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-841 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -171,6 +172,12 @@ July 21, 1957</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-be-a-victor-for-god.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-be-a-victor-for-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-837 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-837 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -268,6 +269,12 @@ as a Parent to a Child</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-be-israel-the-chosen-people-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-905 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-905 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -296,6 +297,12 @@ the Yoke of Satan&#8217;s Ridicule</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-be-strong-and-bold-and-restore-the-lost-land.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-834 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-834 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -249,6 +250,12 @@ the Mission of Human Beings</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-be-the-people-who-attend-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-901 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-901 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -243,6 +244,12 @@ Should Possess the Word</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-a-true-member-of-jesus-family.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-870 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-870 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -239,6 +240,12 @@ The Person Who Can Build a Relationship to Live for Each Other.</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-people-who-participate-in-the-glory-of-the-lord.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-831 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-831 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -285,6 +286,12 @@ in the Glory of the Lord</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-the-brides-who-reclaim-what-was-lost-to-jesus.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-861 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-861 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -248,6 +249,12 @@ Who Completes His Responsibility and Marches on until the End</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-the-citizens-who-take-possession-of-the-kingdom-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-825 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-825 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -253,6 +254,12 @@ the Thesis of the New System of Truth</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-the-ones-who-can-understand-gods-sorrow.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-875 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-875 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -218,6 +219,12 @@ by Jesus&#8217; Being Crucified</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-become-the-true-sons-and-daughters-of-the-true-father.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-852 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-852 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -263,6 +264,12 @@ as True Sons and Daughters</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-celebrate-christmas-on-behalf-of-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-887 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-887 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -180,6 +181,12 @@ Understand the Will of God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-climb-over-the-hill-of-historical-misfortune.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-896 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-896 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -246,6 +247,12 @@ in the Last Days</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-establish-the-glorious-original-homeland.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-864 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-864 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -196,6 +197,12 @@ in Order to Attain a Precious Thing</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-go-over-the-hill-to-enter-the-original-garden.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-843 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-843 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -206,6 +207,12 @@ July 28, 1957</p>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-join-in-the-pursuit-of-the-homeland.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-855 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-855 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -261,6 +262,12 @@ Judged by the Things We Like</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-not-become-a-betrayer-of-gods-will.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-873 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-873 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -222,6 +223,12 @@ in Spite of Persecution and Rejection</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-restore-gods-kingdom-and-his-righteousness.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-867 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-867 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -261,6 +262,12 @@ and That Righteousness</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html"> <link rel="canonical" href="/blog/2018/06/05/let-us-understand-the-true-path-and-discern-the-side-path.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-881 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-881 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -247,6 +248,12 @@ of the True Shepherd</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html"> <link rel="canonical" href="/blog/2018/06/05/lets-be-the-person-who-has-the-heart-of-jesus-christ.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-899 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-899 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -87,7 +88,7 @@ Seoul, Korea<br />
January 26, 1958</h3> January 26, 1958</h3>
<p style="text-align: center;"><em>Philippians 1:1-11</em></p> <p style="text-align: center;"><em>Philippians 1:1-11</em></p>
<p class="chapter-1" style="text-align: center;"><em><span id="en-NIV-29363" class="text Phil-1-1"><span class="chapternum"> </span>Paul and Timothy, servants of Christ Jesus,</span></em></p> <p class="chapter-1" style="text-align: center;"><em><span id="en-NIV-29363" class="text Phil-1-1"><span class="chapternum"> </span>Paul and Timothy, servants of Christ Jesus,</span></em></p>
<p class="top-05" style="text-align: center;"><em><span class="text Phil-1-1">To all Gods holy people in Christ Jesus at Philippi, together with the overseers and deacons<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-29363a" data-link="[&lt;a href=&quot;#fen-NIV-29363a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Philippians%201%3A1-11&version=NIV#fen-NIV-29363a">a</a>]</sup>:</span></em></p> <p class="top-05" style="text-align: center;"><em><span class="text Phil-1-1">To all Gods holy people in Christ Jesus at Philippi, together with the overseers and deacons<sup class="footnote" style="box-sizing: border-box; font-size: 0.625em; line-height: 22px; position: relative; vertical-align: top; top: 0px;" data-fn="#fen-NIV-29363a" data-link="[&lt;a href=&quot;#fen-NIV-29363a&quot; title=&quot;See footnote a&quot;&gt;a&lt;/a&gt;]">[<a title="See footnote a" href="https://www.biblegateway.com/passage/?search=Philippians+1:1-11#fen-NIV-29363a">a</a>]</sup>:</span></em></p>
<p class="top-05" style="text-align: center;"><em><span id="en-NIV-29364" class="text Phil-1-2"><sup class="versenum">2 </sup>Grace and peace to you from God our Father and the Lord Jesus Christ.</span></em></p> <p class="top-05" style="text-align: center;"><em><span id="en-NIV-29364" class="text Phil-1-2"><sup class="versenum">2 </sup>Grace and peace to you from God our Father and the Lord Jesus Christ.</span></em></p>
<p style="text-align: center;"><em><span class="text Phil-1-3"><sup class="versenum">3 </sup>I thank my God every time I remember you.</span> <span id="en-NIV-29366" class="text Phil-1-4"><sup class="versenum">4 </sup>In all my prayers for all of you, I always pray with joy</span> <span id="en-NIV-29367" class="text Phil-1-5"><sup class="versenum">5 </sup>because of your partnership in the gospel from the first day until now,</span> <span id="en-NIV-29368" class="text Phil-1-6"><sup class="versenum">6 </sup>being confident of this, that he who began a good work in you will carry it on to completion until the day of Christ Jesus.</span></em></p> <p style="text-align: center;"><em><span class="text Phil-1-3"><sup class="versenum">3 </sup>I thank my God every time I remember you.</span> <span id="en-NIV-29366" class="text Phil-1-4"><sup class="versenum">4 </sup>In all my prayers for all of you, I always pray with joy</span> <span id="en-NIV-29367" class="text Phil-1-5"><sup class="versenum">5 </sup>because of your partnership in the gospel from the first day until now,</span> <span id="en-NIV-29368" class="text Phil-1-6"><sup class="versenum">6 </sup>being confident of this, that he who began a good work in you will carry it on to completion until the day of Christ Jesus.</span></em></p>
<p style="text-align: center;"><em><span id="en-NIV-29369" class="text Phil-1-7"><sup class="versenum">7 </sup>It is right for me to feel this way about all of you, since I have you in my heart and, whether I am in chains or defending and confirming the gospel, all of you share in Gods grace with me.</span> <span id="en-NIV-29370" class="text Phil-1-8"><sup class="versenum">8 </sup>God can testify how I long for all of you with the affection of Christ Jesus.</span></em></p> <p style="text-align: center;"><em><span id="en-NIV-29369" class="text Phil-1-7"><sup class="versenum">7 </sup>It is right for me to feel this way about all of you, since I have you in my heart and, whether I am in chains or defending and confirming the gospel, all of you share in Gods grace with me.</span> <span id="en-NIV-29370" class="text Phil-1-8"><sup class="versenum">8 </sup>God can testify how I long for all of you with the affection of Christ Jesus.</span></em></p>
@ -238,6 +239,12 @@ Who Dissolve God&#8217;s Han</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html"> <link rel="canonical" href="/blog/2018/06/05/on-the-day-of-resurrection-summary-of-sermon.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-816 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-816 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -151,6 +152,12 @@ April 17, 1957 (Easter)</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/the-meaning-of-the-trinity.html"> <link rel="canonical" href="/blog/2018/06/05/the-meaning-of-the-trinity.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-890 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-890 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -197,6 +198,12 @@ We must Be Tested More than Three Times</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html"> <link rel="canonical" href="/blog/2018/06/05/the-path-its-purpose-and-its-value.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-858 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-858 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -244,6 +245,12 @@ and Individual Efforts</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html"> <link rel="canonical" href="/blog/2018/06/05/the-person-who-is-to-remain-before-gods-will.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-839 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-839 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -170,6 +171,12 @@ July 7, 1957<br />
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html"> <link rel="canonical" href="/blog/2018/06/05/the-providential-life-of-jesus-and-its-victorious-purpose.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-878 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-878 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -227,6 +228,12 @@ Sacrifice and Service</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html"> <link rel="canonical" href="/blog/2018/06/05/we-who-are-searching-for-the-homeland-the-garden-of-eden.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-828 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-828 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -213,6 +214,12 @@ the Work of Recreation</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/when-will-we-stand-before-god.html"> <link rel="canonical" href="/blog/2018/06/05/when-will-we-stand-before-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-849 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-849 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -246,6 +247,12 @@ Who Can Stand Before God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html"> <link rel="canonical" href="/blog/2018/06/05/where-is-the-refuge-in-which-heaven-can-dwell.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-894 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-894 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -240,6 +241,12 @@ the Resting Place for God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html"> <link rel="canonical" href="/blog/2018/06/05/why-does-the-lord-have-to-come-back.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-822 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-822 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -243,6 +244,12 @@ the Lord of the Second Advent</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html"> <link rel="canonical" href="/blog/2018/06/06/let-us-experience-the-sorrow-of-god.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-915 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-915 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -222,6 +223,12 @@ the Path of the Heavenly Way</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html"> <link rel="canonical" href="/blog/2018/06/06/let-us-not-weaken-our-determination-toward-heaven.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-912 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-912 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -273,6 +274,12 @@ March Forward with Force and Courage</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/oh-father-we-welcome-you.html"> <link rel="canonical" href="/blog/2018/06/06/oh-father-we-welcome-you.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-918 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-918 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -272,6 +273,12 @@ Who Can Attend the Father</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html"> <link rel="canonical" href="/blog/2018/06/06/the-heart-of-jesus-who-must-restore-all-tasks.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-923 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-923 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -232,6 +233,12 @@ March Forward with the Determination to Die</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html"> <link rel="canonical" href="/blog/2018/06/06/the-whole-universe-is-searching-for-the-one-day-of-love.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-909 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-909 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -242,6 +243,12 @@ Centered on the Love of God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/to-whom-do-you-belong.html"> <link rel="canonical" href="/blog/2018/06/06/to-whom-do-you-belong.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-920 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-920 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -263,6 +264,12 @@ World Which God Must Possess</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html"> <link rel="canonical" href="/blog/2018/06/06/what-is-god-going-to-do-with-exiled-humanity.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-927 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-927 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -260,6 +261,12 @@ Build a Relationship with Heaven</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/07/at-a-field-service.html"> <link rel="canonical" href="/blog/2018/06/07/at-a-field-service.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-945 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-945 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -175,6 +176,12 @@ May 11, 1958</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/07/gods-possession-and-our-possession.html"> <link rel="canonical" href="/blog/2018/06/07/gods-possession-and-our-possession.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-972 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-972 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -294,6 +295,12 @@ Is to be Owned by God</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html"> <link rel="canonical" href="/blog/2018/06/07/humankind-wanders-in-search-of-the-truth.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-978 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-978 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -330,6 +331,12 @@ the Purpose of Saving Fallen Men</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

View file

@ -10,15 +10,20 @@
<link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-fonts-css' href='/assets/theme/parabola/fonts/fontfaces.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-style-css' href='/assets/theme/parabola/style.css?ver=2.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-theme-css' href='/css/theme.css' type='text/css' media='all' />
<link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css?ver=20260715-1' type='text/css' media='all' /> <link rel='stylesheet' id='familyfedie-site-css' href='/css/site.css' type='text/css' media='all' />
<link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' /> <link rel='stylesheet' id='parabola-mobile-css' href='/assets/theme/parabola/styles/style-mobile.css?ver=2.4.1' type='text/css' media='all' />
<script type="text/javascript" src="/js/jquery.min.js?ver=2.0.2" id="jquery-js"></script>
<script type="text/javascript" id="parabola-frontend-js-extra">
/* <![CDATA[ */
var parabola_settings = {"masonry":"0","magazine":"0","mobile":"1","fitvids":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/assets/theme/parabola/js/frontend.js?ver=2.4.1" id="parabola-frontend-js"></script>
<link rel="canonical" href="/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html"> <link rel="canonical" href="/blog/2018/06/07/jesus-who-came-with-the-destiny-of-restoration.html">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'self'; object-src 'none'; img-src 'self' data: https:; font-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://static.cloudflareinsights.com; connect-src 'self' https:; frame-src https://www.youtube.com https://www.youtube-nocookie.com https://player.vimeo.com; form-action 'self' mailto: https:; upgrade-insecure-requests" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
</head> </head>
<body class="post-template-default single single-post postid-957 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left"> <body class="post-template-default single single-post postid-957 single-format-standard custom-background tribe-no-js metaslider-plugin parabola-image-three caption-light meta-light parabola_triagles parabola-menu-left">
<button id="toTop" type="button" aria-label="Back to top"></button> <div id="toTop"> </div>
<div id="wrapper" class="hfeed"> <div id="wrapper" class="hfeed">
@ -31,11 +36,7 @@
<div id="branding" role="banner" > <div id="branding" role="banner" >
<picture class="site-banner"> <img id="bg_image" alt="FFWPU Ireland" title="FFWPU Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" /><div id="header-container">
<source type="image/avif" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.avif 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.avif 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.avif 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<source type="image/webp" srcset="/assets/uploads/2013/10/BannerFamilyFed_23_10c1-481.webp 481w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-768.webp 768w, /assets/uploads/2013/10/BannerFamilyFed_23_10c1-1050.webp 1050w" sizes="(max-width: 1050px) 100vw, 1050px" />
<img id="bg_image" alt="Family Federation for World Peace and Unification Ireland" src="/assets/uploads/2013/10/BannerFamilyFed_23_10c1.jpg" width="1050" height="120" fetchpriority="high" />
</picture><div id="header-container">
<a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div> <a href="/index.html" id="linky"></a></div> <div style="clear:both;"></div>
</div><!-- #branding --> </div><!-- #branding -->
@ -226,6 +227,12 @@ Must Start up the Flame of the Mind</h3>
</footer><!-- #footer --> </footer><!-- #footer -->
</div><!-- #wrapper --> </div><!-- #wrapper -->
<script defer src="/js/site-20260715.js"></script>
<script>
( function ( body ) {
'use strict';
body.className = body.className.replace( /\btribe-no-js\b/, 'tribe-js' );
} )( document.body );
</script><script type="text/javascript">var cryout_global_content_width = 800;</script>
</body> </body>
</html> </html>

Some files were not shown because too many files have changed in this diff Show more