Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
Moved from src/resources so that it is not copied by maven
  • Loading branch information
pkriens authored May 9, 2017
1 parent 0fc14d6 commit 2ad35ad
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions application/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">

<link rel="icon" href=/osgi.enroute.examples.eval/favicon.ico">
<title>OSGi ENROUTE EXAMPLE APPLICATION</title> <link
rel ="stylesheet"
type="text/css"
href="/osgi.enroute.webresource/${bsn}/${Bundle-Version}/*.css"
>

</head>

<body ng-app="osgi.enroute.examples.eval">
<div class="container">

<div class="header">
<ul class="nav nav-pills pull-right">
<li
ng-class="{active: page() == '/'}">
<a href="#/">Home</a>
<li ng-class="{active: page() == '/about'}">
<a href="#/about">About</a>
</ul>

<h3
class="text-muted">
OSGi enRoute Example Application
</h3>
<div
ng-repeat ="alert in alerts"
class ="alert alert-{{alert.type || 'alert'}} alert-dismissible">



<button
type="button"
ng-click='closeAlert($index)'
class="close pull-right">
<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
</button>
</div>

</div>
<div ng-view>
</div>
<div class="footer">
<p>&copy; ${def;Bundle-Vendor;Company} ${tstamp;YYYY}</p>
</div>

</div>
<script src="/osgi.enroute.webresource/${bsn}/${Bundle-Version}/*.js"></script>

</body>
</html>


0 comments on commit 2ad35ad

Please sign in to comment.