, i.e. AFTER this script executes, so the query returned null
// on every prerendered page and the classifier stamped
// "noindex, follow" into the DOM of real, unique pages. The prerenderer
// now stamps data-prerendered="1" on , which exists before any
// script runs. The canonical check is kept as a secondary guard.
var docEl = document.documentElement;
if (docEl && docEl.getAttribute('data-prerendered') === '1') return;
if (document.querySelector('link[rel="canonical"]')) return;
var origin = 'https://terraincognitaacademy.com';
var path = location.pathname || '/';
var malformedAbsoluteTarget = null;
try { path = decodeURIComponent(path); } catch (_) {}
path = path.replace(/^\/+https?:\/+((www\.)?terraincognitaacademy\.com)(?=\/|$)/i, function(){
malformedAbsoluteTarget = true;
return '';
});
if (!path) path = '/';
if (path.length > 1) path = path.replace(/\/+$/, '');
var canonical = origin + path;
// Routes that must NEVER be indexed (private/auth-gated/redirect aliases).
var NOINDEX_PREFIXES = [
'/spell-launcher','/instructor/apply','/course-finder','/dashboard','/admin',
'/checkout','/cart','/auth','/login','/signup','/messages','/profile/edit',
'/profile/settings','/settings','/student','/achievements','/my-invoices',
'/forum/new-topic','/forum/bookmarks','/instructor/earnings','/instructor/analytics',
'/instructor/courses','/instructor/content-library','/category-management',
'/gift-success','/claim-gift','/shop/success','/shop/download','/install','/search',
'/spirit-alignment-codex/result','/directory/manage','/directory/search'
];
// Legacy aliases that must canonicalize to current URLs (and stay noindex on the alias itself).
var REDIRECT_MAP = {
'/course-finder': '/spirit-alignment-codex',
'/your-path-assistant': '/spirit-alignment-codex',
'/spiritual-path-assistant': '/spirit-alignment-codex',
'/spirit-codex': '/spirit-alignment-codex',
'/codex': '/spirit-alignment-codex',
'/spirit-encyclopedia': '/encyclopedia',
'/ritual-design-system': '/rituals',
'/blog-posts': '/blog',
'/power-points': '/spiritual-world',
'/temple-teachings': '/forum',
'/affiliate': '/ambassador',
'/affiliates': '/ambassador',
'/affiliate/register': '/ambassador',
'/category/free': '/courses/category/free-spiritual-courses',
'/spiritual-development/usa': '/spiritual-development/united-states',
'/spiritual-development/uk': '/spiritual-development/united-kingdom',
'/spiritual-development/uae': '/spiritual-development/united-arab-emirates'
};
// Hub/listing routes that share filesystem space with item children
// (e.g. /courses cannot exist as a static file because dist/courses/
// is a directory). Inject SEO synchronously so Googlebot and SPA
// visitors get the correct title/description even when served from
// the root SPA fallback shell.
var HUB_SEO = {
'/courses': {
title: 'Occult Courses Online | Terra Incognita Academy',
description: 'Learn witchcraft, ceremonial magic, hermeticism and chaos magick with 300+ occult courses online. Expert instructors, lifetime access. Start today.'
},
'/shop': {
title: 'Grimoires & Occult PDF Books | Terra Incognita Academy',
description: 'Download grimoires, occult books and esoteric PDFs: Goetia, Solomonic magic, Book of Shadows, angelic and planetary rituals. Instant delivery, lifetime access.'
},
'/bundles': {
title: 'Occult Course Bundles | Terra Incognita Academy',
description: 'Save up to 50% on occult course bundles: witchcraft, ceremonial magic, hermeticism and evocation packages. Lifetime access, one payment.'
},
'/forum': {
title: 'Witchcraft & Occult Forum | Terra Incognita Academy',
description: 'Join our witchcraft forum and occult community. Discuss grimoires, rituals, evocation, meditation and esoteric practice with practitioners worldwide.'
},
'/blog': {
title: 'Blog — Spiritual Teachings | Terra Incognita Academy',
description: 'Read in-depth articles on spirit work, ritual practice, grimoire study and consciousness development from Terra Incognita Academy instructors.'
},
'/encyclopedia': {
title: 'Spirit Compatibility Guide | Terra Incognita Academy',
description: 'Explore the encyclopedia of spirits, domains, archetypes and intents. A comprehensive reference for serious practitioners at Terra Incognita Academy.'
},
'/rituals': {
title: 'Ritual Hub — Blueprints | Terra Incognita Academy',
description: 'Design personalized rituals with the Terra Incognita Academy Ritual Hub. Step-by-step blueprints for spirit work, devotion and transformation.'
},
'/glossary': {
title: 'Spiritual & Magical Glossary | Terra Incognita Academy',
description: 'Definitions of key spiritual, magical and esoteric terms used across courses, grimoires and rituals at Terra Incognita Academy.'
},
'/spiritual-world': {
title: 'Sacred Geography & Power Points | Terra Incognita',
description: 'Explore the spiritual world: power points, sacred sites and the geography of spirit. Curated by Terra Incognita Academy.'
},
'/instructors': {
title: 'Meet Our Teachers | Terra Incognita Academy',
description: 'Meet the experienced spiritual instructors of Terra Incognita Academy. Practitioners, scholars and guides leading our courses.'
},
'/pillars': {
title: 'Pillar Hubs — Goetia, Angels & Deities | Terra Incognita Academy',
description: 'Explore our pillar hubs: the 72 Goetic demons, the Shem HaMephorash angels, the Olympic spirits and the Norse, Celtic and Greek deities, with linked courses, grimoires and articles.'
},
'/about': {
title: 'About Us — Our Mission | Terra Incognita Academy',
description: 'Learn about Terra Incognita Academy: our mission to deliver rigorous, benevolent spiritual education for serious modern practitioners.'
}
};
// Indexable-from-the-shell allowlist.
//
// IMPORTANT: this list only ever applies to a URL that has NO prerendered
// HTML file (the script early-returns when a canonical is already present).
// A URL served by the generic shell has the homepage title and no unique
// content, so declaring it indexable produced thousands of identical
// "index,follow" pages — exactly the "Duplicate: Google chose a different
// canonical" and "Crawled - currently not indexed" reports.
//
// Therefore ONLY stable hub/static routes stay indexable here. Every
// item-level route (listings, cities, tags, topics, courses, products,
// profiles, certificates, …) must earn indexability by having a real
// prerendered page; without one it is noindex,follow.
var INDEX_PATTERNS = [
/^\/$/,
/^\/courses$/, /^\/shop$/, /^\/bundles$/, /^\/ebook-bundles$/, /^\/forum$/,
/^\/blog$/, /^\/encyclopedia$/, /^\/encyclopedia\/spirits$/,
/^\/spiritual-world$/, /^\/spirit-alignment-codex$/,
/^\/(theurgy|evocation|spirit-guides|spirit-communication)$/,
/^\/answers$/, /^\/glossary$/, /^\/compendium$/,
/^\/rituals$/, /^\/ritual-builder$/,
/^\/about$/, /^\/about\/faculty$/, /^\/contact$/, /^\/ambassador$/, /^\/instructors$/,
/^\/free-ebook$/, /^\/members$/, /^\/declaration$/, /^\/experienced-practitioners$/,
/^\/become-instructor$/, /^\/standing-faq$/, /^\/platform$/, /^\/sitemap$/, /^\/rss$/,
/^\/academy-transfer$/, /^\/accredited-spiritual-program$/, /^\/updates$/,
/^\/[a-z0-9-]+-school$/, /^\/certified-paths$/,
/^\/(infernal-healer|power-invoker|wealth-architect|infernal-strategist|master-of-knowledge|shadow-alchemist|master-of-influence|infernal-lover|infernal-protector|pathbreaker|infernal-seer|infernal-sovereign)$/,
/^\/privacy-policy$/, /^\/terms-of-service$/, /^\/cookie-policy$/,
/^\/refund-policy$/, /^\/disclaimer$/, /^\/copyright$/,
/^\/verify-certificate$/,
/^\/tags$/, /^\/pillars$/,
/^\/directory$/, /^\/directory\/pricing$/
];
var isNoindex = NOINDEX_PREFIXES.some(function(p){
return path === p || path.indexOf(p + '/') === 0;
});
var redirectTarget = REDIRECT_MAP[path];
// Pattern-based legacy redirects (must mirror the Cloudflare worker
// so direct browser hits behave identically to crawler hits).
if (!redirectTarget) {
var m;
if ((m = path.match(/^\/shop\/product\/(.+)$/))) redirectTarget = '/shop/' + m[1];
else if ((m = path.match(/^\/category\/(.+)$/))) redirectTarget = '/courses/category/' + m[1];
else if ((m = path.match(/^\/bundle\/(.+)$/))) redirectTarget = '/bundles/' + m[1];
else if ((m = path.match(/^\/profile\/(?!settings|edit)([^/]+)$/))) redirectTarget = '/u/' + m[1];
}
if (redirectTarget) {
canonical = origin + redirectTarget;
isNoindex = true; // alias itself is not indexable
// Actually navigate real visitors (bots see canonical+noindex above).
// Lovable hosting has no edge redirects, so we do it client-side.
try {
var ua = (navigator && navigator.userAgent) || '';
var isBot = /bot|crawler|spider|crawling|facebookexternalhit|slurp|bingpreview|linkedinbot|whatsapp|telegram/i.test(ua);
if (!isBot) {
window.location.replace(redirectTarget + (window.location.search || '') + (window.location.hash || ''));
}
} catch (e) {}
}
var isKnownGood = !isNoindex && INDEX_PATTERNS.some(function(re){ return re.test(path); });
var link = document.createElement('link');
link.setAttribute('rel', 'canonical');
link.setAttribute('href', canonical);
document.head.appendChild(link);
var ogUrl = document.createElement('meta');
ogUrl.setAttribute('property', 'og:url');
ogUrl.setAttribute('content', canonical);
document.head.appendChild(ogUrl);
var twUrl = document.createElement('meta');
twUrl.setAttribute('name', 'twitter:url');
twUrl.setAttribute('content', canonical);
document.head.appendChild(twUrl);
// Apply final robots state synchronously. Known public routes get index;
// private routes, redirect aliases, and unknown paths get noindex.
var existing = document.querySelectorAll('meta[name="robots"], meta[name="googlebot"]');
for (var i = 0; i < existing.length; i++) existing[i].parentNode.removeChild(existing[i]);
var robotsValue = isKnownGood
? 'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1'
: 'noindex, follow';
var robots = document.createElement('meta');
robots.setAttribute('name', 'robots');
robots.setAttribute('content', robotsValue);
document.head.appendChild(robots);
var gbot = document.createElement('meta');
gbot.setAttribute('name', 'googlebot');
gbot.setAttribute('content', robotsValue);
document.head.appendChild(gbot);
var cleanupSeoDuplicates = function(){
var selectors = ['title', 'meta[name="title"]', 'meta[name="description"]'];
for (var s = 0; s < selectors.length; s++) {
var nodes = document.head.querySelectorAll(selectors[s]);
for (var n = 0; n < nodes.length - 1; n++) {
if (nodes[n] && nodes[n].parentNode) nodes[n].parentNode.removeChild(nodes[n]);
}
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', cleanupSeoDuplicates, { once: true });
} else {
cleanupSeoDuplicates();
}
setTimeout(cleanupSeoDuplicates, 0);
// Synchronous hub-route SEO injection. Hub routes (e.g. /courses,
// /shop) cannot have prerendered extensionless static files because
// their slug exists as a directory (dist/courses/foo.html). Inject
// unique title + description here so Googlebot's first-paint scan
// sees per-route SEO instead of the homepage shell defaults.
var hub = HUB_SEO[path];
if (hub) {
try {
var existingTitles = document.head.querySelectorAll('title');
for (var t = 0; t < existingTitles.length; t++) existingTitles[t].parentNode.removeChild(existingTitles[t]);
var titleEl = document.createElement('title');
titleEl.textContent = hub.title;
document.head.appendChild(titleEl);
var metaSelectors = ['meta[name="title"]','meta[name="description"]','meta[property="og:title"]','meta[property="og:description"]','meta[name="twitter:title"]','meta[name="twitter:description"]'];
for (var ms = 0; ms < metaSelectors.length; ms++) {
var existingMetas = document.head.querySelectorAll(metaSelectors[ms]);
for (var em = 0; em < existingMetas.length; em++) existingMetas[em].parentNode.removeChild(existingMetas[em]);
}
function appendMeta(attr, name, content){
var el = document.createElement('meta');
el.setAttribute(attr, name);
el.setAttribute('content', content);
document.head.appendChild(el);
}
appendMeta('name', 'title', hub.title);
appendMeta('name', 'description', hub.description);
appendMeta('property', 'og:title', hub.title);
appendMeta('property', 'og:description', hub.description);
appendMeta('name', 'twitter:title', hub.title);
appendMeta('name', 'twitter:description', hub.description);
} catch(_) {}
}
// For redirect aliases, perform a client-side hard redirect after canonical
// is in place so users actually land on the canonical URL.
if (malformedAbsoluteTarget) {
try { location.replace(canonical + location.search + location.hash); } catch(_) {}
}
if (redirectTarget && redirectTarget !== path) {
try { location.replace(origin + redirectTarget + location.search + location.hash); } catch(_) {}
}
} catch (e) { /* noop */ }
})();
temples & spiritual centers
Content tagged with "temples & spiritual centers" across Terra Incognita Academy — courses, ebooks, articles, discussions and directory listings.
Directory Listings
Yoga med Susan - Kosha Yoga Shala — Yoga med Susan Kosha Yoga Shala is a dedicated Temple & Spiritual Center located in Porsgrunn, Norway. Operating as a sanctuary for mindfulness and holist
Yoga Vidya Bremen — Yoga Vidya Bremen is a dedicated temple & spiritual center in Bremen, Germany. Serving as a sanctuary for holistic wellbeing and inner peace, this center p
Transcendental Meditation (TM) Eskilstuna — Transcendental Meditation (TM) Eskilstuna is a prominent temple & spiritual center in Eskilstuna, Sweden. As a dedicated space for inner development and me
Yoga Centrum Łódź — Yoga Centrum Łódź is a Temple & Spiritual Center in Łódź, Poland, located at Orla 13, 90317 Łódź. It offers a dedicated setting for people interested in yo
Centre For Oneness (neti neti meditation) — Centre For Oneness (neti neti meditation) is a Temple & Spiritual Center in Wednesbury, United Kingdom. Located at Great Western St, Wednesbury WS10 0AS, i
Elysia Serenity — Elysia Serenity is a Temple & Spiritual Center in Genève, Switzerland, offering a dedicated setting for people interested in spirituality, reflection and p
Amma Zentrum München — Amma Zentrum München is a Temple & Spiritual Center in München, Germany, located at Wehrlestraße 27, 81679 München. It provides a dedicated setting for peo
Ganden Buddhist Centre — Ganden Buddhist Centre is a Temple & Spiritual Center in Rīga, Latvia, located at Miera iela 11 in the city’s Centra rajons. It offers a spiritual setting
Jain Derasar Antwerp Temple — Jain Derasar Antwerp Temple is a Temple & Spiritual Center in Antwerpen, Belgium, located at Laarstraat 20, 2610 Antwerpen. It offers a dedicated setting f
Sydney Institute of Meditation — Sydney Institute of Meditation is listed as a Temple & Spiritual Center in Gladesville, Australia. Located at 53 Western Cres, Gladesville NSW 2111, it off
Iceland Power Yoga — Iceland Power Yoga is listed as a Temple & Spiritual Center in Kópavogur, Iceland. Located at Holtasmári 1 jarðhæð, 201 Kópavogur, it offers a convenient l
StoneWater Zen Sangha — StoneWater Zen Sangha is a Temple & Spiritual Center in Liverpool, United Kingdom, located at 13 Hope St, Liverpool L1 9BH. Its name identifies it with Zen
Spiritual Journeys — Spiritual Journeys is a Temple & Spiritual Center in Leeds, United Kingdom, based at Colton Institute Colton Village Hall on Meynell Road. It offers a dedi
Karma Dechen Osel Ling — Karma Dechen Osel Ling is a Temple & Spiritual Center in Oppeby, Sweden, located at Oppeby 246, 732 73 Fellingsbro. As a place associated with spiritual pr
Bali Zen — Bali Zen is a premier temple & spiritual center in Ploiești, Romania, dedicated to providing a tranquil space for holistic wellbeing and inner balance. Sit
Heart & Soul Retreats — Heart & Soul Retreats is a dedicated temple & spiritual center in Otford, Australia. Nestled on the edge of the Royal National Park, this sanctuary offers
Zenergym — Zenergym is a premier temple & spiritual center in Bordeaux, France, offering a dedicated space for inner development and tranquility. Located within the h
The Resting Tree Holistic Center — The Resting Tree Holistic Center is a Temple & Spiritual Center in Galway, Ireland. Located at Sandyford Business Centre, Bohermore, it offers a setting as
The Buddhist Association Dhammakaya In Denmark — The Buddhist Association Dhammakaya In Denmark is a dedicated Temple & Spiritual Center located in the coastal town of Juelsminde, Denmark. Serving as a co
Espace de méditation Heartfulness — Espace de méditation Heartfulness is a Temple & Spiritual Center in Nice, France, located at 44 Av. Georges Clemenceau, 06000 Nice. It offers a dedicated s
Zen á Íslandi - Nátthagi — Zen á Íslandi Nátthagi is a Temple & Spiritual Center in Reykjavík, Iceland, located at Klettháls, 110 Reykjavík. Its published schedule offers several op
Centrul Spiritual Manresa — Centrul Spiritual Manresa is a Temple & Spiritual Center located in ClujNapoca, Romania. Situated at Strada Tudor Arghezi 2, 400347 ClujNapoca, it provides
Spiritual healing center — Spiritual healing center is listed as a Temple & Spiritual Center in Manchester, United Kingdom. Located at 2729 Church St, Manchester M4 1PE, it provides
Buddhistisches Zentrum Essen — Buddhistisches Zentrum Essen is a dedicated temple and spiritual center located in the city of Essen, Germany. As a central hub for mindfulness and contemp
Kalpa Bhadra Buddhist Centre — Kalpa Bhadra Buddhist Centre is a Temple & Spiritual Center in Christchurch, New Zealand, located at 24 Rugby Street in the suburb of Merivale. It provides
Sri Balaji Temple — Sri Balaji Temple is a Temple & Spiritual Center in Hamilton, New Zealand, located at 2 Kent Street, Frankton, Hamilton 3204. It provides a dedicated setti
Bodhicharya Berlin – Buddhistisches Zentrum — Bodhicharya Berlin – Buddhistisches Zentrum is a Temple & Spiritual Center in Berlin, Germany. Located at Kinzigstraße 2529, 10247 Berlin, it provides a de
Kadampa Meditation Centre Brisbane — Kadampa Meditation Centre Brisbane is a Temple & Spiritual Center in Spring Hill, Australia. Located at 109 Leichhardt St, Spring Hill QLD 4000, it provide
Raja Yoga — Raja Yoga is a Temple & Spiritual Center in Marseille, France, located at 8 Rue Bernex, 13001 Marseille. It offers a setting associated with Raja Yoga and
Nitái Navadvípačandra Mandir - ISKCON temple — Nitái Navadvípačandra Mandir ISKCON temple is a Temple & Spiritual Center in Lužce, Czechia. Located at Lužce 48, 267 18 Lužce, it offers a dedicated sett
Uriel's Temple — Uriel's Temple is a dedicated Temple & Spiritual Center located in the heart of Toowoomba City, Australia. As a cornerstone for those seeking inner peace a
Hsiang Kuang Pure Land Buddhism Centre — Hsiang Kuang Pure Land Buddhism Centre is a dedicated Temple & Spiritual Center located in the quiet locality of Goombungee, Australia. As a sanctuary for
Meditation and yoga center Kamala — Meditation and yoga center Kamala is a premier Temple & Spiritual Center located in Sânpetru, Romania. Serving as a dedicated space for inner growth and ph
Méditation MBSR Aquitaine — Méditation MBSR Aquitaine is a prominent temple & spiritual center in Bordeaux, France, dedicated to the practice and dissemination of mindfulnessbased tec
Sahaja Yoga — Sahaja Yoga is a dedicated temple & spiritual center in Bordeaux, France, offering a space for inner peace and collective meditation. Situated in the heart
Australian Centre for Meditation and Mindfulness — Australian Centre for Meditation and Mindfulness is listed as a Temple & Spiritual Center in Carlton, Australia. Located at Ste 206/139 Cardigan St, Carlto
Diamond Way Buddhist Center Oslo — Diamond Way Buddhist Center Oslo is a Temple & Spiritual Center in Oslo, Norway, located at Herman Foss' gate 12, 0171 Oslo. It provides a setting associat
Shrine of Mary of God of Trsat — Shrine of Mary of God of Trsat is a Temple & Spiritual Center in Rijeka, Croatia. Located at Frankopanski trg 12, 51000 Rijeka, it offers a dedicated setti
Kadampa Meditation Center Stuttgart e.V. — Kadampa Meditation Center Stuttgart e.V. is a Temple & Spiritual Center in Stuttgart, Germany. Located at Senefelderstraße 37 in StuttgartWest, it provides
Santikaram Forest Temple — Santikaram Forest Temple is a Temple & Spiritual Center in Stránske, Slovakia. Located at Stránske 290, 013 13 Stránske, it offers a spiritual setting for
Saritashakti | Astrología Psicológica — Saritashakti | Astrología Psicológica is listed as a Temple & Spiritual Center in Barcelona, Spain. Located at Carrer de Salomó ben Adret, 4, in the Ciutat
Vipassana Nordic Meditation Center - Dhamma Sobhana — Vipassana Nordic Meditation Center Dhamma Sobhana is a Temple & Spiritual Center in Ödeshög, Sweden. Located at Holmen 1, 599 93 Ödeshög, it provides a de
Asatru Temple — Asatru Temple is a Temple & Spiritual Center in Reykjavík, Iceland, located in the central 101 Reykjavík area. It provides a point of connection for people
Shambhala Meditationszentrum Wien - Neubaugasse — Shambhala Meditationszentrum Wien Neubaugasse is a Temple & Spiritual Center in Wien, Austria. Located within the Amida Zentrum at Neubaugasse 12/14/2/Mez
Peder Kleppe - Yoga & Healing — Peder Kleppe Yoga & Healing is listed as a Temple & Spiritual Center in Bergen, Norway. Based at Era Life Center, the business provides a setting associat
Oceanistic Healings — Oceanistic Healings is a dedicated Temple & Spiritual Center located in the vibrant coastal city of Wollongong, Australia. Serving as a sanctuary for those
DinBalans Yogastudio — DinBalans Yogastudio is a prominent temple & spiritual center in Eskilstuna, Sweden. Situated in the heart of Södermanland County, this sanctuary provides
Cyril Léger Méditation Inclusive — Cyril Léger Méditation Inclusive is a dedicated temple & spiritual center in Genève, Switzerland. Located in the heart of the city, this establishment serv
Wollongong Spiritualist Church Inc. — Wollongong Spiritualist Church Inc. is a prominent temple & spiritual center in Wollongong, Australia. Located in the heart of the Illawarra region, this c
HAPPY MEDITATION BORDEAUX — Happy Meditation Bordeaux is a dedicated temple & spiritual center in Blanquefort, France. Serving the wider Gironde region, this center provides a focused
Soulibrium Wellness Centre — Soulibrium Wellness Centre is a dedicated Temple & Spiritual Center located in Shell Cove, Australia. As a cornerstone for holistic wellbeing in the New So