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
<div class="hero" style="background-image:url({{ background_image OR "http://placehold.it/1000x400" }})"> | |
<h1 class="hero__title">{{ title OR "We Are Awesome" }}</h1> | |
{% block body %} | |
{% endblock %} | |
{% block footer %} | |
<a class="hero__cta button button--primary" href="{{ cta_href OR "/some/awesome-link.html" }}>{{ cta_text OR "Find Out Why!" }}</a> | |
{% endblock %} | |
</div> |
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() { | |
// Make tabs work | |
$('.tabs-wrapper .tab-option').hide(); | |
$('.tabs-wrapper .tab-option:first').show(); | |
$('.tabs-wrapper li:first').addClass('active'); | |
$('.tabs-wrapper .tabs li a').click(function(){ | |
$(this).parent().siblings().removeClass('active'); |