This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·57 lines (47 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
---
layout: default
title: Home
published: true
---
<div class="home">
<div class="posts">
<p>This page contains syllabi for coureses taught by <a href="http://kerim.oxus.net/">P. Kerim Friedman</a>, an associate professor in the <a href="http://www.erc.ndhu.edu.tw/">Department of Ethnic Relations & Cultures</a>, at <a href="http://www.ndhu.edu.tw/bin/home.php?Lang=en">National Dong Hwa University</a> in Taiwan. 這個網頁有傅可恩老師的課程大綱。<a href="http://kerim.oxus.net/chinese">傅老師</a>是花蓮國立東華大學<a href="http://www.erc.ndhu.edu.tw/">族群關係與文化學系</a>的副教授。</p>
<h2>General Information</h2>
<ul>
{% assign pages_list = site.pages %}
{% for node in pages_list %}
{% if node.title != null %}
{% if node.layout == "general_info" %}
<li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a></li>
<ul>{{node.notes}}</ul>
{% endif %}
{% endif %}
{% endfor %}
</ul>
<h2>研究所 Graduate Courses</h2>
<ul>
{% assign pages_list = site.pages %}
{% for node in pages_list %}
{% if node.title != null %}
{% if node.layout == "graduate_courses" %}
<li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a></li>
<ul>{{node.notes}}</ul>
{% endif %}
{% endif %}
{% endfor %}
</ul>
<h2>大學系 Undergraduate Courses</h2>
<ul>
{% assign pages_list = site.pages %}
{% for node in pages_list %}
{% if node.title != null %}
{% if node.layout == "undergraduate_courses" %}
<li><a href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a></li>
<ul>{{node.notes}}</ul>
{% endif %}
{% endif %}
{% endfor %}
</ul>
<a href="{{ site.baseurl }}/files">Link to Files</a>
</div>
</div>