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
<script> | |
window.dataLayer = window.dataLayer || []; | |
window.dataLayer.push({ | |
'event': 'applicationComplete', | |
'community': 'Admiral Farragut', | |
}); | |
<script> |
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
<!-- Google Tag Manager --> | |
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
})(window,document,'script','dataLayer','GTM-5P53JN8L');</script> | |
<!-- End Google Tag Manager --> |
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
var fooReveal = { | |
origin : 'bottom', | |
distance : '20px', | |
duration : 500, | |
delay : 0, | |
rotate : { x : 0, y : 0, z : 0 }, | |
opacity : 0, | |
scale : 0.9, | |
easing : 'cubic-bezier( 0.6, 0.2, 0.1, 1 )', | |
container : null, |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title></title> | |
<script src='//cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenLite.min.js'></script> | |
<script src='//cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TimelineLite.min.js'></script> | |
<script src='//cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/plugins/CSSPlugin.min.js'></script> |
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
$(document).ready(function(){ | |
$(".top10_video").fitVids(); | |
$(".top10_videolist .active").click(function(event){ | |
event.preventDefault(); | |
}); | |
}); | |
currentFeature = 'videoBox3'; | |
var noonerTitles = [ |
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 $newsFeed = the_field('player_feed'); ?> | |
<?php query_posts('showposts=10&category_name='.$newsFeed.'&ignore_sticky_posts=1'); ?> | |
<?php while (have_posts()) : the_post(); ?> | |
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3> | |
<?php endwhile; wp_reset_query(); ?> |
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 | |
$featured_image = get_field('post_featured_image'); | |
if( $featured_image ) { | |
echo '<img src="'.$featured_image.'" class="stretch" />'; | |
} else { | |
echo '<img src="'.get_bloginfo('template_url').'/images/news/default.jpg" class="stretch" />'; | |
} |
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
<!-- To add a CSS file residing in the skin CSS folder --> | |
<default> | |
<reference name="head"> | |
<action method="addCss"> | |
<stylesheet>css/custom.css</stylesheet> | |
</action> | |
</reference> | |
</default> |
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
background-image: -o-linear-gradient(-45deg , rgb(63,63,63) 50%, rgb(137,137,137) 50%, rgb(63,63,63) 50.5%); | |
background-image: -moz-linear-gradient(-45deg , rgb(63,63,63) 50%, rgb(137,137,137) 50%, rgb(63,63,63) 50.5%); | |
background-image: -webkit-linear-gradient(-45deg , rgb(63,63,63) 50%, rgb(137,137,137) 0%, rgb(63,63,63) 50.5%); | |
background-image: linear-gradient(-45deg , rgb(63,63,63) 50%, rgb(137,137,137) 50%, rgb(63,63,63) 50.5%); |
NewerOlder