<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding-top: 10%;
}
.logo {
font-size: 48px;
font-weight: bold;
color: #0073aa; /* Astra theme blue */
margin-bottom: 20px;
}
#searchBox {
width: 60%;
max-width: 500px;
padding: 12px 20px;
font-size: 18px;
border: 2px solid #ccc;
border-radius: 25px;
outline: none;
}
#searchBox:focus {
border-color: #0073aa;
box-shadow: 0px 0px 5px rgba(0,115,170,0.5);
}
#results {
margin-top: 30px;
text-align: left;
width: 60%;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
#results a {
display: block;
padding: 8px 0;
font-size: 16px;
text-decoration: none;
color: #0073aa;
}
#results a:hover {
text-decoration: underline;
}
.no-results {
display: none;
color: red;
font-weight: bold;
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<!– Fake Logo (Bankerpedia Text Logo for Now) –>
<div class=”logo”>Bankerpedia Notes</div>
<!– Search Input –>
<input type=”text” id=”searchBox” placeholder=”🔍 Search Bankerpedia free notes…”>
<!– Search Results –>
<div id=”results”>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CIRCULAR_CBOF_GS_OCTOBER-24-05.pdf”>CIRCULAR_CBOF_GS_OCTOBER-24-05</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CIRCULAR_CBOF_GS_JANUARY-25-01.pdf”>CIRCULAR_CBOF_GS_JANUARY-25-01</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CIRCULAR_CBOF_GS_MARCH-24-02.pdf”>CIRCULAR_CBOF_GS_MARCH-24-02</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/230227-10TH-TRIENNIAL-CONFERENCE-–-MAGNIFICENT-SHOW-OF-UNITY-SOLIDARITY.pdf”>10TH TRIENNIAL CONFERENCE – MAGNIFICENT SHOW</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/220926-COM.-BENNET-SEBASTIAN-TOOK-THE-CHARGE-AS-GENERAL-SECRETARY-OF-CBOF.pdf”>COM. BENNET SEBASTIAN TOOK CHARGE</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/210927-EXTENDING-BEST-OF-THE-FACILITIES-AMONG-THE-AMALGAMATED-BANKS-TO-OFFICERS-–-CBOF-TAKES-UP-THE-.pdf”>EXTENDING BEST OF FACILITIES TO OFFICERS</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/210813-SBOA-BECOMES-CBOF-GETS-CHECK-OFF-FACILITY-IN-HRMS.pdf”>SBOA BECOMES CBOF – CHECK OFF FACILITY</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/55CBOF_GS_Review-Meetings-beyond-Regular-Working-Hours.pdf”>Review Meetings beyond Regular Hours</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-STANDARDISING-THE-STAFF-NUMBERS.pdf”>Standardising Staff Numbers</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/48CBOF-GS-AEOs.pdf”>AEOs Circular</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF_GS_COHORT-BASED-RANKING.pdf”>Cohort-Based Ranking</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-Relieving-Reporting-GT-2025-2.pdf”>Relieving & Reporting – GT 2025</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-request-for-modifications-to-Transfer-Policy-2025.pdf”>Transfer Policy 2025</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-PERQUISITES-TAX.pdf”>Perquisites Tax</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-Employee-Linked-QR-Code-Customer-Feedback-System.pdf”>Employee Linked QR Code Feedback</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/HOLIDAY-HOMES-CBOF-1.pdf”>Holiday Homes</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-5-day-banking.pdf”>5 Day Banking</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-GS-Cutoff-Date-for-Annual-Inter-Circle-Transfer-2024.pdf”>Cutoff Date Transfer 2024</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CIRCULAR_CBOF_GS_DECEMBER-23-16.pdf”>Circular December 2023</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF_GS-EHL-23.pdf”>EHL 2023</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/GS_CBOF_CIRCULAR_JULY-23_08.pdf”>Circular July 2023</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/GS_CBOF_APRIL23_06.pdf”>Circular April 2023</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/CBOF-Membership-form.pdf”>Membership Form</a>
<a href=”https://cbof.in/wp-content/uploads/2025/08/Revocation-of-mandate-from-Benevolent-fund.pdf”>Revocation of Mandate</a>
</div>
<p class=”no-results”>❌ No matching notes found.</p>
<script>
const searchBox = document.getElementById(“searchBox”);
const results = document.querySelectorAll(“#results a”);
const noResults = document.querySelector(“.no-results”);
searchBox.addEventListener(“keyup”, function() {
let filter = searchBox.value.toLowerCase();
let found = false;
results.forEach(function(link) {
if (link.textContent.toLowerCase().includes(filter)) {
link.style.display = “block”;
found = true;
} else {
link.style.display = “none”;
}
});
noResults.style.display = found ? “none” : “block”;
});
</script>
</body>
</html>