`;
}
/* ---- EDITAR TRABAJOS ---- */
if (tipo === "editar_trabajos") {
contenido = `
Editar / Eliminar Trabajos
`;
}
/* ---- CREAR POST DEL BLOG ---- */
if (tipo === "nuevo_post") {
contenido = `
Crear Nueva Publicación
`;
}
/* ---- EDITAR POSTS DEL BLOG ---- */
if (tipo === "editar_posts") {
contenido = `
Editar / Eliminar Publicaciones del Blog
`;
}
document.getElementById("panel-content").innerHTML = contenido;
}
