-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
139 lines (116 loc) · 4.82 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="/js/jquery-1.11.0.js"></script>
<script src="/js/bootstrap.js"></script>
<link rel="stylesheet" type="text/css" href="/stylesheets/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
<link rel="stylesheet" type="text/css" href="/stylesheets/bootstrap-theme.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/font-awesome.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/spec.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/figures.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/stickyfooter.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/ArchitectsDaughter.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/Vollkorn.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/Lobster.css">
<link rel="stylesheet" type="text/css" href="/stylesheets/OpenSans.css">
<link rel="alternate" type="application/rss+xml" title="Spec" href="/feed.xml">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Spec • A new Smalltalk framework</title>
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body class="home">
<div class="wrapper">
<a name="remove_me" class="hash">
<header>
<nav class="navbar navbar-static-top" role="banner">
<div class="container spec-container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand">
<span class="title">Spec</span>
<img class="flake" src="/images/flake72.png" width="72" height="72" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active">
<a href="/" class="nav-a">Overview</a>
</li>
<li class="">
<a href="/docs/home" class="nav-a">Documentation</a>
</li>
<li class="">
<a href="/news" class="nav-a">News</a>
</li>
</ul>
<ul class="nav navbar nav-right">
<li>
<a href="https://github.com/spec-framework" class="button"><small>Follow Spec on </small>GitHub</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container-fluid">
<div id="content-wrapper">
<div class="inner clearfix home_wrapper">
<div class="home">
<p class="home_title">Quickly write and reuse your own user interfaces</p>
</div>
<div class="row">
<div class="col-md-4 col-xs-12">
<div class="home_box">
<h1 class="box_title">Composable</h1>
<p class="box_paragraph">Every single user interface made with Spec can be reused as easily as the basic widgets to compose and reuse as much as possible.</p>
<a href="/docs/initializing/" class="home_link">How to reuse a model <i class="fa fa-hand-o-right"></i></a>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="home_box">
<h1 class="box_title">Customizable</h1>
<p class="box_paragraph">The behaviour of the sub widgets as well as the behaviour of the sub widgets sub widgets can be tweaked to fit all the possible scenarios.</p>
<a href="/docs/interactions/" class="home_link">Customizing sub widgets <i class="fa fa-hand-o-right"></i></a>
</div>
</div>
<div class="col-md-4 col-xs-12">
<div class="home_box">
<h1 class="box_title">Portable</h1>
<p class="box_paragraph">Spec supports multiple rendering backends to define user interfaces once and for all, regardless of the final widget framework.</p>
<a href="/docs/own-model/#the_adapter" class="home_link">How the adapters work <i class="fa fa-hand-o-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="push"></div>
</div>
<div class="footer">
<footer id="footer">
<div class="grid">
<div class="unit one-third center-on-mobiles">
<p class="footer-text">
The contents of this website are © 2014 <a href="http://benjamin.vanryseghem.com">Benjamin Van Ryseghem</a><br/>
under the terms of the <a href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)</a>.
</p>
</div>
</div>
</footer>
</div>
</body>
</html>