Skip to content

Instantly share code, notes, and snippets.

@boertel
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save boertel/9676301 to your computer and use it in GitHub Desktop.

Select an option

Save boertel/9676301 to your computer and use it in GitHub Desktop.
vikings-poll
<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