-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (59 loc) · 2.7 KB
/
Copy pathindex.html
File metadata and controls
72 lines (59 loc) · 2.7 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
<!doctype html>
<html lang="en">
<head>
<title>Type Link Model</title>
<meta charset="utf-8">
<meta name="description" content="Homepage for the Type-Link-Model (TLM)">
<meta name="author" content="Leo Simons">
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.1/build/pure-min.css"
integrity="sha384-oAOxQR6DkCoMliIh8yFnu25d7Eq/PHS21PClpwjOTeU2jRSq11vu66rf90/cZr47"
crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.1/build/grids-responsive-min.css"
integrity="sha384-e+NM0rMilIXo+lz6+dXhoHMjd2iTSxNsCHpqkvuSBsAhwMDRF/Wn2QRRNaLxTcN/"
crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/font-awesome@4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="box">
<header>
<div class="pure-menu pure-menu-horizontal" style="background-color: black">
<a class="pure-menu-heading">Type-Link-Model (TLM)</a>
<ul class="pure-menu-list" style="float: right">
<li class="pure-menu-item"><a href="ns/" class="pure-menu-link">Namespaces</a></li>
<li class="pure-menu-item"><a href="https://github.com/typelinkmodel/tlm/" class="pure-menu-link"><i class="fa fa-github"></i> GitHub</a></li>
</ul>
</div>
</header>
<section>
<div class="pure-g">
<div class="pure-u-1-24 pure-u-md-3-24 pure-u-lg-4-24 pure-u-xl-5-24">
</div>
<div class="pure-u-22-24 pure-u-md-18-24 pure-u-lg-16-24 pure-u-xl-14-24">
<h1>Type-Link-Model</h1>
<p>
Type-Link-Model (TLM) is a simple modelling technique inspired by Object Role
Modelling that is suitable for working with web APIs and the typical simple
tree structures used in web documents.
You can see an early version of the spec below, then look at the
<a href="https://github.com/typelinkmodel/tlm/">code on github</a> for what is
currently implemented.
</p>
<p>
This is an <em>unfinished hobby project</em>. Use at your own risk.
</p>
</div>
<div class="pure-u-1-24 pure-u-md-3-24 pure-u-lg-4-24 pure-u-xl-5-24">
</div>
</div>
<iframe src="tlm.html">
</iframe>
</section>
<footer>
</footer>
</div>
</body>
</html>