bye bye github

This commit is contained in:
mynah
2018-07-13 19:06:08 -05:00
commit ee47c30aca
241 changed files with 26451 additions and 0 deletions

104
public/home/cal/cssCal.css Executable file
View File

@@ -0,0 +1,104 @@
section.title{
background: #C22A39;
min-height:50vh;
position:relative;
}
section.title > p {
font-size: 4em;
position: absolute;
left: 0;
top: 33%;
width: 100%;
text-align: center;
color:white;
}
a.cal{
max-width:720px;
display:block;
margin:25px auto;
}
section.month{
max-width: 720px;
margin: 25px auto;
justify-content: space-between;
-webkit-justify-content: space-between;
}
div.spacer{
flex:4;
margin:auto;
background-color:black;
height:1px;
}
p.month{
flex:3;
font-weight: bold;
font-size: 1.5em;
margin:auto;
text-align: center;
text-transform: capitalize;
}
section.event{
justify-content: space-between;
-webkit-justify-content: space-between;
}
article.data{ padding:10px;}
article.more{
position:absolute;
right: 3%;
top: 75%;
text-align: center;
color:white;
font-size:1.5em;
}
article.image{
position:relative;
}
img.small{
max-height:180px;
}
p.date{
font-size: 1.4em;
margin:auto;
}
p.city{
font-weight: bold;
font-size: 1.7em;
margin:auto;
color:#C22A39;
}
p.place{
font-size: 0.7em;
font-style: italic;
font-weight:lighter;
margin:10px auto;
color:#C22A39;
display:inline;
}
p.dir{
font-size: 0.7em;
font-style: italic;
font-weight:lighter;
margin:10px auto;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
max-width:380px;
}
p.name{
font-size: 1em;
margin:10px auto;
}
a.cal,
a.cal:visited,
a.cal:link,
a.cal:active,
a.cal:hover{ color:black;
text-decoration:none; }

BIN
public/home/cal/img/Argentina.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
public/home/cal/img/CDMX.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
public/home/cal/img/Cancun.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
public/home/cal/img/Carmen.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

BIN
public/home/cal/img/Chile.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

BIN
public/home/cal/img/China.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

BIN
public/home/cal/img/Cuba.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

BIN
public/home/cal/img/Ensenada.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

BIN
public/home/cal/img/Hidalgo.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
public/home/cal/img/Leon.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
public/home/cal/img/Merida.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
public/home/cal/img/Mexicali.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
public/home/cal/img/Monterrey.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
public/home/cal/img/Oaxaca.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
public/home/cal/img/Puebla.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

BIN
public/home/cal/img/Queretaro.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

BIN
public/home/cal/img/Veracruz.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

BIN
public/home/cal/img/Xalapa.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

BIN
public/home/cal/img/Xalpan.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

10
public/home/cal/q1Block.q Executable file
View File

@@ -0,0 +1,10 @@
select distinct
concat(mes.nombre,' ',year(evento.fecha_inicio)) as text,
date_format(evento.fecha_inicio,'%Y%m') as id
from evento
inner join mes on month(evento.fecha_inicio)=mes.id
where evento.estado=1
order by evento.fecha_inicio
;

23
public/home/cal/q3Event.q Executable file
View File

@@ -0,0 +1,23 @@
select
date_format(evento.fecha_inicio,'%Y%m') as bid,
evento.id as eeid,
concat(lugar.municipio,", ",lugar.federativa) as ciudad,
concat(lugar.nombre,". ") as lugar,
lugar.direccion as dir,
case when month(evento.fecha_inicio) = month(evento.fecha_fin)
then concat("Del ", day(evento.fecha_inicio)," al ",day(evento.fecha_fin)," de ",mi.nombre)
else concat("Del ",day(evento.fecha_inicio)," de ",mi.nombre," al ",
day(evento.fecha_fin)," de ", mo.nombre)
end as fecha,
curso.nombre as nombre,
evento.imagen_chica as imagen_chica
from evento
inner join lugar on evento.lugar_id=lugar.id
inner join curso on evento.curso_id=curso.id
join mes as mi on mi.id=month(evento.fecha_inicio)
join mes as mo on mo.id=month(evento.fecha_fin)
where evento.estado=1
order by evento.fecha_inicio
;