{"id":1910,"date":"2025-10-10T05:39:17","date_gmt":"2025-10-10T03:39:17","guid":{"rendered":"https:\/\/eespencinas.edu.pe\/?page_id=1910"},"modified":"2025-10-10T05:43:25","modified_gmt":"2025-10-10T03:43:25","slug":"docentes-primaria","status":"publish","type":"page","link":"https:\/\/eespencinas.edu.pe\/index.php\/docentes-primaria\/","title":{"rendered":"Docentes Primaria"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1910\" class=\"elementor elementor-1910\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a65e0a6 e-flex e-con-boxed e-con e-parent\" data-id=\"a65e0a6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d93892a elementor-widget elementor-widget-spacer\" data-id=\"d93892a\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b013716 e-flex e-con-boxed e-con e-parent\" data-id=\"b013716\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-55af1c1 elementor-widget elementor-widget-html\" data-id=\"55af1c1\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"es\">\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n  <title>Directorio Telef\u00f3nico Pedag\u00f3gico - Educaci\u00f3n Primaria<\/title>\r\n  <!-- Bootstrap CSS -->\r\n  <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.1.3\/dist\/css\/bootstrap.min.css\" rel=\"stylesheet\">\r\n  <style>\r\n    .pagination { cursor: pointer; }\r\n    .table { margin-bottom: 50px; }\r\n    th, td { vertical-align: middle; }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n\r\n<div class=\"container mt-4\">\r\n  <h2 class=\"text-center mb-4\">Directorio Docente - Educaci\u00f3n Primaria<\/h2>\r\n\r\n  <!-- Input de b\u00fasqueda -->\r\n  <input type=\"text\" id=\"searchInput\" class=\"form-control mb-3\" placeholder=\"Buscar docente o n\u00famero...\">\r\n\r\n  <!-- Tabla: Directorio Telef\u00f3nico Pedag\u00f3gico -->\r\n  <h3>Directorio Telef\u00f3nico Pedag\u00f3gico<\/h3>\r\n  <table class=\"table table-striped table-bordered\">\r\n    <thead>\r\n      <tr>\r\n        <th>N\u00b0<\/th>\r\n        <th>Apellidos y Nombres<\/th>\r\n        <th>Especialidad<\/th>\r\n        <th>Celular<\/th>\r\n        <th>Correo<\/th>\r\n      <\/tr>\r\n    <\/thead>\r\n    <tbody id=\"tableBody\">\r\n      <!-- Filas din\u00e1micas -->\r\n    <\/tbody>\r\n  <\/table>\r\n\r\n  <!-- Paginaci\u00f3n -->\r\n  <nav>\r\n    <ul class=\"pagination justify-content-center\" id=\"pagination\"><\/ul>\r\n  <\/nav>\r\n<\/div>\r\n\r\n<!-- Bootstrap JS y jQuery -->\r\n<script src=\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"><\/script>\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.1.3\/dist\/js\/bootstrap.bundle.min.js\"><\/script>\r\n\r\n<script>\r\n  const data = [\r\n    { number: 1, name: \"URETA DIAZ, Emaly\", specialty: \"EDUCACION PRIMARIA\", phone: \"921850823\", email: \"\" },\r\n    { number: 2, name: \"BAILB\u00cdN ARAMBUR\u00da, Elva Katherine\", specialty: \"EDUCACION PRIMARIA\", phone: \"964010000\", email: \"\" },\r\n    { number: 3, name: \"SARAVIA ROJAS, Yesely Susana\", specialty: \"EDUCACION PRIMARIA\", phone: \"973273950\", email: \"\" },\r\n    { number: 4, name: \"GARCIA PALOMINO, Raul Antonio\", specialty: \"EDUCACION PRIMARIA\", phone: \"963904079\", email: \"\" }\r\n  ];\r\n\r\n  let currentPage = 1;\r\n  const rowsPerPage = 5;\r\n\r\n  function displayTable(data) {\r\n    const tableBody = $('#tableBody');\r\n    tableBody.empty();\r\n\r\n    const startIndex = (currentPage - 1) * rowsPerPage;\r\n    const paginatedData = data.slice(startIndex, startIndex + rowsPerPage);\r\n\r\n    paginatedData.forEach(row => {\r\n      tableBody.append(`\r\n        <tr>\r\n          <td>${row.number}<\/td>\r\n          <td>${row.name}<\/td>\r\n          <td>${row.specialty}<\/td>\r\n          <td>${row.phone}<\/td>\r\n          <td>${row.email}<\/td>\r\n        <\/tr>\r\n      `);\r\n    });\r\n\r\n    const pageCount = Math.ceil(data.length \/ rowsPerPage);\r\n    const pagination = $('#pagination');\r\n    pagination.empty();\r\n\r\n    for (let i = 1; i <= pageCount; i++) {\r\n      pagination.append(`\r\n        <li class=\"page-item ${i === currentPage ? 'active' : ''}\">\r\n          <a class=\"page-link\" href=\"#\" onclick=\"changePage(${i})\">${i}<\/a>\r\n        <\/li>\r\n      `);\r\n    }\r\n  }\r\n\r\n  function changePage(page) {\r\n    currentPage = page;\r\n    displayTable(data);\r\n  }\r\n\r\n  function filterTable() {\r\n    const query = $('#searchInput').val().toLowerCase();\r\n    const filteredData = data.filter(row =>\r\n      row.name.toLowerCase().includes(query) ||\r\n      row.phone.includes(query) ||\r\n      row.specialty.toLowerCase().includes(query)\r\n    );\r\n    currentPage = 1;\r\n    displayTable(filteredData);\r\n  }\r\n\r\n  $(document).ready(function() {\r\n    displayTable(data);\r\n  });\r\n\r\n  $('#searchInput').on('input', filterTable);\r\n<\/script>\r\n\r\n<\/body>\r\n<\/html>\r\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>Directorio Telef\u00f3nico Pedag\u00f3gico &#8211; Educaci\u00f3n Primaria Directorio Docente &#8211; Educaci\u00f3n Primaria Directorio Telef\u00f3nico Pedag\u00f3gico N\u00b0 Apellidos y Nombres Especialidad Celular [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-1910","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"admin_w6pb91wr","author_link":"https:\/\/eespencinas.edu.pe\/index.php\/author\/admin_w6pb91wr\/"},"uagb_comment_info":0,"uagb_excerpt":"Directorio Telef\u00f3nico Pedag\u00f3gico &#8211; Educaci\u00f3n Primaria Directorio Docente &#8211; Educaci\u00f3n Primaria Directorio Telef\u00f3nico Pedag\u00f3gico N\u00b0 Apellidos y Nombres Especialidad Celular [&hellip;]","_links":{"self":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1910","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/comments?post=1910"}],"version-history":[{"count":4,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1910\/revisions"}],"predecessor-version":[{"id":1915,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1910\/revisions\/1915"}],"wp:attachment":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/media?parent=1910"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}