-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
47 lines (34 loc) · 1.47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
title: TASKS
css: static/CSS/tasks.css
js: static/JS/tasks.js
change_theme: true
---
<div class="row task-list" id="row1">
<div class="tasks important" id="explain">
<h4><b>Winners of BITS 2020 have been announced in the Leaderboard page!</b><br> <br>After an intense competition that extended over a month, we are excited to announce the winners of BITS 2020. We want to congratulate all of the Anandians who took part in this year’s BITS competition. Great job!</h4>
</div>
{% for Atask in site.data.Atasks %}
<div class="tasks important" id="atask">
<h4>{{Atask.caption}} <button type="button" class="btn btn-primary" id="id">Task ID : {{Atask.id}} </button></h4>
<p>{{Atask.description}}</p>
<div class="buttons">
<a class="btn btn-info" href="{{Atask.pdfURL}}" id="catocery">Task
Information</a>
<button type="button" class="btn btn-primary" id="catocery">{{Atask.category}} </button>
</div>
</div>
{% endfor %}
{% for task in site.data.tasks %}
<div class="tasks task-cat {{task.category}}">
<h4>{{task.caption}} <button type="button" class="btn btn-primary" id="id">Task ID : {{task.id}} </button></h4>
<p>{{task.description}}</p>
<div class="buttons">
<a class="btn btn-info" href="{{task.pdfURL}}" id="catocery">Task
Information</a>
<button type="button" class="btn btn-primary" id="catocery">{{task.category}} </button>
</div>
</div>
{% endfor %}
</div>