forked from dojo/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (158 loc) · 3.44 KB
/
index.html
File metadata and controls
158 lines (158 loc) · 3.44 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<html>
<!DOCTYPE html>
<head>
<script src="https://use.fontawesome.com/f0f61fe257.js"></script>
<style media="screen">
html, body {
margin: 0;
width: 100%;
height: 100%;
font-family: Lato, sans-serif;
}
h1, h2, h3 {
margin: 0;
font-weight: normal;
}
.row {
max-width: 1150px;
margin: 0 auto;
}
nav {
height: 86px;
background: #fff;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
ul li {
display: inline-block;
}
nav ul li {
line-height: 86px;
font-size: 15px;
margin-left: 30px;
}
a {
text-decoration: none;
}
nav a {
text-transform: uppercase;
color: #f02541;
}
nav img {
position: relative;
top: 24px;
height: 46px;
}
.pull-right {
float: right;
}
.heading {
text-align: center;
background: linear-gradient(141deg,#fc5b3a 0,#f02541 100%);
color: #fff;
padding: 3rem 0 1.5rem;
}
.heading h1 {
color: #fff;
font-size: 67.5px;
font-weight: 300;
margin: 0 0 1rem;
}
a.download {
font-weight: bold;
padding: 15px 60px;
margin: 40px 0px;
border: 2px solid #fff;
border-radius: 40px;
color: #fff;
display: inline-block;
text-transform: uppercase;
transition: background .3s,color .3s;
}
.download:hover {
background: #fff;
color: #f02541;
}
p {
font-family: Merriweather, serif;
font-size: 20px;
}
.examples {
background: #353535;
padding: 2rem;
text-align: center;
color: #fff;
}
.examples h2 {
color: #fc5b3a;
font-size: 22.5px;
text-transform: uppercase;
margin-bottom: 40px;
}
.examples ul li {
display: inline-block;
max-width: 250px;
border: 2px solid #fff;
border-radius: 20px;
margin: 0 10px;
height: 210px;
box-sizing: border-box;
overflow: hidden;
}
.examples ul li a {
color: #fff;
display: block;
padding: 20px;
}
.examples h3 {
margin: 10px 0;
text-transform: uppercase;
}
</style>
</head>
<body>
<nav>
<div class="row">
<img src="https://dojotoolkit.org/documentation/tutorials/1.10/gfx/images/gfxlogo.png">
<ul class='pull-right'>
<li><a href='http://dojotoolkit.org/download' target="blank">get dojo</a></li>
<li><a href='http://dojotoolkit.org/documentation' target="blank">docs</a></li>
<li><a href='http://dojotoolkit.org/community' target="blank">community</a></li>
<li><a href='http://dojotoolkit.org/community/roadmap' target="blank">roadmap</a></li>
<li><a href='http://dojotoolkit.org/blog' target="blank">blog</a></li>
</ul>
</div>
</nav>
<section class="heading">
<div class="row">
<h1>Dojo 2 Examples</h1>
<p>Use these examples to learn about the Dojo 2 toolkit and to get started with your own app</p>
<a href="https://github.com/dojo/meta" class="download" target='blank'>Get Dojo</a>
</div>
</section>
<section class="examples">
<div class="row">
<h2>Examples</h2>
<ul>
<li>
<a href="./todo-mvc/">
<i class="fa fa-check-square-o fa-3x"></i>
<h3>TodoMVC</h3>
<p>A Dojo 2 implementation of TodoMVC</p>
</a>
</li>
<li>
<a href="./todo-mvc-kitchensink/">
<i class="fa fa-wrench fa-3x"></i>
<h3>todo kitchen sink</h3>
<p>A more feature-rich TodoMVC implementation</p>
</a>
</li>
</ul>
</div>
</section>
</body>
</html>