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
<div id="siteContainer"> | |
<div id="siteNavStickyContainer" data-sticky-container> | |
<div id="siteNavStickyWrap" class="sticky" data-sticky data-sticky-on="small" data-anchor="siteContainer" data-margin-top="0"> | |
<div id="siteNavToggler" class="title-bar" data-responsive-toggle="siteNav" data-hide-for="medium"> | |
<!-- // your title-bar / toggler code --> | |
</div> | |
<div id="siteNav" class="top-bar"> | |
<!-- // your top-bar code --> | |
</div> | |
</div> |
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
{ "rules" : | |
[ | |
{ "class": "PassThroughRule", "selector" : "ins.adsbygoogle" }, | |
{ "class": "PassThroughRule", "selector" : "div.alignright" }, | |
{ "class": "PassThroughRule", "selector" : "div.alignleft" }, | |
{ "class": "PassThroughRule", "selector" : "div.callout" }, | |
{ "class": "PassThroughRule", "selector" : "div.row" }, | |
{ "class": "PassThroughRule", "selector" : "div.columns" }, |
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
<div id="loadGallery"></div> | |
<script> | |
// load clearing lightbox with URI hash , requires Foundation 5 | |
$(function(){ | |
if (window.location.hash){ | |
var hash = window.location.hash.substring(1); | |
if (hash == "loadGallery"){ | |
$('ul[data-clearing] li a').first().click(); | |
} |
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
{% if site.enable_adsense == true %} | |
<!-- Adsense Code here --> | |
{% else %} | |
<!-- Placeholder Ad here --> | |
{% endif %} |
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
<div id="disqus_thread"></div> | |
<script type="text/javascript"> | |
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ | |
var disqus_shortname = '{% if site.enable_disqus == true %}username{% else %}testing{% endif %}'; // required: replace example with your forum shortname | |
/* * * DON'T EDIT BELOW THIS LINE * * */ | |
(function() { | |
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; | |
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; | |
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); |
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
<!-- banner full width home --> | |
<div id="banner" class="banner-main"> | |
<ul data-orbit data-options="animation:slide;timer_speed:6000;animation_speed:400;stack_on_small:false;navigation_arrows:true;slide_number:false;pause_on_hover:true;resume_on_mouseout:false;bullets:false;timer:true;variable_height:false;"> | |
<?php $args = array( 'banner-location' => 'banner-main-home', 'post_type' => 'govph_banners', 'posts_per_page' => 4, 'orderby' => 'date', 'order' => 'DESC' ); | |
$loop = new WP_Query( $args ); | |
while ( $loop->have_posts() ) : $loop->the_post(); ?> | |
<li> |