-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtutorial-list.html
More file actions
17 lines (17 loc) · 698 Bytes
/
tutorial-list.html
File metadata and controls
17 lines (17 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% for tutorial in tutorials %}
<div class="box">
<a href="{% url 'app:tutorial_redirect' tutorial.pk %}" target="_blank" id="tutorial-tag">{{ tutorial.title }}</a>
<div class="tile">
{% for tag in tutorial.tags.all %}
<span class="tag">
<b><a href="{% url 'app:tag-links' tag %}" > 📌 {{ tag }}</a></b>
</span>
{% endfor %}
<button class="fa fa-share-alt is-pulled-right" id="shareIcon"
onclick='share("{{ tutorial.title }}","{{ tutorial.link }}")'></button>
</div>
<br>
<span class="tag is-medium" style="background-color: rgb(0, 196, 167); color: white;"><b>{{ tutorial.category }}</b>
</span>
</div>
{% endfor %}