{"id":2734,"date":"2026-05-09T14:45:51","date_gmt":"2026-05-09T14:45:51","guid":{"rendered":"https:\/\/hodide.org\/?page_id=2734"},"modified":"2026-05-10T13:21:08","modified_gmt":"2026-05-10T13:21:08","slug":"home-pages-create","status":"publish","type":"page","link":"https:\/\/hodide.org\/","title":{"rendered":"Home page"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<style>\n    \/* 1. AGGRESSIVE GAP REMOVAL & REDUCED HEIGHT *\/\n    .pill-button-slider {\n        position: relative;\n        left: 50%;\n        right: 50%;\n        margin-left: -50vw;\n        margin-right: -50vw;\n        \n        \/* Pulls slider up to meet the navigation *\/\n        margin-top: -80px !important; \n        \n        width: 100vw;\n        height: 550px; \/* Reduced height for a sleeker look *\/\n        background: #000;\n        overflow: hidden;\n        font-family: 'Times New Roman', Times, serif; \n    }\n\n    .pill-button-slider-container {\n        padding-top: 0 !important;\n        margin-top: 0 !important;\n    }\n\n    .slide-wrapper {\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        opacity: 0;\n        transition: opacity 1.5s ease-in-out;\n        z-index: 1;\n    }\n\n    .slide-wrapper.active {\n        opacity: 1;\n        z-index: 2;\n    }\n\n    \/* 2. FACE PROTECTION FOR SHORTER HEIGHT *\/\n    .slide-img {\n        width: 100%;\n        height: 100%;\n        object-fit: cover;\n        \/* Focused higher (5%) to keep faces visible in the shorter frame *\/\n        object-position: center 5%; \n        display: block;\n        pointer-events: none; \n    }\n\n    \/* Bottom Shadow for Text Legibility *\/\n    .bottom-shadow {\n        position: absolute;\n        bottom: 0;\n        left: 0;\n        width: 100%;\n        height: 70%; \/* Slightly taller gradient to cover the smaller area *\/\n        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);\n        z-index: 3;\n        pointer-events: none;\n    }\n\n    \/* Centered & Lowered Text *\/\n    .caption-content {\n        position: absolute;\n        bottom: 40px; \/* Adjusted bottom spacing for reduced height *\/\n        left: 50%;\n        transform: translateX(-50%);\n        width: 90%;\n        max-width: 850px;\n        text-align: center;\n        z-index: 10;\n        color: #ffffff;\n    }\n\n    .caption-content h2 {\n        font-size: 2.4rem; \/* Slightly smaller for the shorter height *\/\n        text-transform: uppercase;\n        letter-spacing: 4px;\n        margin-bottom: 8px;\n        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);\n    }\n\n    .caption-content p {\n        font-family: 'Arial', sans-serif; \n        font-size: 1rem;\n        line-height: 1.4;\n        margin-bottom: 20px;\n        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);\n    }\n\n    \/* 3. BLUE PILL BUTTON *\/\n    .pill-btn {\n        display: inline-block;\n        background-color: #1a3a8a; \/* Diocesan Blue *\/\n        color: #ffffff;\n        padding: 12px 45px;\n        text-decoration: none;\n        font-family: 'Arial', sans-serif;\n        font-size: 0.95rem;\n        font-weight: 600;\n        border-radius: 100px;\n        border: 2px solid #a51c30; \/* Diocesan Red Border *\/\n        transition: all 0.4s ease;\n        cursor: pointer;\n    }\n\n    .pill-btn:hover {\n        background-color: #a51c30; \/* Switch to Red on hover *\/\n        border-color: #ffffff;\n    }\n<\/style>\n<\/head>\n<body>\n\n<div class=\"pill-button-slider-container\">\n    <section class=\"pill-button-slider\">\n        <!-- Slide 1 -->\n        <div class=\"slide-wrapper active\">\n            <div class=\"bottom-shadow\"><\/div>\n            <img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/image-1.jpg\" class=\"slide-img\">\n            <div class=\"caption-content\">\n              \n                <p>HOIMA DIOCESE EXAMINATIONS COMMITTEE.<\/p>\n                <a href=\"https:\/\/hodide.org\/?p=3062\" class=\"pill-btn\">Discover More<\/a>\n            <\/div>\n        <\/div>\n\n        <!-- Slide 2 -->\n        <div class=\"slide-wrapper\">\n            <div class=\"bottom-shadow\"><\/div>\n            <img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/curia-scaled-1.jpg\" class=\"slide-img\">\n            <div class=\"caption-content\">\n             \n                <p>PMEMBERS OF THE CURIA, SECRETARIAT &#038; HEADS OF DEPARTMENTS REVIEWING THE EDUCATION POLICY OF THE DIOCESE.<\/p>\n                \/*<a href=\"#\" class=\"pill-btn\">Learn More<\/a>*\/\n            <\/div>\n        <\/div>\n    <\/section>\n<\/div>\n\n<script>\n    (function() {\n        let index = 0;\n        const slides = document.querySelectorAll('.slide-wrapper');\n        function nextSlide() {\n            slides[index].classList.remove('active');\n            index = (index + 1) % slides.length;\n            slides[index].classList.add('active');\n        }\n        setInterval(nextSlide, 7000); \n    })();\n<\/script>\n\n<\/body>\n<\/html>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<style>\n    :root {\n        --diocesan-blue: #1a3a8a;\n        --diocesan-red: #a51c30;\n        --hover-blue: #2b59c3;\n        --text-color: #444444;\n        --page-side-margin: 5%; \/* Tight margins for maximum balance *\/\n    }\n\n    body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #ffffff; }\n\n    \/* --- BALANCED WRAPPER --- *\/\n    .secretary-section {\n        display: flex;\n        align-items: center; \/* This pulls the photo down to be perfectly in line with content *\/\n        justify-content: center;\n        gap: 60px;\n        padding: 80px var(--page-side-margin);\n        min-height: 60vh; \/* Ensures vertical prominence *\/\n    }\n\n    \/* --- IMAGE & IDENTITY SIDE --- *\/\n    .profile-column {\n        flex: 1;\n        text-align: center;\n        max-width: 450px;\n    }\n\n    .image-holder {\n        position: relative;\n        margin-bottom: 25px;\n    }\n\n    \/* Modern Blurred Red Accent behind image *\/\n    .image-holder::before {\n        content: \"\";\n        position: absolute;\n        top: 10px;\n        left: 10px;\n        right: -10px;\n        bottom: -10px;\n        border: 2px solid var(--diocesan-red);\n        filter: blur(8px);\n        opacity: 0.3;\n        z-index: -1;\n    }\n\n    .profile-column img {\n        width: 100%;\n        display: block;\n        box-shadow: 0 15px 35px rgba(0,0,0,0.1);\n        border-radius: 4px;\n    }\n\n    .profile-column h3 {\n        color: var(--diocesan-blue);\n        font-size: 1.5rem;\n        margin: 15px 0 5px 0;\n        font-weight: 700;\n    }\n\n    .profile-column p {\n        color: var(--diocesan-red);\n        text-transform: uppercase;\n        font-weight: 800;\n        font-size: 0.85rem;\n        letter-spacing: 1.5px;\n        margin: 0;\n    }\n\n    \/* --- CONTENT SIDE --- *\/\n    .content-column {\n        flex: 1.4;\n    }\n\n    .content-column h2 {\n        color: var(--diocesan-blue);\n        text-transform: uppercase;\n        font-size: 2rem;\n        margin-bottom: 25px;\n        border-bottom: 3px solid var(--diocesan-blue);\n        display: inline-block;\n        padding-bottom: 10px;\n    }\n\n    .justified-text {\n        text-align: justify; \/* Requested justified alignment *\/\n        line-height: 1.8;\n        color: var(--text-color);\n        font-size: 1.1rem;\n        margin-bottom: 40px;\n    }\n\n    \/* --- RED BUTTON WITH BLUE HOVER --- *\/\n    .btn-wrap {\n        display: flex;\n        justify-content: flex-start;\n    }\n\n    .action-button {\n        display: inline-block;\n        background-color: var(--diocesan-red);\n        color: #ffffff;\n        padding: 15px 40px;\n        text-decoration: none;\n        font-weight: 700;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n        border-radius: 4px;\n        transition: all 0.3s ease-in-out;\n        box-shadow: 0 5px 15px rgba(165, 28, 48, 0.2);\n    }\n\n    .action-button:hover {\n        background-color: var(--hover-blue);\n        transform: translateY(-3px);\n        box-shadow: 0 8px 20px rgba(43, 89, 195, 0.3);\n    }\n\n    \/* Responsive *\/\n    @media (max-width: 900px) {\n        .secretary-section { flex-direction: column; text-align: center; }\n        .btn-wrap { justify-content: center; }\n        .content-column h2 { border-bottom: none; }\n    }\n<\/style>\n<\/head>\n<body>\n\n    <section class=\"secretary-section\">\n        \n        <!-- LEFT: Portrait and Name Center-Aligned with Text -->\n        <div class=\"profile-column\">\n            <div class=\"image-holder\">\n                <img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/Rev.jpg\" alt=\"Rev. Fr. Mugisa Patrick\">\n            <\/div>\n            <h3>Rev. Fr. Mugisa Patrick<\/h3>\n            <p>Diocesan Education Secretary<\/p>\n        <\/div>\n\n        <!-- RIGHT: Message Body and Linked Button -->\n        <div class=\"content-column\">\n            <h2>Message From The Education Secretary<\/h2>\n            \n            <div class=\"justified-text\">\n                Greetings, We are thrilled to introduce the Department of Education (HODIDE), a vital part of Hoima Diocese, actively dedicated to providing education services in Mid-Western Uganda. Covering an expansive area of 17,200 Sq. Kilometres and serving a population of 2,037,325 people, Hoima Diocese comprises eight (8) districts, One (1) city, and one (1) Municipality, encompassing 47 Catholic Parishes from a Pastoral perspective. At the heart of our mission, the Diocese of Hoima plays a pivotal role in managing various educational institutions.\n            <\/div>\n\n            <div class=\"btn-wrap\">\n                <!-- Linked button with # as requested -->\n                <a href=\"https:\/\/hodide.org\/?page_id=2656\" class=\"action-button\">Read More<\/a>\n            <\/div>\n        <\/div>\n\n    <\/section>\n\n<\/body>\n<\/html>\n\n\n\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<style>\r\n    :root {\r\n        --diocesan-blue: #1a3a8a;\r\n        --diocesan-red: #a51c30;\r\n        --hover-blue: #2b59c3;\r\n        --light-bg: #fdfdfd;\r\n        --section-margin: 5%; \/* Tight margins for layout balance *\/\r\n    }\r\n\r\n    .support-section {\r\n        padding: 80px var(--section-margin);\r\n        background-color: var(--light-bg);\r\n        text-align: center;\r\n        position: relative;\r\n    }\r\n\r\n    \/* --- THE RED LINE WITH CENTERED HEADING --- *\/\r\n    .heading-wrapper {\r\n        display: flex;\r\n        align-items: center;\r\n        justify-content: center;\r\n        margin-bottom: 40px;\r\n    }\r\n\r\n    .heading-wrapper::before,\r\n    .heading-wrapper::after {\r\n        content: \"\";\r\n        flex: 1;\r\n        height: 2px;\r\n        background: var(--diocesan-red);\r\n    }\r\n\r\n    .support-heading {\r\n        padding: 0 30px;\r\n        color: var(--diocesan-blue);\r\n        font-size: 2.2rem;\r\n        font-weight: 800;\r\n        text-transform: uppercase;\r\n        letter-spacing: 2px;\r\n        margin: 0;\r\n    }\r\n\r\n    \/* --- BALANCED CONTENT --- *\/\r\n    .support-content {\r\n        max-width: 900px;\r\n        margin: 0 auto 50px auto;\r\n        text-align: justify; \/* Justified for professional balance *\/\r\n        line-height: 1.8;\r\n        color: #444;\r\n        font-size: 1.15rem;\r\n    }\r\n\r\n    \/* --- RED BUTTON WITH BLUE HOVER --- *\/\r\n    .btn-container {\r\n        display: flex;\r\n        justify-content: center;\r\n    }\r\n\r\n    .support-button {\r\n        display: inline-block;\r\n        background-color: var(--diocesan-red);\r\n        color: #ffffff;\r\n        padding: 16px 50px;\r\n        text-decoration: none;\r\n        font-weight: 700;\r\n        text-transform: uppercase;\r\n        letter-spacing: 1.5px;\r\n        border-radius: 4px;\r\n        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\r\n        box-shadow: 0 4px 12px rgba(165, 28, 48, 0.2);\r\n    }\r\n\r\n    .support-button:hover {\r\n        background-color: var(--hover-blue);\r\n        transform: translateY(-3px);\r\n        box-shadow: 0 8px 20px rgba(43, 89, 195, 0.3);\r\n    }\r\n\r\n    \/* Responsive *\/\r\n    @media (max-width: 768px) {\r\n        .support-heading { font-size: 1.6rem; padding: 0 15px; }\r\n        .support-section { padding: 60px 8%; }\r\n    }\r\n<\/style>\r\n<\/head>\r\n<body>\r\n\r\n    <section class=\"support-section\">\r\n        \r\n        <!-- HEADER INTEGRATED INTO RED LINE -->\r\n        <div class=\"heading-wrapper\">\r\n            <h2 class=\"support-heading\">Support Us<\/h2>\r\n        <\/div>\r\n\r\n        <!-- BALANCED TEXT CONTENT -->\r\n        <div class=\"support-content\">\r\n            Your generous contributions play a vital role in enabling the Hoima Diocesan Department of Education (HODIDE) to continue its mission of delivering quality education across the region. By supporting our initiatives, you directly invest in the infrastructure, learning materials, and pastoral care that shape the future of over two million people in our community. Together, we can ensure that every institution under our management remains a beacon of excellence and hope for generations to come.\r\n        <\/div>\r\n\r\n        <!-- RED TO BLUE HOVER BUTTON -->\r\n        <div class=\"btn-container\">\r\n            <a href=\"#\" class=\"support-button\">Partner With Us<\/a>\r\n        <\/div>\r\n\r\n    <\/section>\r\n\r\n<\/body>\r\n<\/html>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<style>\n    :root {\n        --diocesan-blue: #1a3a8a;\n        --diocesan-red: #a51c30;\n        --page-side-margin: 5%;\n        \/* ITEM WIDTH (280px) + MARGIN (40px) = 320px total per logo space *\/\n        --logo-step: 320px; \n    }\n\n    .partners-wrapper {\n        padding: 80px var(--page-side-margin);\n        background-color: #ffffff;\n        overflow: hidden;\n    }\n\n    .heading-container {\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        margin-bottom: 60px;\n    }\n\n    .heading-container::before,\n    .heading-container::after {\n        content: \"\";\n        flex: 1;\n        height: 2px;\n        background: var(--diocesan-red);\n    }\n\n    .heading-container h2 {\n        padding: 0 30px;\n        color: var(--diocesan-blue);\n        font-size: 2.2rem;\n        font-weight: 800;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin: 0;\n    }\n\n    \/* --- ENHANCED VIEWPORT (Removed heavy blurs to fix clarity) --- *\/\n    .logo-viewport {\n        position: relative;\n        width: 100%;\n        padding: 30px 0;\n        background: #fcfcfc;\n        border-top: 1px solid #eee;\n        border-bottom: 1px solid #eee;\n    }\n\n    .marquee-track {\n        display: flex;\n        \/* Width is auto-calculated based on content *\/\n        width: max-content; \n        \/* Number of unique logos (6) * Step (320px) = -1920px *\/\n        animation: seamlessScroll 25s linear infinite;\n        align-items: center;\n    }\n\n    .logo-viewport:hover .marquee-track {\n        animation-play-state: paused;\n    }\n\n    .logo-card {\n        width: 280px;\n        height: 140px;\n        margin: 0 20px; \/* This 20px on each side creates the 40px gap *\/\n        background: #ffffff;\n        border-radius: 8px;\n        display: flex;\n        align-items: center;\n        justify-content: center;\n        padding: 15px;\n        border: 1px solid #f0f0f0;\n        transition: transform 0.3s ease;\n    }\n\n    .logo-card img {\n        max-width: 210px;\n        max-height: 100px;\n        object-fit: contain;\n        display: block;\n    }\n\n    .logo-card:hover {\n        transform: translateY(-5px);\n        border-color: var(--diocesan-red);\n    }\n\n    \/* --- FIXED ANIMATION LOGIC --- \n       We translate exactly the width of the first set of logos \n       so the second set snaps perfectly into the starting position. \n    *\/\n    @keyframes seamlessScroll {\n        0% { transform: translateX(0); }\n        100% { transform: translateX(calc(var(--logo-step) * -6)); }\n    }\n\n    @media (max-width: 768px) {\n        .heading-container h2 { font-size: 1.6rem; }\n        .logo-card { width: 200px; height: 100px; }\n        @keyframes seamlessScroll {\n            100% { transform: translateX(calc(-240px * 6)); } \/* Adjust for mobile step *\/\n        }\n    }\n<\/style>\n<\/head>\n<body>\n\n    <section class=\"partners-wrapper\">\n        \n        <div class=\"heading-container\">\n            <h2>Our Partners<\/h2>\n        <\/div>\n\n        <div class=\"logo-viewport\">\n            <div class=\"marquee-track\">\n                \n                <!-- UNIQUE SET (6 Logos) -->\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/manos.png\" alt=\"Partner\"><\/div>\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/worldvision-703x422-1.jpg\" alt=\"Partner\"><\/div>\n<div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/MOOS.png\" alt=\"Partner\"><\/div>\n<div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/kcsoug_logo-1.jpg\" alt=\"Partner\"><\/div>\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/download.png\" alt=\"Partner\"><\/div>\n                \n\n                <!-- IDENTICAL CLONE SET (Ensures no blank space during loop) -->\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/manos.png\" alt=\"Partner\"><\/div>\n<div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/worldvision-703x422-1.jpg\" alt=\"Partner\"><\/div>\n<div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/MOOS.png\" alt=\"Partner\"><\/div>\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/kcsoug_logo-1.jpg\" alt=\"Partner\"><\/div>\n                <div class=\"logo-card\"><img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/download.png\" alt=\"Partner\"><\/div>\n              \n\n            <\/div>\n        <\/div>\n\n    <\/section>\n\n<\/body>\n<\/html>\n\n\n\n<div id=\"hodide-white-preloader\" style=\"\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100vw;\n    height: 100vh;\n    background: #ffffff;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    z-index: 100000;\n    transition: opacity 1.2s ease-in-out, visibility 1.2s;\n\">\n\n    <div style=\"display: flex; flex-direction: column; align-items: center; position: relative;\">\n        \n        <div style=\"position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center;\">\n            <svg width=\"220\" height=\"220\" style=\"transform: rotate(-90deg); position: absolute;\">\n                <circle cx=\"110\" cy=\"110\" r=\"100\" stroke=\"#f1f5f9\" stroke-width=\"2\" fill=\"transparent\" \/>\n                \n                <circle id=\"white-loader-path\" cx=\"110\" cy=\"110\" r=\"100\" \n                    stroke=\"url(#whiteGrad)\" \n                    stroke-width=\"5\" \n                    fill=\"transparent\" \n                    stroke-dasharray=\"628\" \n                    stroke-dashoffset=\"628\" \n                    stroke-linecap=\"round\"\n                    style=\"transition: stroke-dashoffset 0.4s ease-out;\" \/>\n                \n                <defs>\n                    <linearGradient id=\"whiteGrad\" x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"100%\">\n                        <stop offset=\"0%\" style=\"stop-color:#ad002e;\" \/>\n                        <stop offset=\"100%\" style=\"stop-color:#11369b;\" \/>\n                    <\/linearGradient>\n                <\/defs>\n            <\/svg>\n\n            <div style=\"width: 150px; height: 150px; display: flex; align-items: center; justify-content: center;\">\n                <img decoding=\"async\" src=\"https:\/\/hodide.org\/wp-content\/uploads\/2026\/05\/trans-hodide-logo.png\" alt=\"Logo\" style=\"\n                    max-width: 90%;\n                    height: auto;\n                    display: block;\n                    mix-blend-mode: multiply; \n                    filter: contrast(1.05);\n                \">\n            <\/div>\n        <\/div>\n\n        <div style=\"margin-top: 40px; text-align: center; font-family: 'Inter', 'Segoe UI', sans-serif;\">\n            <p style=\"margin: 0; color: #64748b; font-size: 11px; text-transform: uppercase; letter-spacing: 5px; font-weight: 600;\">\n                Welcome to\n            <\/p>\n            <h2 style=\"margin: 10px 0 0 0; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; line-height: 1.4;\">\n                <span style=\"color: #11369b;\">Hoima Diocese<\/span> <br>\n                <span style=\"color: #ad002e;\">Education Department<\/span>\n            <\/h2>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    document.addEventListener(\"DOMContentLoaded\", function() {\n        const path = document.getElementById('white-loader-path');\n        const loader = document.getElementById('hodide-white-preloader');\n        const circumference = 628; \n\n        document.body.style.overflow = 'hidden';\n\n        let progress = 0;\n        const interval = setInterval(() => {\n            progress += Math.random() * 12;\n            if (progress >= 100) {\n                progress = 100;\n                clearInterval(interval);\n                path.style.strokeDashoffset = 0;\n                \n                setTimeout(() => {\n                    loader.style.opacity = '0';\n                    loader.style.visibility = 'hidden';\n                    document.body.style.overflow = '';\n                }, 1000);\n            } else {\n                path.style.strokeDashoffset = circumference - (progress \/ 100) * circumference;\n            }\n        }, 150);\n    });\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>HOIMA DIOCESE EXAMINATIONS COMMITTEE. Discover More PMEMBERS OF THE CURIA, SECRETARIAT &#038; HEADS OF DEPARTMENTS REVIEWING THE EDUCATION POLICY OF THE DIOCESE. \/*Learn More*\/ Rev. Fr. Mugisa Patrick Diocesan Education&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2734","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/pages\/2734","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hodide.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2734"}],"version-history":[{"count":69,"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/pages\/2734\/revisions"}],"predecessor-version":[{"id":3181,"href":"https:\/\/hodide.org\/index.php?rest_route=\/wp\/v2\/pages\/2734\/revisions\/3181"}],"wp:attachment":[{"href":"https:\/\/hodide.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2734"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}