Skip to content

Instantly share code, notes, and snippets.

@DenisCarriere
Created December 25, 2016 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DenisCarriere/a657330535e87dc60a3d826d67c328c3 to your computer and use it in GitHub Desktop.
Save DenisCarriere/a657330535e87dc60a3d826d67c328c3 to your computer and use it in GitHub Desktop.
Homepage Change
<!-- AFTER -->
<!-- HOMEPAGE -->
<!-- HERO Version 1: Site headline, description & call to action -->
{% cache 'homepage2' %}
<div class='homepage-hero'>
<div class='container'>
<div class='row text-center'>
<h2 class='headline'>{{current_school.site_heading}}</h2>
<h3 class='subtitle'>{{current_school.description}}</h3>
<br><br><a class='btn btn-primary btn-hg text-center' href='http://www.trailloop.com/'>{{ 'homepage.enroll_button_string' | i18n }}</a>
</div>
</div>
</div>
<!-- BEFORE -->
<!-- HOMEPAGE -->
<!-- HERO Version 1: Site headline, description & call to action -->
{% cache 'homepage2' %}
<div class='homepage-hero'>
<div class='container'>
<div class='row text-center'>
<h2 class='headline'>{{current_school.site_heading}}</h2>
<h3 class='subtitle'>{{current_school.description}}</h3>
<br><br><a class='btn btn-primary btn-hg text-center' href='{{ site.sign_up_url }}'>{{ 'homepage.enroll_button_string' | i18n }}</a>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment