Last active
August 29, 2015 13:57
-
-
Save boertel/9676301 to your computer and use it in GitHub Desktop.
vikings-poll
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="points-wrap poll pt-poll challenge-poll-{{ challenge.id }}" data-id="challenge-poll-{{ challenge.id }}" data-type="poll" data-points="{{ challenge.params.title.points }}"> | |
| <div class="box panel content external"> | |
| <div class="row"> | |
| <div class="title"> | |
| <div class="column small-9 large-9"> | |
| <h3 class="left">{% widget "title_and_points" "title" %}</h3> | |
| </div> | |
| <div class="column small-3 large-3"> | |
| <div class="row"> | |
| <div class="columns large-6 small-4 text-right"> | |
| <img src="{{ static_url }}images/[email protected]" alt="completed" class="success-mark show-on-success"> | |
| <img src="{{ static_url }}images/[email protected]" alt="completed" class="fail-mark"> | |
| </div> | |
| <div class="columns large-6 small-8 text-right"> | |
| <h3 class="right points-total"><span class="hide-on-success">+</span>{{ challenge.params.title.points }}</h3> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="columns large-12"> | |
| <p>{{ challenge.params.poll.question }}</p> | |
| <div class="questions text-center"> | |
| {% widget "poll" "poll" %} | |
| </div> | |
| <div class="text-center"> | |
| <a href="#" class="visit reverse poll-submit">Answer</a> | |
| </div> | |
| </div> | |
| <div class="columns large-2 challenge-icon text-right"> | |
| <img src="{{ static_url }}images/icons/[email protected]" alt=""> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment