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
<a href="#three">Scroll to Section Three</a> | |
<h1 id="three">Section Three</h1> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Thumbnail Navigator Skin 02 - Jssor Slider, Carousel, Slideshow with Javascript Source Code</title> | |
</head> | |
<body style="padding: 0; margin: 0; font-family:Arial, Verdana;background-color:#fff;"> | |
<!-- use jssor.slider.min.js instead for release --> | |
<!-- jssor.slider.min.js = (jssor.js + jssor.slider.js) --> |
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
.embed-responsive { | |
position: relative; | |
display: block; | |
height: 0; | |
padding: 0; | |
overflow: hidden; | |
} | |
.embed-responsive .embed-responsive-item, | |
.embed-responsive iframe, | |
.embed-responsive embed, |
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
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
/* codigo para ie 10 y 11 */ | |
} |
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
/* Copyright 2015 Pablo Cattaneo (email: [email protected]) | |
This program is free software; you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation; either version 2 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
<?php | |
function get_custom_cat_template($single_template) { | |
global $post; | |
if ( in_category( 'category-name' )) { | |
$single_template = dirname( __FILE__ ) . '/single-template.php'; | |
} | |
return $single_template; | |
} |
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
<?php | |
// Get the ID of a given category | |
$category_id = get_cat_ID( 'Category Name' ); | |
// Get the URL of this category | |
$category_link = get_category_link( $category_id ); | |
?> | |
<!-- Print a link to this category --> | |
<a href="<?php echo esc_url( $category_link ); ?>" title="Category Name">Category Name</a> |
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
<select name="provincia"> | |
<option value="Buenos Aires" selected="select" disabled="disabled">--</option> | |
<option value="Buenos Aires">Buenos Aires</option> | |
<option value="Catamarca">Catamarca</option> | |
<option value="Chaco">Chaco</option> | |
<option value="Chubut">Chubut</option> | |
<option value="Cordoba">Cordoba</option> | |
<option value="Corrientes">Corrientes</option> | |
<option value="Entre Rios">Entre Rios</option> | |
<option value="Formosa">Formosa</option> |
OlderNewer