Skip to content

Instantly share code, notes, and snippets.

@andershaig
Created August 23, 2013 15:47
Show Gist options
  • Save andershaig/6320841 to your computer and use it in GitHub Desktop.
Save andershaig/6320841 to your computer and use it in GitHub Desktop.
{% plugin rawtext button_1_label %}
{% plugin rawtext button_1_link %}
{% plugin rawtext button_2_label %}
{% plugin rawtext button_2_link %}
{% plugin rawtext button_3_label %}
{% plugin rawtext button_3_link %}
{% plugin rawtext button_4_label %}
{% plugin rawtext button_4_link %}
<style type="text/css">
html {
{% style background-image background %}
}
.button a {
{% style background-color buttons %}
}
</style>
<div class="container">
<div class="row">
<div class="span12">
<div id="big-image" class="large">
{% image image %}
</div>
</div>
</div>
<div class="row">
<div class="span6">
<div class="button">
<a href="{{ button_1_link }}" target="_top">{{ button_1_label }}</a>
</div>
</div>
<div class="span6">
<div class="button">
<a href="{{ button_2_link }}" target="_top">{{ button_2_label }}</a>
</div>
</div>
<div class="span6">
<div class="button">
<a href="{{ button_3_link }}" target="_top">{{ button_3_label }}</a>
</div>
</div>
<div class="span6">
<div class="button">
<a href="{{ button_4_link }}" target="_top">{{ button_4_label }}</a>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment