This file contains 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
.dropimage { | |
position: relative; | |
border: 4px dashed grey; | |
min-height: 150px; | |
} | |
.dropimage:after { | |
color: grey; | |
content: "Drop image"; | |
font-size: 30px; |
This file contains 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
<?php | |
$url_partidas = ''; | |
$json = file_get_contents($url_partidas); | |
$a = json_decode($json); | |
#echo '<pre>' . print_r($a, 1) . '</pre>'; | |
?><!DOCTYPE html> | |
<html> | |
<title>Partidas NETCON</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> |
This file contains 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
<?php | |
$url_partidas = ''; | |
$url_charlas = ''; | |
$json = file_get_contents($url_partidas); | |
$partidas = json_decode($json); | |
#echo '<pre>' . print_r($a, 1) . '</pre>'; | |
$json = file_get_contents($url_charlas); | |
$charlas = json_decode($json); | |
foreach ($charlas as $charla) { |
This file contains 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
<!-- Ejemplo objetivo: --> | |
<div style="text-align:center; margin-top:25px"> | |
<!-- Debe añadir la clase link-anti-bot al enlace a proteger, así como {slash} y {dot} por cada / y . que contenga: --> | |
<h2>Telegram: <a class="link-anti-bot" data-href="https:{slash}{slash}t{dot}me{slash}joinchat{slash}Et_yWw5qkbiGVFQvOqJokw"><img src="/img/telegram.png" style="vertical-align:middle" width="128"></a></h2> | |
</div> | |
<!-- Código a copiar abajo del todo en el template: --> | |
<!-- Si la página carece de jQuery incluya la siguiente linea: --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<script> |
This file contains 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
<!DOCTYPE html> | |
<html id="important"> | |
<head> | |
<link href="/css/material-icons.css" rel="stylesheet"> | |
<link href="/css/materialize.min.css" rel="stylesheet"> | |
<link href="/css/hacks.css" rel="stylesheet"> | |
<link href="/css/helpers.css" rel="stylesheet"> | |
<link href="/css/style.css" rel="stylesheet"> | |
<?=Css::inc()?> |
This file contains 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
<h1>Configure su página Web</h1> | |
<h2>Solicite un presupuesto sin compromiso</h2> | |
<p>Escoja el producto que más se adecue a sus necesidades y un experto se pondrá en contacto son usted para definir los detalles y empezar a trabajar. No espere un día más para lanzar su proyecto y hacerse visible.</p> | |
<form action="/index/contact" method="post"> | |
<select class="span1" name="web"> | |
<option value="1">1.0</option> | |
<option value="1_5">1.5</option> | |
<option value="2">2.0</option> | |
<option value="3">3.0</option> |
This file contains 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
.kuwy .kuwy-menu | |
{ | |
background:#EEE; | |
padding:4px; | |
} | |
.kuwy .kuwy-menu .kuwy-btn | |
{ | |
display:inline-block; | |
padding:0 4px; |
This file contains 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
/* MARCA DE AGUA KUMBIAPHP */ | |
.powered | |
{ | |
background: url('/img/logo.png') no-repeat 0 18px; | |
bottom: 4px; | |
height: 69px; | |
opacity: 0.1; | |
position: fixed; | |
right: 4px; | |
width: 433px; |
This file contains 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
<?php | |
[...] | |
/** | |
* Maneja las excepciones no capturadas | |
* | |
* @param Exception $e | |
* */ | |
public static function handleException($e) |
NewerOlder