This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
En primaria nos basamos en la metodología AMCO que ha sido diseñada para impulsar de manera interesante, fácil, productiva y divertida la actividad escolar. | |
Ingles Certificado. | |
Incorporados a la SEP, todos nuestros profesores están altamente calificados. Educación bilingüe bajo el programa por niveles de la Universidad de Cambridge | |
Prepa Cun | |
Instalaciones | |
El campus cuenta con 3 canchas de futbol empastadas, alberca techada en cada plantel y todos los salones cuentan con aire acondicionado. Todo pensando en crear el mejor ambiente para que nuestros alumnos puedan trabajar la mente y el cuerpo de forma balanceada. | |
El desarrollo de la labor educativa requiere de un ambiente en el que los estudiantes, maestros y padres se sientan seguros, respetados y con el total apoyo para manifestar con firmeza y libertad sus preocupaciones, dudas, sentimientos e ideas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).on("ready", checkUrl); | |
function checkUrl() | |
{ | |
currentSite = window.location.pathname, | |
trimmed = currentSite.split("/"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://support.apple.com/kb/DL1420 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;DNAS configuration file | |
;Made with the SHOUTcast 2 Configuration Builder | |
yp1debug=1 | |
yp2debug=1 | |
shoutcastsourcedebug=1 | |
uvox2sourcedebug=1 | |
shoutcast1clientdebug=1 | |
shoutcast2clientdebug=1 | |
relayshoutcastdebug=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Slide Bootstrap--> | |
<div id="myCarousel" class="carousel slide"> | |
<ol class="carousel-indicators"> | |
<li data-target="#myCarousel" data-slide-to="0" class="active"></li> | |
<li data-target="#myCarousel" data-slide-to="1"></li> | |
<li data-target="#myCarousel" data-slide-to="2"></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() | |
{ | |
console.log('ready bases'); | |
var bases = $(".nfo-bases") | |
bases.click(function(evt) | |
{ | |
$this = $(this); | |
console.log($this.data('loc')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
var isiPad = navigator.userAgent.indexOf("iPad") != -1; | |
var isiPod = navigator.userAgent.indexOf("iPhone") != -1; | |
checkDevice(isiPad, isiPod); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var timer1; | |
function startTimer2() | |
{ | |
timer1=setTimeout(function(){finishTimer()},20000); | |
//window.clearInterval(timer1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="panel-group" id="accordion"> | |
<div class="panel panel-default"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://docs.djangoproject.com/en/dev/ref/forms/fields/ | |
https://docs.djangoproject.com/en/dev/topics/forms/ | |
crear forms.py en la carpeta junto a urls.py y settings.py | |
<strong>en forms.py</strong> | |
from django import forms |
OlderNewer