En su mayoría los tags de html deben tener apertura y cierre, <nombre_tag>Contenido</nombre_tag>.
Ejemplo: <p>Esta es un tag de párrafo.</p>
- h1, h2, h3: Títulos
| <?php | |
| $url = @(htmlspecialchars($_GET["url"])); | |
| $key = @(htmlspecialchars($_GET["key"])); | |
| $key2 = @(htmlspecialchars($_GET["key2"])); | |
| $max_age = @mysql_real_escape_string(htmlspecialchars($_GET["max-age"])); | |
| $json = @mysql_real_escape_string(htmlspecialchars($_GET["json"])); | |
| $output = @mysql_real_escape_string(htmlspecialchars($_GET["output"])); | |
| $opts = array('http' => |
| var context = { | |
| 'estado1': null, | |
| 'estado2': 12 | |
| } | |
| var permalink: { | |
| set:function(){ | |
| location.hash = JSON.stringify(context); | |
| }, | |
| get: function(){ |
| var gulp = require('gulp'), | |
| connect = require('gulp-connect'); | |
| jshint = require('gulp-jshint'), | |
| uglify = require('gulp-uglify'), | |
| concat = require('gulp-concat'), | |
| build = require('gulp-build'), | |
| minifyCSS = require('gulp-minify-css'), | |
| sourcemaps = require('gulp-sourcemaps'), | |
| clean = require('gulp-clean'), | |
| htmlreplace = require('gulp-html-replace'), |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import glob, os, gc | |
| from time import sleep | |
| from pylab import * | |
| import numpy as np | |
| # we wanna make plots like in Matlab! |
| #! python | |
| import csv, json | |
| path = "app/data" | |
| csv_path = "%s/nisman.csv" % path | |
| data_out_path = "%s/data.json" % path | |
| reader = csv.DictReader(open(csv_path)) |
| #!/usr/bin/python | |
| from twitter import * # need install twitter.py: `pip install twitter` | |
| import json | |
| import time | |
| from urlparse import urlparse, parse_qs | |
| """SETTINGS""" | |
| from twitter_keys import OAUTH_TOKEN, OAUTH_SECRET, TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET |
| <?php | |
| ini_set('display_errors', 1); | |
| require_once('lib/TwitterAPIExchange.php'); | |
| /** Set access tokens here - see: https://dev.twitter.com/apps/ **/ | |
| require "conf.php"; | |
| define("LAST_METADATA_SEARCH_FILE", "app/data/last_metadata_search.txt"); | |
| define("TUITS_FILE", "app/data/tuits_nisman.txt"); |
| class Bien(models.Model): | |
| # id = models.IntegerField(primary_key=True) # AutoField? | |
| # tipo_bien_id = models.IntegerField(blank=True, null=True) | |
| # nombre_bien_id = models.IntegerField(blank=True, null=True) | |
| tipo_bien_s = models.CharField(max_length=255, blank=True) | |
| nombre_bien_s = models.CharField(max_length=255, blank=True) | |
| descripcion = models.CharField(max_length=255, blank=True) | |
| direccion = models.CharField(max_length=255, blank=True) | |
| barrio = models.CharField(max_length=255, blank=True) | |
| localidad = models.CharField(max_length=255, blank=True) |