forked from sauleh/personal_website_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teaching.html
151 lines (126 loc) · 4.56 KB
/
teaching.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
author_profile: true
---
<!doctype html>
<!--
Minimal Mistakes Jekyll Theme 4.15.2 by Michael Rose
Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
-->
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
<head>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
th {
background-color: #04aa6d;
color: white;
}
</style>
{% include head.html %}
{% include head/custom.html %}
</head>
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
{% include_cached browser-upgrade.html %}
{% include_cached masthead.html %}
<div id="main" role="main">
{% include sidebar.html %}
<div class="archive">
{% unless page.header.overlay_color or page.header.overlay_image %}
<h1 id="page-title" class="page__title">Teaching Assistant</h1>
{% endunless %}
<p style="font-size: 17px; text-align: justify;">
I am really interested in teaching, helping other students, and sharing my knowledge with them. Here is a list of my teaching experiences.
</p>
<!-- <h2>
Teaching Assistant
</h2> -->
<table style="display: inline-table; padding-right: 20px;">
<tr>
<th>Course Name</th>
<th>Instructor</th>
<th>Semester</th>
</tr>
<tr>
<td>Graph Theory</td>
<td>Dr. Farzaneh Ghayour</td>
<td>Fall 2023</td>
</tr>
<tr>
<td>Machine Learning</td>
<td>-</td>
<td>Summer 2023</td>
</tr>
<tr>
<td>Database Design</td>
<td><a class="link-class" href="http://webpages.iust.ac.ir/h_rahmani/">Dr. Hossein Rahmani</a></td>
<td>Spring 2023</td>
</tr>
<tr>
<td>Computational Intelligence</td>
<td><a class="link-class" href="http://webpages.iust.ac.ir/mozayani/">Dr. Nasser Mozayani</a></td>
<td>Fall 2022</td>
</tr>
<tr>
<td>Algorithm Design</td>
<td><a class="link-class" href="https://www.sauleh.ir/">Dr. Sauleh Eetemadi</a></td>
<td>Spring 2022</td>
</tr>
<tr>
<td>Database Design</td>
<td><a class="link-class" href="http://webpages.iust.ac.ir/h_rahmani/">Dr. Hossein Rahmani</a></td>
<td>Spring 2022</td>
</tr>
<tr>
<td>Theory of Languages and Machines</td>
<td><a class="link-class" href="http://webpages.iust.ac.ir/entezari/">Dr. Reza Entezari-Maleki</a></td>
<td>Spring 2022</td>
</tr>
<tr>
<td>Data Transmission</td>
<td><a class="link-class" href="http://webpages.iust.ac.ir/akbari/">Dr. Ahmad Akbari Azirani</a></td>
<td>Spring 2022</td>
</tr>
<tr>
<td>Data Structures</td>
<td><a class="link-class" href="https://www.sauleh.ir/">Dr. Sauleh Eetemadi</a></td>
<td>Fall 2021</td>
</tr>
<tr>
<td>Advanced Programming</td>
<td><a class="link-class" href="https://www.sauleh.ir/">Dr. Sauleh Eetemadi</a></td>
<td>Spring 2021</td>
</tr>
<tr>
<td>Fundamentals of Computer and Programming</td>
<td><a class="link-class" href="https://www.sauleh.ir/">Dr. Sauleh Eetemadi</a></td>
<td>Fall 2020</td>
</tr>
</table>
</div>
</div>
<!-- {% if site.search == true %}
<div class="search-content">
{% include_cached search/search_form.html %}
</div>
{% endif %} -->
<div class="page__footer">
<footer>
{% include footer/custom.html %}
{% include_cached footer.html %}
</footer>
</div>
{% include scripts.html %}
</body>
</html>