-
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
1d9e40e
commit 074caa2
Showing
2 changed files
with
61 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,61 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title> DEUTA Controls </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": "DEUTA Controls", | ||
"schema:url": "https://sniffypedia.org/Organization/DEUTA_Controls_GmbH/", | ||
"schema:logo": "https://sniffypedia.org/Organization/DEUTA_Controls_GmbH/320x320.png", | ||
"schema:sameAs": [ | ||
"https://deuta-controls.net/", | ||
"https://www.linkedin.com/company/deuta-controls/" | ||
] | ||
} | ||
] | ||
} | ||
</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> |