This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
homepage-2017/templates/challenges.html

45 lines
1.3 KiB
HTML

{% extends 'base.html' %}
{% load markdownify %}
{% block content %}
<div class="row container">
<div class="section slogan">
<h2 class="center-align" style="font-weight:bold">Challenges<br></h2>
</div>
</div>
<div class="row container challenges">
<div class="row">
{% for challenge in challenges %}
<div class="col s12 m4">
<div class="card">
<div class="card-content" style="overflow: hidden; height:200px;">
<div class="card-title"><b>{{ challenge.name }}</b></div>
<p style="text-align: justify;">
{% if challenge.blurb %}
{{ challenge.blurb | markdownify }}
{% else %}
{{ challenge.description|slice:":500" | markdownify }}
{% endif %}
</p>
<div style="padding-top: 15px;">
{% for tag in challenge.tags.all %}
<div class="chip">{{ tag.name }}</div>
{% endfor %}
</div>
</div>
<div class="card-action">
<a href="/challenge/{{ challenge.id }}" class="btn-large lightlink">I can do it</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}