-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
61 lines (50 loc) · 1.99 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
58
59
60
61
---
layout: default
---
<div class="home">
<div>
<h1 class="page-heading">Documents</h1>
<ul>
{% for my_page in site.pages %}
{% if my_page.title %}
<li>
<a href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col">
<h1 class="page-heading">Policies</h1>
<ul>
{% for obj in site.policy %}
<li>
<a href="{{ obj.url | prepend: site.baseurl }}">{{ obj.title }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="col">
<h1 class="page-heading">Position Descriptions</h1>
<ul>
{% for obj in site.position_description %}
<li>
<a href="{{ obj.url | prepend: site.baseurl }}">{{ obj.title }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="clearfix">
<h1 class="page-heading">Under review</h1>
<p>The policies listed below have not yet been republished. They are available on the
<a href="https://www.internationaltouch.org/resources/" title="Resources">Resources</a>
section of the FIT website.</p>
<ul>
<li><a href="https://www.internationaltouch.org/media/old-policies/FIT%20Policy%20and%20Procedures.pdf">Policy and Procedures</a></li>
<li><a href="https://www.internationaltouch.org/media/old-policies/Guidelines%20for%20Judiciary%20Hearings%20and%20Appeals.docx">Guidelines for Judiciary Hearings and Appeals</a></li>
<li><a href="https://www.internationaltouch.org/media/old-policies/Touring%20Teams%20&%20Individuals.pdf">Procedure and Protocols for the Exchange of Personnel and/or Touring Teams</a></li>
<li><a href="https://www.internationaltouch.org/media/old-policies/Hosting%20Federation%20Events.pdf">Hosting Federation Events</a></li>
<li><a href="https://www.internationaltouch.org/media/old-policies/Membership%20Criteria%20-%20August%202011.pdf">Membership Criteria</a></li>
</ul>
</div>
</div>