-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathindex.pug
44 lines (40 loc) · 1.47 KB
/
index.pug
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
extends ./common/index.pug
mixin thumbnail(ex)
.col-md-4
.thumbnail
a(href=ex.path + "/")
img(src=ex.path + "/" + (ex.thumb || "thumb.jpg"), onerror="var url = 'common/thumb.png'; if (this.src!=url) this.src = url;")
.caption
h3= ex.title
if ex.about.text
.description
p= ex.about.text
block prepend headerButtons
ul.nav.navbar-nav.navbar-right
li.dropdown
a.dropdown-toggle(href="#", data-toggle="dropdown") Resources
span.caret
ul.dropdown-menu(role="menu")
li
a(href="https://github.com/OpenGeoscience/geojs") Source
a(href="https://github.com/OpenGeoscience/geojs/issues") Bugs
a(href="https://opengeoscience.github.io/geojs/apidocs/") Documentation
block mainContent
.jumbotron
.container
h1 Welcome to GeoJS
p GeoJS is a javascript library for visualizing geospatial
| data in a browser. Its flexible API provides users with
| the ability to combine multiple visualizations drawn
| in WebGL, canvas, and SVG into a single dynamic map.
p It is easy to get started with GeoJS. See the tutorials below.
.container-fluid
- var iTutorial = 0;
while iTutorial < tutorials.length
.row
- var i = 0
while i < 3 && iTutorial < tutorials.length
if !tutorials[iTutorial].disabled
- i += 1
+thumbnail(tutorials[iTutorial])
- iTutorial += 1