-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmdviewer.html
More file actions
121 lines (119 loc) · 5.49 KB
/
mdviewer.html
File metadata and controls
121 lines (119 loc) · 5.49 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>CLDF - Cross-Linguistic Data Formats - Examples</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="text/javascript" src="https://underscorejs.org/underscore-min.js"></script>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<link rel="stylesheet" href="stylesheets/mdviewer.css">
<meta name="viewport" content="width=device-width">
</head>
<body class="site">
<header class="site-header">
<nav>
<div class="sticky-nav">
<div class="container-nav">
<div class="nav-container">
<div class="navbar-brand"><a href="https://cldf.clld.org">
<img width="150" src="logos/logo_straight.png" alt="CLDF">
</a></div>
<div class="navbar-nav nav-mobile">
<a class="nav-item nav-link btn btn-nav" href="/">Home</a>
<a class="nav-item nav-link btn btn-nav" href="https://github.com/cldf/cldf">Specification</a>
<a class="nav-item nav-link btn btn-nav" href="v1.0/terms.rdf">Ontology</a>
<a class="nav-item nav-link btn btn-nav"
href="/examples.html">Examples</a>
</div>
<div class="navbar-nav nav-main">
<a class="nav-item nav-link" href="/">Home</a>
<a href="https://github.com/cldf/cldf" class="nav-item nav-link">Specification</a>
<a href="v1.0/terms.rdf" class="nav-item nav-link">Ontology</a>
<a class="nav-item nav-link active"
href="/examples.html">Examples</a>
</div>
</div>
</div>
</div>
</nav>
</header>
<main class="site-content">
<section class="pad-top">
<div class="container">
<h2 class="headline text-center">CLDF Metadata Viewer</h2>
</div>
</section>
<section class="section-main">
<div class="container pad-top">
<div class="service-flexrow">
<div class="column-33 gray-box">
<blockquote class="blockquote-info">
<p>Upload a CLDF metadata file from your computer to view its content.</p>
<input type="file" id="file" name="file" />
</blockquote>
</div>
<div class="column-66 gray-box">
<div id="metadata">No file selected</div>
</div>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<!-- expanded_footer -->
<div class="footer">
<div class="container flex-footer">
<div class="f-links f-item">
<h2>CLDF Specification</h2>
<ul class="footer-links">
<li><a href="https://github.com/cldf/cldf/zipball/master">Download
<strong>ZIP File</strong></a></li>
<li><a href="https://github.com/cldf/cldf/tarball/master">Download
<strong>TAR Ball</strong></a></li>
<li><a href="https://github.com/cldf/cldf">View On <strong>GitHub</strong></a>
</li>
</ul>
</div>
<div class="f-about f-item">
<h2>About</h2>
<p>
CLDF is an initiative by the Glottobank consortium with support from the
Max Planck Institute for Evolutionary Anthropology and the ERC project
Computer-Assisted Language Comparison.
</p>
<table style="width: 100%">
<tr>
<td style="width: 33%; text-align: left; padding-top: 10px;">
<a href="http://calc.digling.org" style="border: none;">
<img src="logos/European_Research_Council_logo.svg" alt="erc-logo" style="width:100px;"/>
</a>
</td>
<td style="width: 33%; text-align: center;">
<a href="http://glottobank.org" style="border: none;">
<img src="logos/glottobank.png" alt="" style="width:100px;"/>
</a>
</td>
<td style="width: 33%; text-align: right; padding-top: 10px;">
<a href="http://www.eva.mpg.de/" style="border: none;">
<img src="logos/max-planck-logo.svg" alt="mpi-logo" style="width:100px;"/>
</a>
</td>
</tr>
</table>
</div>
<div class="f-contact f-item">
<!-- Contact Us -->
<h2>Contact Info</h2>
<span class="footer-address">Robert Forkel</span><br/>
<span class="footer-address" style="font-family: monospace">[email protected]</span>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="javascripts/mdviewer.js"></script>
</body>
</html>