Created
August 23, 2013 15:47
-
-
Save andershaig/6320841 to your computer and use it in GitHub Desktop.
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
{% 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