99 lines
2.5 KiB
Vue
99 lines
2.5 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<Header></Header>
|
||
|
|
<Nav></Nav>
|
||
|
|
|
||
|
|
<div class="my-4 gente">
|
||
|
|
<h2 class="text-center">COMITÉ EDITORIAL</h2>
|
||
|
|
<div>
|
||
|
|
<p>Dr. Manuel Martínez Justo</p>
|
||
|
|
<strong> Presidente del Comité Editorial</strong>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<p>Mtro. Fernando Martínez Ramírez</p>
|
||
|
|
<strong> Secretario Ejecutivo del Comité Editorial</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Mtra. Nora Goris Mayans</p>
|
||
|
|
<strong> Secretaria General Académica</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Dr. Alejandro Byrd Orozco</p>
|
||
|
|
<strong>
|
||
|
|
Secretario de Extensión Universitaria y Vinculación
|
||
|
|
Institucional</strong
|
||
|
|
>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Mtro. Carlos Nandayapa Hernández</p>
|
||
|
|
<strong> Secretario de Estudios Profesionales</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Dra. Laura Páez Díaz de León</p>
|
||
|
|
<strong> Secretaria de Posgrado e Investigación</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Lic. Verónica Puma Galicia</p>
|
||
|
|
<strong> Coordinadora del Centro de Enseñanza de Idiomas</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Lic. Jorge Reyes Caldera Arroyo</p>
|
||
|
|
<strong> Jefe de la División de Ciencias Jurídicas</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Dra. Claudia Márquez Díaz</p>
|
||
|
|
<strong> Jefa de la División de Ciencias Socioeconómicas</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Mtro. Rubén Juárez Santana</p>
|
||
|
|
<strong> Jefe de la División de Diseño y Edificación</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Mtra. María Luisa Morales Martínez</p>
|
||
|
|
<strong> Jefa de la División de Humanidades</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Act. Luz María Lavín Alanís</p>
|
||
|
|
<strong> Jefa de la División de Matemáticas e Ingeniería</strong>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>Lic. Aída Villalobos Sosa</p>
|
||
|
|
<strong>
|
||
|
|
Jefa de la División del Sistema Universidad Abierta y Educación a
|
||
|
|
Distancia</strong
|
||
|
|
>
|
||
|
|
</div>
|
||
|
|
<div>
|
||
|
|
<p>D.G. Norma Guadalupe Rojas Borja</p>
|
||
|
|
<strong> Secretaria de Actas</strong>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<Footer></Footer>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import Header from "./../components/header.vue";
|
||
|
|
import Nav from "./../esteticas/nav.vue";
|
||
|
|
//import Nav from "./../components/navPrincipal.vue";
|
||
|
|
import Footer from "./../components/footer.vue";
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
Header,
|
||
|
|
Nav,
|
||
|
|
Footer
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.gente div {
|
||
|
|
margin: 1rem 0px;
|
||
|
|
}
|
||
|
|
p {
|
||
|
|
margin-bottom: 0px;
|
||
|
|
}
|
||
|
|
</style>
|