-
Notifications
You must be signed in to change notification settings - Fork 2
/
Resources.html
67 lines (66 loc) · 2.54 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
66
67
---
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> See <a href="{{site.url}}/{{site.baseurl}}/syllabus">Syllabus</a> for more information.</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%}
{% endfor %}
</ul>
</div>
<br><hr><br>
<div class="wrap">
<h2 class="standard-title" id="Lecture Slides">Lecture Slides</h2>
<p> See <a href="{{site.url}}/{{site.baseurl}}/syllabus">Syllabus</a> for more information.</p>
<ul>
{% for item in site.data.resources.lectures.lecture %}
<li>{{item.lec}}<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">Online 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>
<div class="wrap">
<h2 class="standard-title" id="Misc Links">Misc Links</h2>
<ul style="list-style-type:square;">
{% for item in site.data.resources.Misc.misc %}
<li><a href="{{item.link}}" target="_blank">{{item.topic}}</a></li>
{% endfor %}
</ul>
</div>
<hr><br>
</section>
</main>