This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved from src/resources so that it is not copied by maven
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
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,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">×</span><span class="sr-only">Close</span> | ||
</button> | ||
</div> | ||
|
||
</div> | ||
<div ng-view> | ||
</div> | ||
<div class="footer"> | ||
<p>© ${def;Bundle-Vendor;Company} ${tstamp;YYYY}</p> | ||
</div> | ||
|
||
</div> | ||
<script src="/osgi.enroute.webresource/${bsn}/${Bundle-Version}/*.js"></script> | ||
|
||
</body> | ||
</html> | ||
|
||
|