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
var lat = 0; | |
var longi = 0; | |
function getLocation() { | |
if (navigator.geolocation) { | |
navigator.geolocation.getCurrentPosition(showPosition); | |
} else { | |
console.log("Geolocation is not supported by this browser."); | |
} |
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
// Small screens | |
@media only screen { } /* Define mobile styles */ | |
@media only screen and (max-width: 40em) { } /* max-width 640px, mobile-only styles, use when QAing mobile issues */ | |
// Medium screens | |
@media only screen and (min-width: 40.063em) { } /* min-width 641px, medium screens */ | |
@media only screen and (min-width: 40.063em) and (max-width: 64em) { } /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */ |
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 get_header(); ?> | |
<!-- #### THE LOOP #### --> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<h2><?php the_title(); ?></h2> | |
<span class="author">Written by <?php the_author(); ?></span> | |
<span class="date">on <?php the_time('F jS, Y'); ?></span> | |
<?php the_content('(Read More...)'); ?> | |
<?php endwhile; else : ?> | |
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p> |
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
<!DOCYTPE html> | |
<html> | |
<head> | |
<title>Wodpress for Dummys</title> | |
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" /> | |
</head> | |
<body> | |
<p>My first wordpress theme! YEY!</p> | |
</body> | |
</html> |
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
$(function() { | |
var newBg = ['wp-content/themes/movein3Theme/img/slider1.jpg', 'wp-content/themes/movein3Theme/img/slider2.jpg', 'wp-content/themes/movein3Theme/img/slider3.jpg']; | |
var i = -1; | |
var rotateBg = setInterval(function(){ | |
if(i==3) | |
i = 1; | |
else | |
i++; | |
$('#slider').css({backgroundImage : 'url(' + newBg[i] + ')'}); | |
}, 5000); |