{"id":1993,"date":"2025-10-11T18:02:49","date_gmt":"2025-10-11T16:02:49","guid":{"rendered":"https:\/\/eespencinas.edu.pe\/?page_id=1993"},"modified":"2025-10-11T18:04:51","modified_gmt":"2025-10-11T16:04:51","slug":"docentes-de-comunicacion","status":"publish","type":"page","link":"https:\/\/eespencinas.edu.pe\/index.php\/docentes-de-comunicacion\/","title":{"rendered":"Docentes de Comunicaci\u00f3n"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1993\" class=\"elementor elementor-1993\">\n\t\t\t\t<div class=\"elementor-element elementor-element-738a865 e-flex e-con-boxed e-con e-parent\" data-id=\"738a865\" 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-4afc2dc elementor-widget elementor-widget-spacer\" data-id=\"4afc2dc\" 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-bca47bd e-flex e-con-boxed e-con e-parent\" data-id=\"bca47bd\" 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-2970c2f elementor-widget elementor-widget-html\" data-id=\"2970c2f\" 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 - Comunicaci\u00f3n<\/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 {\r\n      cursor: pointer;\r\n    }\r\n    .table {\r\n      margin-bottom: 50px;\r\n    }\r\n    th, td {\r\n      vertical-align: middle;\r\n    }\r\n  <\/style>\r\n<\/head>\r\n<body>\r\n\r\n<div class=\"container mt-4\">\r\n  <h2>Docentes de Comunicaci\u00f3n<\/h2>\r\n\r\n  <!-- Input de b\u00fasqueda -->\r\n  <input type=\"text\" id=\"searchInput\" class=\"form-control mb-3\" placeholder=\"Buscar...\">\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      <!-- Las filas se insertar\u00e1n din\u00e1micamente -->\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\">\r\n      <!-- Los botones se insertar\u00e1n din\u00e1micamente -->\r\n    <\/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: \"URCON VALENZUELA, Maribel\", specialty: \"COMUNICACI\u00d3N\", phone: \"940929614\", email: \"\" },\r\n    { number: 2, name: \"SANCHEZ QUISPE, Olga Lidia\", specialty: \"COMUNICACI\u00d3N\", phone: \"910325187\", email: \"\" },\r\n    { number: 3, name: \"BONILLA CALIXTO, Esther\", specialty: \"COMUNICACI\u00d3N\", phone: \"940205579\", email: \"\" },\r\n    { number: 4, name: \"MACHACUAY MARCELO, Freddy Francescoly\", specialty: \"COMUNICACI\u00d3N\", phone: \"964745862\", 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, index) => {\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\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; Comunicaci\u00f3n Docentes de Comunicaci\u00f3n Directorio Telef\u00f3nico Pedag\u00f3gico N\u00b0 Apellidos y Nombres Especialidad Celular Correo<\/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-1993","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; Comunicaci\u00f3n Docentes de Comunicaci\u00f3n Directorio Telef\u00f3nico Pedag\u00f3gico N\u00b0 Apellidos y Nombres Especialidad Celular Correo","_links":{"self":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1993","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=1993"}],"version-history":[{"count":7,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1993\/revisions"}],"predecessor-version":[{"id":2000,"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/pages\/1993\/revisions\/2000"}],"wp:attachment":[{"href":"https:\/\/eespencinas.edu.pe\/index.php\/wp-json\/wp\/v2\/media?parent=1993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}