-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4faa662
commit b2adbaa
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title> EnOcean Alliance </title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.0.2/ui-bootstrap-tpls.min.js"></script> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular-animate.min.js"></script> | ||
<link rel="stylesheet" href="../../style/bubble.css"> | ||
<link rel="stylesheet" href="../../style/organization.css"> | ||
<script type="text/javascript" src="../../js/bubble.js"></script> | ||
<script type="text/javascript" src="../../js/cormorant.js"></script> | ||
<script type="text/javascript" src="../../js/cuttlefish.js"></script> | ||
<script type="text/javascript" src="../../js/visualisation.js"></script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": { | ||
"schema": "http://schema.org/" | ||
}, | ||
"@graph": [ | ||
{ | ||
"@id": "organization", | ||
"@type": "schema:Organization", | ||
"schema:name": "EnOcean Alliance", | ||
"schema:url": "https://sniffypedia.org/Organization/EnOcean_Alliance/", | ||
"schema:logo": "https://sniffypedia.org/Organization/EnOcean_Alliance/400x400.png", | ||
"schema:sameAs": [ | ||
"https://www.enocean-alliance.org/", | ||
"https://twitter.com/EnOceanAlliance", | ||
"https://www.linkedin.com/company/enoceanalliance/" | ||
] | ||
} | ||
] | ||
} | ||
</script> | ||
</head> | ||
<body ng-app="visualisation"> | ||
<div ng-controller="BubbleCtrl" class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-md-6 bubble-container"> | ||
<bubble ng-if="story" json="story" size="240px" toggle="false"> | ||
</bubble> | ||
</div> | ||
<div class="col-md-6"> | ||
<br> | ||
<pre uib-tooltip="Machine-readable Schema.org & JSON-LD" | ||
tooltip-placement="bottom-right">{{storyString}}</pre> | ||
<p class="text-center"> | ||
<a href="../../" class="btn btn-info btn-sm"> Sniffypedia </a> | ||
<a href="../../about/" class="btn btn-default btn-sm"> About </a> | ||
<a href="../../contribute/" | ||
class="btn btn-default btn-sm"> Contribute </a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<footer class="footer"> | ||
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>. | ||
</footer> | ||
</body> | ||
</html> |