generated from Atharva-Chandak/orca_web_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.html
65 lines (65 loc) · 2.79 KB
/
Resources.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
layout: home
permalink: /resources/
---
<!--Resources for students-->
<main class="index-page" >
<section class="page-head ">
<div class="wrap">
<div class="head-decor">
<h1 class="head-title">Resources</h1>
</div>
</div>
</section>
<hr><br>
<section class="standard-text ">
<div class="wrap">
<p>The primary resources for this course are shared below.</p>
</div>
<div class="wrap">
<h2 class="standard-title" id="Assignments">Assignments</h2>
<p>All the ongoing/completed assignments are present here. Note that: <ul><li>Only tutorial session should be used for the discussion</li>
<li>Before discussing with TAs (what to do in the project), understand your problem statement and data well.</li>
<li>Do not ask TAs to validate your approach.</li></ul>
See <a href="{{site.url}}/{{site.baseurl}}/syllabus">Syllabus</a> for more information and detailed breakup for the vourse evaluation.</p>
<ul class="lists two-col animate-3" resource="homeworks">
{% for item in site.data.resources.assign.assignments %}
{% if item.link =='' %}
<li>{{item.name}}</li>
{% else %}
<li><a href="{{item.link}}" target="_blank">{{item.name}}</a></li>
{%endif%}
{% if item.description !='' %}
<p>{{item.description}}</p>
{%endif%}
{% endfor %}
</ul>
</div>
<br><hr><br>
<div class="wrap">
<h2 class="standard-title" id="Lecture Slides">Tutorials</h2>
<ul>
{% for item in site.data.resources.tutorials.tutorial %}
<li><h3 class="standard-title" id="Assignments">{{item.tut}}</h3>
<span style="text-align:left;">
By: {{item.author}} <span style="float:right;"> Date: {{item.date}} </span>
</span><hr><br>
{% for element in item.resources %}
<a href="{{element.resource.link}}" target="_blank">[{{element.resource.type}}]</a>
{% endfor %}
</li>
{% endfor %}
</ul>
</div>
<br><hr><br>
<div class="wrap">
<h2 class="standard-title" id="Online Resources">Other Resources</h2>
<ul style="list-style-type:square;">
{% for item in site.data.resources.online.resource %}
<li><a href="{{item.link}}" target="_blank">{{item.topic}}</a></li>
{% endfor %}
</ul>
</div>
<br><hr><br>
</section>
</main>