{"id":12109,"date":"2024-03-01T11:03:27","date_gmt":"2024-03-01T05:33:27","guid":{"rendered":"https:\/\/ncfe.org.in\/as\/?page_id=12109"},"modified":"2024-07-08T16:03:58","modified_gmt":"2024-07-08T10:33:58","slug":"announcements","status":"publish","type":"page","link":"https:\/\/ncfe.org.in\/as\/announcements\/","title":{"rendered":"\u0998\u09cb\u09b7\u09a3\u09be"},"content":{"rendered":"\t\t
\n\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t \n \n \n \n \n Modern Layout for Data<\/title>\n <style>\n body{font-family:\"Rubik\", Sans-serif;}\n \/* Pagination styles *\/\n .pagination-container {\n margin-top: 10px;\n text-align: center;\n display: flex;\n justify-content: flex-end;\n align-items: baseline;\n flex-direction: row;\n flex-wrap: nowrap;\n align-content: space-around;\n margin-left: 10px;\n margin-right: 10px;\n }\n \n .pagination-container a,\n .pagination-container span {\n display: inline-block;\n padding: 4px 10px 4px 8px;\n margin-right: 5px;\n border: 1px solid #ddd;\n background-color: #f9f9f9;\n color: #333;\n text-decoration: none;\n border-radius: 100px;\n }\n\n .pagination-container>a {\n color: #043E87;\n padding-left: 8px;\n border: 1px solid;\n border-radius: 100px;\n padding-right: 8px;\n padding-top: 4px;\n padding-bottom: 2px;\n margin: 3px;\n }\n\n .pagination-container a:hover {\n background-color: #043E87;\n color: #fff;\n }\n\n .pagination-container a.active,\n .pagination-container span.active {\n background-color: #007bff;\n color: #fff;\n padding: 4px 10px 4px 8px;\n border-radius: 100px;\n }\n\n \/* Table styles *\/\n table {\n width: 100%;\n border-collapse: collapse;\n margin-bottom: 20px;\n }\n\n th, td {\n border: 1px solid #ddd;\n padding: 8px;\n text-align: left;\n }\n\n th {\n background-color: #f2f2f2;\n }\n\n \/* Card styles *\/\n .card-container1 {\n display: none;\n }\n\n .card1 {\n padding: 30px;\n margin-bottom: 20px;\n border: 1px solid #ddd;\n border-radius: 5px;\n }\n\n .card-header1 {\n font-size: 0.9em;\n color: #777;\n margin-bottom: 5px;\n }\n\n .card-title1 {\n font-size: 25px;\n font-weight: bold;\n margin-bottom: 10px;\n }\n\n .card-content1 {\n font-size: 20px;\n color: #333;\n margin-bottom: 15px;\n }\n\n .card-link1 {\n text-decoration: none;\n color: white;\n background-color: #007bff;\n padding: 10px 15px;\n border-radius: 5px;\n font-size: 20px;\n }\n\n .pre {\n padding: 10px!important;\n margin: 10px!important;\n border-radius: 6px!important;\n color: black!important;\n border-color: black!important;\n }\n\n .pre:hover {\n background-color: #043e87;\n color: white!important;\n }\n\n .th2 {\n background-color: #043e87;\n color: white;\n }\n <\/style>\n <\/head>\n <body>\n\n <table id=\"announcement-table\">\n <thead>\n <tr>\n <th class=\"th2\">\u09a4\u09be\u09f0\u09bf\u0996<\/th>\n <th class=\"th2\">\u09ac\u09bf\u09b7\u09af\u09bc<\/th>\n <th class=\"th2\">\u09b8\u09be\u09ae\u0997\u09cd\u09f0\u09c0\u09b8\u09ae\u09c2\u09b9<\/th>\n <th class=\"th2\">URL<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <!-- Announcement data will be populated dynamically here -->\n <\/tbody>\n <\/table>\n\n <div class=\"pagination-container\">\n <button onclick=\"goToPreviousPage()\">\u09aa\u09c2\u09f0\u09cd\u09ac\u09ac\u09f0\u09cd\u09a4\u09c0<\/button>\n <div id=\"pagination-container\" class=\"pagination-container\">\n <!-- Pagination buttons will be added dynamically -->\n <\/div>\n <button onclick=\"goToNextPage()\">\u0986\u0997\u09c1\u09f1\u09be\u0987 \u09af\u09cb\u09f1\u09be<\/button>\n <\/div>\n\n <script>\n let currentPage = 1;\n const perPage = 7;\n\n \/\/ Function to get language from URL\n function getLanguageFromUrl() {\n const path = window.location.pathname;\n const langMatch = path.match(\/^\\\/(hi|en|gu|pu|be|od|ur|ta|te|mr|as|ma|ka)\/);\n return langMatch ? langMatch[1] : 'en'; \/\/ Default to 'en' if no match\n }\n\n const currentLanguage = getLanguageFromUrl();\n\n \/\/ Function to fetch data and populate the table\n async function fetchData(page = 1) {\n const baseUrl = 'https:\/\/ncfe.org.in';\n const urlMap = {\n en: `${baseUrl}\/wp-json\/wp\/v2\/announcements`,\n hi: `${baseUrl}\/hi\/wp-json\/wp\/v2\/announcements`,\n gu: `${baseUrl}\/gu\/wp-json\/wp\/v2\/announcements`,\n pu: `${baseUrl}\/pu\/wp-json\/wp\/v2\/announcements`,\n be: `${baseUrl}\/be\/wp-json\/wp\/v2\/announcements`,\n od: `${baseUrl}\/od\/wp-json\/wp\/v2\/announcements`,\n ur: `${baseUrl}\/ur\/wp-json\/wp\/v2\/announcements`,\n ta: `${baseUrl}\/ta\/wp-json\/wp\/v2\/announcements`,\n te: `${baseUrl}\/te\/wp-json\/wp\/v2\/announcements`,\n mr: `${baseUrl}\/mr\/wp-json\/wp\/v2\/announcements`,\n as: `${baseUrl}\/as\/wp-json\/wp\/v2\/announcements`,\n ma: `${baseUrl}\/ma\/wp-json\/wp\/v2\/announcements`,\n ka: `${baseUrl}\/ka\/wp-json\/wp\/v2\/announcements`\n };\n const apiUrl = urlMap[currentLanguage] || urlMap['en'];\n\n try {\n const response = await fetch(`${apiUrl}?page=${page}&per_page=${perPage}`);\n const data = await response.json();\n\n const tableBody = document.querySelector('#announcement-table tbody');\n\n \/\/ Clear existing rows\n tableBody.innerHTML = '';\n\n data.forEach(item => {\n const row = document.createElement('tr');\n\n const dateCell = document.createElement('td');\n dateCell.textContent = new Date(item.date).toLocaleDateString();\n row.appendChild(dateCell);\n\n const titleCell = document.createElement('td');\n titleCell.textContent = item.title.rendered;\n row.appendChild(titleCell);\n\n const contentCell = document.createElement('td');\n const tempDiv = document.createElement('div');\n tempDiv.innerHTML = item.content.rendered;\n const decodedContent = tempDiv.textContent || tempDiv.innerText;\n const contentPreview = decodedContent.split(' ').slice(0, 30).join(' ') + '...';\n contentCell.textContent = contentPreview;\n row.appendChild(contentCell);\n\n const urlCell = document.createElement('td');\n const urlLink = document.createElement('a');\n urlLink.href = item.acf.url; \/\/ Assuming 'link' is the field name for URL\n urlLink.textContent = 'Click Here';\n urlLink.target = '_blank';\n urlCell.appendChild(urlLink);\n row.appendChild(urlCell);\n\n tableBody.appendChild(row);\n });\n\n \/\/ Add pagination\n const paginationContainer = document.getElementById('pagination-container');\n paginationContainer.innerHTML = '';\n\n const totalPages = response.headers.get('X-WP-TotalPages');\n\n for (let i = 1; i <= totalPages; i++) {\n const pageButton = document.createElement('a');\n pageButton.textContent = i;\n pageButton.href = '#';\n pageButton.addEventListener('click', (event) => {\n event.preventDefault(); \/\/ Prevent default link behavior\n currentPage = i;\n fetchData(i);\n });\n\n if (i === currentPage) {\n pageButton.classList.add('active');\n }\n\n paginationContainer.appendChild(pageButton);\n }\n } catch (error) {\n console.error('Error fetching data:', error);\n }\n }\n\n \/\/ Function to handle previous page button click\n function goToPreviousPage() {\n if (currentPage > 1) {\n currentPage--;\n fetchData(currentPage);\n }\n }\n\n \/\/ Function to handle next page button click\n function goToNextPage() {\n currentPage++;\n fetchData(currentPage);\n }\n\n \/\/ Call the fetchData function to populate the table\n fetchData();\n <\/script>\n\n <\/body>\n <\/html>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Modern Layout for Data \u09a4\u09be\u09f0\u09bf\u0996 \u09ac\u09bf\u09b7\u09af\u09bc \u09b8\u09be\u09ae\u0997\u09cd\u09f0\u09c0\u09b8\u09ae\u09c2\u09b9 URL \u09aa\u09c2\u09f0\u09cd\u09ac\u09ac\u09f0\u09cd\u09a4\u09c0 \u0986\u0997\u09c1\u09f1\u09be\u0987 \u09af\u09cb\u09f1\u09be<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-12109","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u0998\u09cb\u09b7\u09a3\u09be - assamese<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ncfe.org.in\/as\/announcements\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0998\u09cb\u09b7\u09a3\u09be - assamese\" \/>\n<meta property=\"og:description\" content=\"Modern Layout for Data \u09a4\u09be\u09f0\u09bf\u0996 \u09ac\u09bf\u09b7\u09af\u09bc \u09b8\u09be\u09ae\u0997\u09cd\u09f0\u09c0\u09b8\u09ae\u09c2\u09b9 URL \u09aa\u09c2\u09f0\u09cd\u09ac\u09ac\u09f0\u09cd\u09a4\u09c0 \u0986\u0997\u09c1\u09f1\u09be\u0987 \u09af\u09cb\u09f1\u09be\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ncfe.org.in\/as\/announcements\/\" \/>\n<meta property=\"og:site_name\" content=\"assamese\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-08T10:33:58+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ncfe.org.in\/as\/announcements\/\",\"url\":\"https:\/\/ncfe.org.in\/as\/announcements\/\",\"name\":\"\u0998\u09cb\u09b7\u09a3\u09be - assamese\",\"isPartOf\":{\"@id\":\"https:\/\/ncfe.org.in\/as\/#website\"},\"datePublished\":\"2024-03-01T05:33:27+00:00\",\"dateModified\":\"2024-07-08T10:33:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/ncfe.org.in\/as\/announcements\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ncfe.org.in\/as\/announcements\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ncfe.org.in\/as\/announcements\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ncfe.org.in\/as\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0998\u09cb\u09b7\u09a3\u09be\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ncfe.org.in\/as\/#website\",\"url\":\"https:\/\/ncfe.org.in\/as\/\",\"name\":\"assamese\",\"description\":\"National Centre for Financial Education (NCFE) is a Section 8 (Not for Profit) Company promoted by Reserve Bank of India (RBI), Securities and Exchange Board of India (SEBI), Insurance Regulatory and Development Authority of India (IRDAI) and Pension Fund Regulatory and Development Authority (PFRDA), under the aegis of Financial Stability and Development Council (FSDC), Ministry of Finance, Government of India.\",\"publisher\":{\"@id\":\"https:\/\/ncfe.org.in\/as\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ncfe.org.in\/as\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/ncfe.org.in\/as\/#organization\",\"name\":\"assamese\",\"url\":\"https:\/\/ncfe.org.in\/as\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ncfe.org.in\/as\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ncfe.org.in\/wp-content\/uploads\/2023\/11\/NCFE_logo.png\",\"contentUrl\":\"https:\/\/ncfe.org.in\/wp-content\/uploads\/2023\/11\/NCFE_logo.png\",\"width\":436,\"height\":113,\"caption\":\"assamese\"},\"image\":{\"@id\":\"https:\/\/ncfe.org.in\/as\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0998\u09cb\u09b7\u09a3\u09be - assamese","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/ncfe.org.in\/as\/announcements\/","og_locale":"en_US","og_type":"article","og_title":"\u0998\u09cb\u09b7\u09a3\u09be - assamese","og_description":"Modern Layout for Data \u09a4\u09be\u09f0\u09bf\u0996 \u09ac\u09bf\u09b7\u09af\u09bc \u09b8\u09be\u09ae\u0997\u09cd\u09f0\u09c0\u09b8\u09ae\u09c2\u09b9 URL \u09aa\u09c2\u09f0\u09cd\u09ac\u09ac\u09f0\u09cd\u09a4\u09c0 \u0986\u0997\u09c1\u09f1\u09be\u0987 \u09af\u09cb\u09f1\u09be","og_url":"https:\/\/ncfe.org.in\/as\/announcements\/","og_site_name":"assamese","article_modified_time":"2024-07-08T10:33:58+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ncfe.org.in\/as\/announcements\/","url":"https:\/\/ncfe.org.in\/as\/announcements\/","name":"\u0998\u09cb\u09b7\u09a3\u09be - assamese","isPartOf":{"@id":"https:\/\/ncfe.org.in\/as\/#website"},"datePublished":"2024-03-01T05:33:27+00:00","dateModified":"2024-07-08T10:33:58+00:00","breadcrumb":{"@id":"https:\/\/ncfe.org.in\/as\/announcements\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ncfe.org.in\/as\/announcements\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ncfe.org.in\/as\/announcements\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ncfe.org.in\/as\/"},{"@type":"ListItem","position":2,"name":"\u0998\u09cb\u09b7\u09a3\u09be"}]},{"@type":"WebSite","@id":"https:\/\/ncfe.org.in\/as\/#website","url":"https:\/\/ncfe.org.in\/as\/","name":"assamese","description":"National Centre for Financial Education (NCFE) is a Section 8 (Not for Profit) Company promoted by Reserve Bank of India (RBI), Securities and Exchange Board of India (SEBI), Insurance Regulatory and Development Authority of India (IRDAI) and Pension Fund Regulatory and Development Authority (PFRDA), under the aegis of Financial Stability and Development Council (FSDC), Ministry of Finance, Government of India.","publisher":{"@id":"https:\/\/ncfe.org.in\/as\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ncfe.org.in\/as\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ncfe.org.in\/as\/#organization","name":"assamese","url":"https:\/\/ncfe.org.in\/as\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ncfe.org.in\/as\/#\/schema\/logo\/image\/","url":"https:\/\/ncfe.org.in\/wp-content\/uploads\/2023\/11\/NCFE_logo.png","contentUrl":"https:\/\/ncfe.org.in\/wp-content\/uploads\/2023\/11\/NCFE_logo.png","width":436,"height":113,"caption":"assamese"},"image":{"@id":"https:\/\/ncfe.org.in\/as\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/pages\/12109"}],"collection":[{"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/comments?post=12109"}],"version-history":[{"count":37,"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/pages\/12109\/revisions"}],"predecessor-version":[{"id":22617,"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/pages\/12109\/revisions\/22617"}],"wp:attachment":[{"href":"https:\/\/ncfe.org.in\/as\/wp-json\/wp\/v2\/media?parent=12109"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}