-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
41 lines (37 loc) · 1.02 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
---
layout: default
title: ACL Name Pronunciations
---
<div class="container">
<h1>Pronunciations.</h1>
<p class="lead">
Names are followed by a dictionary-style gloss with a pronunciation aimed at (American) English speakers.
Ideally, we also include an <a href="https://en.wikipedia.org/wiki/International_Phonetic_Alphabet">IPA pronunciation</a>.
</p>
<div class="container">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Name</th>
<th scope="col">Dictionary gloss</th>
<th scope="col">IPA</th>
</tr>
</thead>
<tbody>
{% for entry in site.data.pronunciations %}
<tr>
<td>
{% if entry.website %}
<a href="{{ entry.website }}">{{ entry.name }}</a>
{% else %}
{{ entry.name }}
{% endif %}
</td>
<td>{% if entry.gloss %}{{ entry.gloss }}{% endif %}</td>
<td>{% if entry.ipa %}{{ entry.ipa }}{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>