-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (46 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TED Talks Vocabulary</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>
<h1>TED Talks Vocabulary</h1>
<div class="row">
<div class="col-xs-2"><strong>Source:</strong></div>
<div class="col-xs-6"><i class="fa fa-google" aria-hidden="true"></i> Google</div>
</div>
<div class="row">
<div class="col-xs-2"><strong>Code:</strong></div>
<div class="col-xs-6"><a href="https://github.com/mazenbesher/Technical_English"><i class="fa fa-github" aria-hidden="true"></i> Github</a></div>
</div>
<div class="row">
<div class="col-xs-2"><strong>Anki apkg:</strong></div>
<div class="col-xs-6"><a href="res/voc/anki.apkg"><i class="fa fa-download" aria-hidden="true"></i> Download</a></div>
</div>
</p>
<ol class="list-group" id="talks">
<p>Loading...</p>
</ol>
<script id="talk_tmp" type="x-tmpl-mustache">
<li class='talk'>
<p><a target="_blank" href="{{link}}">
<h4>{{title}}</h4><br>
<img class="img-thumbnail" alt="200x200" style="width: 400px; height: 225px;" src="res/img/bg/{{num}}.jpg"
data-holder-rendered="true">
</a></p>
<ol id="ted{{num}}_voc">Loading ...</ol>
</li>
</script>
<script id="word_tmp" type="x-tmpl-mustache">
<li><span class="keyword">{{keyword}}:</span> <span class="definition">{{definition}}</span><br></li>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js"></script>
<script src="https://use.fontawesome.com/091394df71.js"></script>
<script src="script.js"></script>
</body>
</html>