, 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 */ }
})();
candle & ritual shops
The Candle and Ritual Shops curated by Terra Incognita Academy represent a vital intersection between theoretical occult philosophy and the practical application of spiritual science. In the esoteric tradition, the ritual shop is not merely a commercial entity but a sacred repository of artisanal tools designed to facilitate theurgy and the refinement of the human spirit. Candles serve as conduits for elemental fire, acting as beacons for consciousness and anchors for specific energetic frequencies. By engaging with these curated materials, the practitioner bridges the gap between the mundane and the celestial, using physical correspondence to manifest internal transformation. Within our formal academic framework, these tools are treated as essential instruments for the serious student, providing the tactile components necessary to ground the profound metaphysical concepts explored within our curriculum.
For students of Terra Incognita Academy, the integration of ritual tools is inseparable from the study of our extensive compendium articles and specialized courses. While our academic ebooks provide the historical and philosophical foundation for ceremonial magic, the ritual shop offers the means to enact these teachings with precision and reverence. Mastery over the self requires a disciplined approach to ritual, where every flame and fragrance serves a symbolic purpose aligned with the universal laws of harmony. These practices are never intended to command or coerce, but rather to invite a collaborative relationship with the benevolent forces described in our scholarly works. The use of traditional implements allows the student to participate in a lineage of practitioners who have long sought to understand the architecture of the soul through structured, light-centered ceremony.
Beyond individual practice, the exploration of these ritual elements fosters a vibrant intellectual exchange within our community. Students are encouraged to visit our forum discussions to share insights on the efficacy of various digital downloads and the practical nuances of ceremonial setups. This collective inquiry ensures that the application of ritual knowledge remains dynamic and grounded in shared experience. By combining the wisdom found in our ebooks with the physical resources of our shops, members of the Academy gain a holistic education in the hermetic arts. Whether one is consulting the compendium articles for planetary correspondences or enrolling in advanced courses on energetic alignment, the ritual shop serves as a cornerstone for those dedicated to the path of enlightened discovery and the benevolent pursuit of higher wisdom.
Directory Listings
Candle Whispers — Candle Whispers is a premier Candle & Ritual Shop located in the vibrant city of Kallithea, Greece. As a dedicated space for those seeking spiritual tools
CANDLE MEADOW LLC — CANDLE MEADOW LLC is a Candle & Ritual Shop in Killeen, United States. Located at 3001 Viewcrest Dr, Killeen, TX 76549, the business offers a local point o
Polyanna Candles — Polyanna Candles is a Candle & Ritual Shop in Thessaloniki, Greece. Located at Grigoriou Koloniari 19, Thessaloniki 546 29, the business offers a dedicated
Upper Room Candle & Boutique — Upper Room Candle & Boutique is a Candle & Ritual Shop in Webster, United States. Located at 100 E NASA Pkwy 301, Webster, TX 77598, it offers a dedicated
Oracle of Crystals — Oracle of Crystals is a Candle & Ritual Shop in Malvern, Australia, located at 228 Glenferrie Rd, Malvern VIC 3144. It offers a dedicated setting for peopl
House of Intention by Aloha Elixir — House of Intention by Aloha Elixir is a Candle & Ritual Shop in Honolulu, United States. Located at 1126 12th Ave Ste 105, Honolulu, HI 96816, the business
DuggCandles — DuggCandles is a dedicated candle & ritual shop located in the scenic village of Sylling, Norway. Nestled within the rolling landscapes of Lier municipalit
Cool Candle Company — The Cool Candle Company is a dedicated candle & ritual shop located in the coastal city of Wollongong, Australia. Serving the Illawarra region, this establ
Kandela | Cerería artesanal, velas y talleres — Kandela | Cerería artesanal, velas y talleres is a Candle & Ritual Shop in Barcelona, Spain, located at Carrer de Roger de Flor, 268, in the Gràcia area. I
livincandles — livincandles is a Candle & Ritual Shop in Rediu, Romania, located at Strada Unirii, 707405 Rediu. It provides a dedicated point of interest for people expl
Golden Glow Candles — Golden Glow Candles is a Candle & Ritual Shop in Auckland, New Zealand, located at 30 Enterprise Street, Birkenhead, Auckland 0626. It offers a specialist
Templo de eleggua I I — Templo de eleggua I I is a dedicated candle & ritual shop located in the vibrant city of Las Palmas de Gran Canaria, Spain. Serving as a central point for
Candle Factory And Veladoras Induvelsa, S.A. De C.V. — Candle Factory And Veladoras Induvelsa, S.A. De C.V. is a Candle & Ritual Shop in Ciudad de México, Mexico. Located in the La Pastora area of Gustavo A. Ma
Bergen Candle — Bergen Candle is a Candle & Ritual Shop in Bergen, Norway. Located at Steinkjellergaten 9, 5003 Bergen, it offers a dedicated destination for people intere
Light House Candle Studio — Light House Candle Studio is a Candle & Ritual Shop in Celina, United States. Located at 222 S Main St, Celina, OH 45822, the business offers a dedicated s
Nancy's Candles — Nancy’s Candles is a Candle & Ritual Shop located in Peristeri, Greece. Its address is El. Venizelou 81, Peristeri 121 32, offering a local destination for
Cowboys and Hippies Candles — Cowboys and Hippies Candles is a Candle & Ritual Shop in Terrell, United States, located at 13724 Quail Ln, Terrell, TX 75160. It offers a point of interes
Essence By Soya (Candles) — Essence By Soya (Candles) is a Candle & Ritual Shop in Prosper, United States. Located on Sunfish St, Prosper, TX 75078, the business offers a local point
Simply Scents Candle Co. — Simply Scents Candle Co. is a Candle & Ritual Shop in Houston, United States. Located at 5217 Almeda Rd, Houston, TX 77004, it offers a dedicated setting f
Yankee Candle Shop Amriswil — Retail chain specializing in a wide array of scented candles & related accessories.
Serenita Candle Company — Serenita Candle Company is a Candle & Ritual Shop in Langford, Canada. Located at 720 Station Ave 110, Langford, BC V9B 2S1, it provides a dedicated local
Angel's Candle Creations — Angel's Candle Creations is a Candle & Ritual Shop in Mesquite, United States. Located at 233 Toler Dr, Mesquite, TX 75149, the business offers a local des
By Candle Light — By Candle Light is a Candle & Ritual Shop in Intercourse, United States, located at 3529 Old Philadelphia Pike, Intercourse, PA 17534. For people exploring
Reikicentum & Spirituele winkel de Oorsprong — Reikicentum & Spirituele winkel de Oorsprong is listed as a Candle & Ritual Shop in Den Haag, Netherlands. Located at Westerbaenstraat 79, 2513 GH Den Haag
The White Barn Candle Co. — The White Barn Candle Co. is listed as a Candle & Ritual Shop in Frisco, United States. It is located inside Stonebriar Centre at 2601 Preston Rd 1042, Fri
Euphoria Candles — Euphoria Candles is a Candle & Ritual Shop in Stavroupoli, Greece, located at P. Tsaldari 9, Stavroupoli 564 29. It provides a dedicated setting for people
JP3 Scented Candles — JP3 Scented Candles is a Candle & Ritual Shop in Sugar Land, United States. Located at 15500 Voss Rd, Sugar Land, TX 77498, the business offers a local des
Me Time Candles and Oils — Me Time Candles and Oils is a Candle & Ritual Shop in Lubbock, United States. Located at 3521 50th St, Lubbock, TX 79413, the business offers a local desti
Crystal Candle Hub - Melrose — Crystal Candle Hub Melrose is a Candle & Ritual Shop in Los Angeles, United States. Located at 7547 Melrose Ave, Los Angeles, CA 90046, it offers a physic
Luna Lumbre — Luna Lumbre is a Candle & Ritual Shop in Aubrey, United States. Located at 1312 Mission St, Aubrey, TX 76227, the business offers a local point of interest
Southern Gent Candles and Candle Bar — Southern Gent Candles and Candle Bar is a Candle & Ritual Shop in Rocheport, United States. Located at 204 2nd St, Rocheport, Missouri, it offers a dedicat
cypress bridge candle co — cypress bridge candle co is a Candle & Ritual Shop in Abilene, United States. Located at 110 NW 3rd St, Abilene, KS 67410, the business offers a dedicated
Miss Handmade Candles — Miss Handmade Candles is a Candle & Ritual Shop in Patra, Greece, located at Evias 112, Patra 263 32. It offers a local destination for people interested i
Botanica Hierberia Valentín Farmers Branch — Botanica Hierberia Valentín Farmers Branch is a Candle & Ritual Shop in Farmers Branch, United States. Located at 2828 Forest Ln, Dallas, Ste 1001, Farmers
Chill Your Mind candle — Chill Your Mind candle is a Candle & Ritual Shop in Rīga, Latvia. Located at Vairoga iela 29 in the city’s Vidzemes priekšpilsēta district, it provides a l
Moon Goddess Candles — Moon Goddess Candles is a Candle & Ritual Shop in Kings County, United States. Located in Brooklyn at Bedford Ave & N 6th St, NY 11211, the business offers
CasaMistica.ro — CasaMistica.ro is a Candle & Ritual Shop in București, Romania, located at Bulevardul Basarabia 256G, 030352 București. It provides a specialist point of r
Picta Candles — Picta Candles is a Candle & Ritual Shop in Garland, United States. Located at 5637 Naaman Forest Blvd, Garland, TX 75044, the business offers a point of in
Not Only Candles : My Jolie candle & Maison Berger — Not Only Candles : My Jolie candle & Maison Berger is a specialized candle & ritual shop located in the heart of Bordeaux, France. Situated in one of the c
Creative Handmade Carved Candles — Creative Handmade Carved Candles is a premier candle & ritual shop located in the historic city of Plymouth, United Kingdom. As a dedicated provider of art