Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Landing page for the Series REST-API #382

Merged
merged 15 commits into from
Jun 15, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<module>io</module>
<module>rest</module>
<module>spi</module>
<module>web-resources</module>
</modules>

<organization>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions spi-impl/series/series-dao-webapp/src/main/webapp/landing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Series REST-API</title>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>Series REST-API</h1>
<p>The 52°North Series API provides a thin access layer to series datasets via RESTful Web binding. It provides different output formats like json, pdf or png.</p>
<p><a class="btn btn-primary btn-lg" href="http://52north.github.io/series-rest-api/" role="button">Learn more &raquo;</a></p>
</div>
</div>

<div class="container">
<div class="row">
<div class="col-md-4">
<h2>JSON</h2>
<p>Query the sensor status and get all the metadata you want with a simple REST interface. It is lightweight and can be utilized in many workflows. For example you can get a list of platforms. </p>
<p><a class="btn btn-default" href="/api/v1/platforms/" role="button">Run example query &raquo;</a></p>
</div>
<div class="col-md-4">
<h2>Graphs</h2>
<p>Plot the highly customizable graphs and use it within your apps.</p>
<img style="max-width: 100%; max-height: 100%" src="chart.png">
</div>
<div class="col-md-4">
<h2>And more</h2>
<p>The all sorts of sensor data can be queried with a Sensor REST-API. See the docs for a complete reference.</p>
<p><a class="btn btn-default" href="http://52north.github.io/series-rest-api/" role="button">Explore the docs &raquo;</a></p>
</div>
</div>

<hr>

<footer>
<p>&copy; 2017 52&#176;North.</p>
</footer>
</div>
</body>
</html>
10 changes: 10 additions & 0 deletions web-resources/docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
_site
.DS_Store
.jekyll
.jekyll-metadata
.bundle
.sass-cache
Gemfile
Gemfile.lock
node_modules
package.json
1 change: 1 addition & 0 deletions web-resources/docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

35 changes: 35 additions & 0 deletions web-resources/docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

# Name of your site (displayed in the header)
name: 52°North GmbH

# Short bio or description (displayed in the header)
description: Initiative for Geospatial Open Source Software

# URL of your avatar or profile pic (you could use your GitHub profile pic)
#avatar: https://raw.githubusercontent.com//master/images/jekyll-logo.png

# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
# Used for Sitemap.xml and your RSS feed
url:

# If you're hosting your site at a Project repository on GitHub pages
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: "/docs"

permalink: /:title/

markdown: kramdown

# Use the following plug-ins
gems:
- jekyll-sitemap

# Exclude these files from your production _site
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
- CNAME
Loading