forked from GeoNode/geonode.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (110 loc) · 4.23 KB
/
index.html
File metadata and controls
113 lines (110 loc) · 4.23 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
---
layout: base
title: GeoNode
---
<section class="banner">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="col-md-6 col-lg-6 col-sm-6 col-xs-6">
<h1>Open Source Geospatial Content Management System</h1>
<p>
GeoNode is a web-based application and platform
for developing geospatial information systems (GIS)
and for deploying spatial data infrastructures (SDI).
</p>
<p>
It is designed to be extended and modified, and can be integrated into existing platforms.
</p>
<p>
<a href="/blog/2015/11/19/geonode-2.4-released/" class="btn btn-md btn-success">GeoNode 2.4 is out!</a>
</p>
<div class="promo-links">
<a title="OSGeo Project in Incubation" href="http://osgeo.org"><img style="background-color:white;" alt="OSGeo Project in Incubation" src="https://svn.osgeo.org/osgeo/marketing/logo/png8/150/OSGeo_incubation.png"/></a>
<a title="FOSS4G Conference" href="http://2016.foss4g.org"><img style="background-color:white;" alt="FOSS4G Conference" src="https://svn.osgeo.org/osgeo/foss4g/2016/marketing/logo/foss4g-logo_150x45px.png"/></a>
</div>
</div>
<div class="col-md-6 col-lg-6 col-sm-6 col-xs-6">
<img src="static/img/hero_img.png" alt="" class="hero-img" />
</div>
</div>
</div>
</div>
</section>
<section class="body">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="box box-users">
<a href="user_features.html" class="header-link">
<header class="box-header">
<h2>For Users</h2>
</header>
</a>
<ul class="unstyled">
<li>Browse and search for geospatial data and web services</li>
<li>Upload, manage, and share geospatial data</li>
<li>Create and share interactive maps</li>
<li>Collaborate and interact with other users</li>
</ul>
<a href = "user_features.html" class="btn btn-success">Take the Tour</a>
</div>
</div>
<div class="col-md-4">
<div class="box box-devs">
<a href="dev_features.html" class="header-link">
<header class="box-header">
<h2>For Developers</h2>
</header>
</a>
<ul class="unstyled">
<li>Developed with Django</li>
<li>Twitter Bootstrap and jQuery client implementation</li>
<li>Built on stable, mature open source geospatial projects</li>
<li>APIs for customization and connection</li>
<li>Seamless integration with third-party Django apps</li>
</ul>
<a href = "dev_features.html" class="btn btn-success">Take the Tour</a>
</div>
</div>
<div class="col-md-4">
<div class="box box-admins">
<a href="admin_features.html" class="header-link">
<header class="box-header">
<h2>For Admins</h2>
</header>
</a>
<ul class="unstyled">
<li>Reliable, scalable platform for deploying spatial data infrastructure</li>
<li>Complete framework for OGC-compliant web services</li>
<li>Metadata management and aggregation platform</li>
<li>Comprehensive security framework</li>
</ul>
<a href = "admin_features.html" class="btn btn-success">Take the Tour</a>
</div>
</div>
</div>
</div>
</section>
<section class="blog-posts">
<div class="container">
<div class="row">
{% for post in site.posts limit:2 %}
<div class="post-preview col-md-5">
<div class="col-md-6">
<img src="{{ post.image }}">
</div>
<div class="col-md-6">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="post-date">{{ post.date | date: "%B %d, %Y" }}</span>
{% if post.content contains '<!--break-->' %}
<a href="{{ post.url }}">read more</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% assign important_links = 'true' %}
{% include footer.html %}