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 | |
add_action('genesis_after', 'cb_mobile_bar', 999); | |
function cb_mobile_bar() { ?> | |
<div class="mobile-bar"> | |
<div class="mobile-bar-triggers"> | |
<div class="mobile-bar-trigger" data-type="contactEmail"> | |
<a href="mailto:[email protected]"> | |
<span class="mobile-bar-trigger-icon"></span> | |
<span class="mobile-bar-trigger-label">Email</span> | |
</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
$("a.load-more").click(function(e){ | |
loadArticle(); | |
e.preventDefault(); | |
}); | |
function loadArticle() { | |
$("footer.infinite a").html("..."); | |
var offset = $("a.load-more").data("count"); | |
var num = parseInt(offset, 10); | |
var cat = $("a.load-more").data('cat'); |
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
$("footer.infinite a").click(function(e){ | |
loadArticle(); | |
e.preventDefault(); | |
}); | |
function loadArticle() { | |
$("footer.infinite a").html("..."); | |
var offset = $("footer.infinite a").data("count"); | |
var num = parseInt(offset, 10); | |
var cat = $("footer.infinite a").data('cat'); |
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
body { | |
font-family: 'system-ui', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; | |
} | |
/* Full Width Page | |
-------------------------------------------- */ | |
.site-inner.full { | |
max-width: none; | |
padding: 0; |
OlderNewer