{"id":39,"date":"2024-10-16T13:37:55","date_gmt":"2024-10-16T16:37:55","guid":{"rendered":"https:\/\/spps.gob.ar\/?page_id=39"},"modified":"2026-07-23T14:56:45","modified_gmt":"2026-07-23T17:56:45","slug":"home-2","status":"publish","type":"page","link":"https:\/\/spps.gob.ar\/","title":{"rendered":"Inicio"},"content":{"rendered":"\n<div style=\"height:42px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<<div class=\"full-screen-slider\">\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20260225_105023.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20250716_110840.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20250716_101331.jpg');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_yvvbe5yvvbe5yvvb-1.png');\"><\/div>\n  <div class=\"my-slide\" style=\"background-image: url('https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/03\/20251203_182903-1-scaled.jpg');\"><\/div>\n<\/div>\n\n<style>\n  \/* Contenedor que ocupa toda la pantalla visual *\/\n  .full-screen-slider {\n    position: relative;\n    width: 100vw;\n    height: 100vh;\n    overflow: hidden;\n    \/* Fuerza el ancho completo si el tema tiene m\u00e1rgenes *\/\n    margin-left: calc(-50vw + 50%); \n    background-color: #000;\n  }\n\n  .my-slide {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background-size: cover;\n    background-position: center;\n    background-repeat: no-repeat;\n    opacity: 0;\n    transition: opacity 1s ease-in-out; \/* Desvanecimiento de 1 segundo *\/\n  }\n\n  \/* Clase que activa la visibilidad *\/\n  .my-slide.is-active {\n    opacity: 1;\n  }\n<\/style>\n\n<script>\n  (function() {\n    document.addEventListener(\"DOMContentLoaded\", function() {\n      const slides = document.querySelectorAll('.my-slide');\n      let current = 0;\n\n      if (slides.length === 0) return;\n\n      \/\/ Activar la primera imagen al cargar\n      slides[current].classList.add('is-active');\n\n      setInterval(() => {\n        \/\/ Quitar visibilidad a la imagen actual\n        slides[current].classList.remove('is-active');\n        \n        \/\/ Ir a la siguiente (y volver a 0 si llega al final)\n        current = (current + 1) % slides.length;\n        \n        \/\/ Mostrar la nueva imagen\n        slides[current].classList.add('is-active');\n      }, 2000); \/\/ Cambio cada 2000ms (2 segundos)\n    });\n  })();\n<\/script>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><\/h2>\n\n\n\n<div style=\"margin-top:0;margin-bottom:0;height:44px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h5 class=\"wp-block-heading has-text-align-center\"><\/h5>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n\n<style>\n    \/* Usamos un contenedor \u00fanico para no afectar otros estilos del sitio *\/\n    .spps-shortcut-section {\n        --spps-azul: #1a2a40;\n        --spps-gris-fondo: #f4f7f6;\n        --spps-blanco: #ffffff;\n        \n        padding: 40px 10px;\n        background-color: var(--spps-gris-fondo);\n        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;\n        border-radius: 15px;\n        margin: 20px 0;\n    }\n\n    .spps-title {\n        text-align: center;\n        color: var(--spps-azul);\n        margin-bottom: 30px;\n        font-size: 1.8rem;\n        text-transform: uppercase;\n        letter-spacing: 1px;\n    }\n\n    .spps-grid {\n        display: grid;\n        \/* El truco para el m\u00f3vil: minmax(140px, 1fr) permite 2 columnas en pantallas peque\u00f1as *\/\n        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n        gap: 15px;\n        max-width: 1000px;\n        margin: 0 auto;\n    }\n\n    .spps-card {\n        background: var(--spps-blanco);\n        padding: 25px 15px;\n        border-radius: 12px;\n        text-decoration: none !important; \/* Quita subrayado de WP *\/\n        color: var(--spps-azul) !important;\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        justify-content: center;\n        text-align: center;\n        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);\n        box-shadow: 0 4px 6px rgba(0,0,0,0.05);\n        border: 1px solid rgba(0,0,0,0.05);\n        height: 140px; \/* Altura fija para uniformidad *\/\n    }\n\n    .spps-card i {\n        font-size: 2.5rem;\n        margin-bottom: 12px;\n        transition: transform 0.3s ease;\n    }\n\n    .spps-card span {\n        font-weight: 600;\n        font-size: 0.95rem;\n        line-height: 1.2;\n    }\n\n    \/* Efectos Hover *\/\n    .spps-card:hover {\n        background-color: var(--spps-azul);\n        color: #ffffff !important;\n        transform: translateY(-5px);\n        box-shadow: 0 10px 20px rgba(26, 42, 64, 0.2);\n    }\n\n    .spps-card:hover i {\n        transform: scale(1.1);\n    }\n\n    \/* Ajustes espec\u00edficos para M\u00f3viles *\/\n    @media (max-width: 480px) {\n        .spps-grid {\n            grid-template-columns: repeat(2, 1fr); \/* Fuerza 2 columnas en m\u00f3viles peque\u00f1os *\/\n            gap: 10px;\n        }\n        .spps-card {\n            padding: 15px 5px;\n            height: 120px;\n        }\n        .spps-card i {\n            font-size: 2rem;\n        }\n        .spps-card span {\n            font-size: 0.85rem;\n        }\n        .spps-title {\n            font-size: 1.4rem;\n        }\n    }\n<\/style>\n\n<div class=\"spps-shortcut-section\">\n    <h2 class=\"spps-title\"><i class=\"fas fa-th-large\"><\/i> Accesos Directos<\/h2>\n    \n    <div class=\"spps-grid\">\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=615\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-newspaper\"><\/i>\n            <span>Prensa<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/sistemas.spps.gob.ar\/registroanticipadas\/ctrl_inscripcion\/pag_inscripcion\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-user-check\"><\/i>\n            <span>Visita Anticipada<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=1570\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-book-reader\"><\/i>\n            <span>Capacitaci\u00f3n SPPS<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=505\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-graduation-cap\"><\/i>\n            <span>Escuela de Cadetes<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=507\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-user-plus\"><\/i>\n            <span>Curso de Aspirantes<\/span>\n        <\/a>\n\n        <a href=\"https:\/\/spps.gob.ar\/?page_id=3025\" target=\"_blank\" rel=\"noopener\" class=\"spps-card\">\n            <i class=\"fas fa-hand-holding-heart\"><\/i>\n            <span>Bienestar del Personal<\/span>\n        <\/a>\n    <\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-uagb-image aligncenter uagb-block-6465b57d wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-center\"><figure class=\"wp-block-uagb-image__figure\"><img decoding=\"async\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/FLAYER-COMUNICACIONES-3-724x1024.png\" alt=\"\" class=\"uag-image-5582\" width=\"383\" height=\"411\" title=\"FLAYER COMUNICACIONES (3)\" loading=\"lazy\" role=\"img\" \/><\/figure><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"819\" height=\"1024\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-819x1024.jpeg\" alt=\"\" class=\"wp-image-5199\" style=\"aspect-ratio:0.7998220640569395;width:431px;height:auto\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-819x1024.jpeg 819w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-240x300.jpeg 240w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-768x960.jpeg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-1229x1536.jpeg 1229w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21-1638x2048.jpeg 1638w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/WhatsApp-Image-2026-04-06-at-13.59.21.jpeg 2048w\" sizes=\"auto, (max-width: 819px) 100vw, 819px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\"><\/figure>\n\n\n\n<style>\n    .seccion-titulo-contenedor {\n        width: 100%;\n        max-width: 1000px;\n        margin: 40px auto 20px auto;\n        text-align: center;\n        padding: 0 15px;\n    }\n\n    .titulo-destacado {\n        \/* Misma fuente y estilo que tus accesos directos *\/\n        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        color: #1a2a40;\n        font-size: 1.8rem;\n        font-weight: 700;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin: 0;\n        display: inline-block;\n        position: relative;\n        padding-bottom: 10px;\n    }\n\n    \/* L\u00ednea decorativa debajo del texto *\/\n    .titulo-destacado::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 25%;\n        width: 50%;\n        height: 4px;\n        background-color: #1a2a40;\n        border-radius: 2px;\n    }\n\n    \/* Ajuste para m\u00f3viles *\/\n    @media (max-width: 600px) {\n        .titulo-destacado {\n            font-size: 1.4rem;\n            letter-spacing: 1px;\n        }\n    }\n<\/style>\n\n<div class=\"seccion-titulo-contenedor\">\n    <h2 class=\"titulo-destacado\">\u00daltimas Noticias Destacadas<\/h2>\n<\/div>\n\n\n\n\t\t\t<div class=\"wp-block-uagb-post-carousel uagb-post-grid  uagb-post__image-position-background uagb-post__image-enabled uagb-block-13406a92     uagb-post__arrow-outside uagb-slick-carousel uagb-post__items uagb-post__columns-3 is-carousel uagb-post__columns-tablet-2 uagb-post__columns-mobile-1\" data-total=\"33\" style=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5759\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Misa Institucional en la Catedral Bas\u00edlica<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-08-01T12:09:40-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t1 agosto, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>Renovamos nuestra fe y nuestro compromiso de servicio participando de la Misa Institucional en la&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5759\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5759\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"576\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/761946325_2904524889888237_1102394119753085340_n-768x576.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/761946325_2904524889888237_1102394119753085340_n-768x576.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/761946325_2904524889888237_1102394119753085340_n-300x225.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/761946325_2904524889888237_1102394119753085340_n-1024x768.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/761946325_2904524889888237_1102394119753085340_n.jpg 1500w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5771\" target=\"_self\" rel=\"bookmark noopener noreferrer\">88\u00ba Aniversario de la Gendarmer\u00eda Nacional Argentina<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-07-28T12:15:49-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t28 julio, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>El director General del Servicio Penitenciario de Salta Prefecto Mayor Lic. Enrique Torres junto al&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5771\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5771\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"590\" height=\"293\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/758750948_2325832407825717_4007049573091168704_n.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/758750948_2325832407825717_4007049573091168704_n.jpg 590w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/08\/758750948_2325832407825717_4007049573091168704_n-300x149.jpg 300w\" sizes=\"auto, (max-width: 590px) 100vw, 590px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5772\" target=\"_self\" rel=\"bookmark noopener noreferrer\">44\u00b0 Edici\u00f3n de las Olimpiadas Penitenciarias &#8220;Virgen del Carmen 2.026&#8221;<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-07-27T12:22:59-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t27 julio, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>En el marco de las actividades por el D\u00eda del Agente Penitenciario, se realiz\u00f3 la&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5772\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5587\" target=\"_self\" rel=\"bookmark noopener noreferrer\">&#8220;M\u00e1s All\u00e1 de los Muros&#8221;: deporte, integraci\u00f3n y esperanza<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-07-26T08:27:44-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t26 julio, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>El Servicio Penitenciario de la Provincia de Salta, a trav\u00e9s de la Unidad Carcelaria N\u00ba&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5587\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5587\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"1024\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/753604759_2159801571229870_5245004057112698423_n-768x1024.jpg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/753604759_2159801571229870_5245004057112698423_n-768x1024.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/753604759_2159801571229870_5245004057112698423_n-225x300.jpg 225w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/753604759_2159801571229870_5245004057112698423_n.jpg 960w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5488\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Acto Central por el Dia del Agente Penitenciario y en Honor a la Sant\u00edsima Virgen del Carmen<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-07-17T12:14:00-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t17 julio, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>En el marco del D\u00eda del Agente Penitenciario y en Honor a la Sant\u00edsima Virgen&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5488\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5488\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-17-at-13.30.47-768x432.jpeg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-17-at-13.30.47-768x432.jpeg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-17-at-13.30.47-300x169.jpeg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-17-at-13.30.47-1024x576.jpeg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-17-at-13.30.47.jpeg 1280w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5670\" target=\"_self\" rel=\"bookmark noopener noreferrer\">MISI\u00d3N CUMPLIDA! HOMENAJE POR 25 A\u00d1OS DE SERVICIO<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2026-07-16T09:03:45-03:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\t16 julio, 2026\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo hay comentarios\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>\u200bEn la Plaza de Armas de la Unidad Carcelaria N\u00b0 1, se llev\u00f3 a cabo&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/spps.gob.ar\/?p=5670\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Saber mas<\/a>\n\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5670\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"432\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-27-at-09.10.52-768x432.jpeg\" class=\"attachment-medium_large size-medium_large\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-27-at-09.10.52-768x432.jpeg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-27-at-09.10.52-300x169.jpeg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-27-at-09.10.52-1024x576.jpeg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/WhatsApp-Image-2026-07-27-at-09.10.52.jpeg 1280w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\n\n<div style=\"height:56px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<style>\n    .seccion-galeria-contenedor {\n        width: 100%;\n        max-width: 1000px;\n        margin: 50px auto 25px auto; \/* Espaciado superior para separar de la secci\u00f3n anterior *\/\n        text-align: center;\n        padding: 0 15px;\n    }\n\n    .titulo-galeria {\n        \/* Estilo id\u00e9ntico a los anteriores para mantener uniformidad *\/\n        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        color: #1a2a40;\n        font-size: 1.8rem;\n        font-weight: 700;\n        text-transform: uppercase;\n        letter-spacing: 2px;\n        margin: 0;\n        display: inline-block;\n        position: relative;\n        padding-bottom: 10px;\n    }\n\n    \/* L\u00ednea decorativa inferior *\/\n    .titulo-galeria::after {\n        content: '';\n        position: absolute;\n        bottom: 0;\n        left: 30%; \/* Un poco m\u00e1s cerrada para este texto m\u00e1s corto *\/\n        width: 40%;\n        height: 4px;\n        background-color: #1a2a40;\n        border-radius: 2px;\n    }\n\n    \/* Adaptaci\u00f3n para celulares *\/\n    @media (max-width: 600px) {\n        .titulo-galeria {\n            font-size: 1.4rem;\n            letter-spacing: 1px;\n        }\n    }\n<\/style>\n\n<div class=\"seccion-galeria-contenedor\">\n    <h2 class=\"titulo-galeria\">Galer\u00eda de Fotos<\/h2>\n<\/div>\n\n\n\n\t\t\t<div data-aos= \"fade-down\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-post-carousel uagb-post-grid  uagb-post__image-position-top uagb-post__image-enabled uagb-block-a5b75cea     uagb-post__arrow-outside uagb-slick-carousel uagb-post__items uagb-post__columns-3 is-carousel uagb-post__columns-tablet-2 uagb-post__columns-mobile-1 uagb-post__carousel_equal-height\" data-total=\"33\" style=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=4695\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781.jpg 1280w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/12\/d2f5d2a4-378b-4ff4-a103-5f7660a24781-768x432.jpg 768w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=4695\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=1341\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1020\" height=\"574\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5.jpg 1020w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/aniversario-uc6-5-768x432.jpg 768w\" sizes=\"auto, (max-width: 1020px) 100vw, 1020px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=1341\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"900\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n.jpg 1600w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-300x169.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1024x576.jpg 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-768x432.jpg 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/05\/685468970_954025847379637_2081352817006677165_n-1536x864.jpg 1536w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=5235\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=5736\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"900\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68.png\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68.png 1600w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68-300x169.png 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68-1024x576.png 1024w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68-768x432.png 768w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2026\/07\/image-68-1536x864.png 1536w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=5736\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=1689\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos.jpg 900w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos-300x200.jpg 300w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2024\/11\/87131-venta-y-exposicion-de-juguetes-en-el-servicio-penitenciario-por-el-dia-de-reyes-magos-768x512.jpg 768w\" sizes=\"auto, (max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=1689\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/spps.gob.ar\/?p=3224\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"347\" src=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1.webp\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1.webp 560w, https:\/\/spps.gob.ar\/wp-content\/uploads\/2025\/05\/10519-trabajo-conjunto-por-el-bienestar-de-personas-privadas-de-la-libertad-en-salta-1-300x186.webp 300w\" sizes=\"auto, (max-width: 560px) 100vw, 560px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t<a class=\"uagb-post__link-complete-box\" href=\"https:\/\/spps.gob.ar\/?p=3224\" target=\"_self\" rel=\"bookmark noopener noreferrer\"><\/a>\n\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>< Accesos Directos Prensa Visita Anticipada Capacitaci\u00f3n SPPS Escuela de Cadetes Curso de Aspirantes Bienestar del Personal \u00daltimas Noticias Destacadas [&hellip;]\n<\/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":"default","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"unboxed","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":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","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-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"class_list":["post-39","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":"adminspps","author_link":"https:\/\/spps.gob.ar\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"< Accesos Directos Prensa Visita Anticipada Capacitaci\u00f3n SPPS Escuela de Cadetes Curso de Aspirantes Bienestar del Personal \u00daltimas Noticias Destacadas [&hellip;]","_links":{"self":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=39"}],"version-history":[{"count":477,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39\/revisions"}],"predecessor-version":[{"id":5585,"href":"https:\/\/spps.gob.ar\/index.php?rest_route=\/wp\/v2\/pages\/39\/revisions\/5585"}],"wp:attachment":[{"href":"https:\/\/spps.gob.ar\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}