mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
2ca789e36a
WTD-1051.
44 lines
2.2 KiB
HTML
44 lines
2.2 KiB
HTML
<!--
|
|
Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
Administration. All rights reserved.
|
|
|
|
Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
License for the specific language governing permissions and limitations
|
|
under the License.
|
|
|
|
Open MCT Web includes source code licensed under additional open source
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
this source code distribution or the Licensing information page available
|
|
at runtime from the About dialog for additional information.
|
|
-->
|
|
<div class="abs t-about l-about t-about-openmctweb s-about" ng-controller = "AboutController as about">
|
|
<div class="l-logo-holder s-logo-holder">
|
|
<div class="l-logo s-logo s-logo-nasa"></div>
|
|
<div class="l-logo l-logo-app s-logo s-logo-openmctweb"></div>
|
|
</div>
|
|
|
|
<div class="s-text l-content">
|
|
<h1 class="l-title s-title">OpenMCT Web</h1>
|
|
<div class="l-description s-description">
|
|
<p>Open MCT Web, Copyright © 2014-2015, United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All rights reserved.</p>
|
|
<p>Open MCT Web includes source code licensed under additional open source licenses. See the Open Source Licenses file included with this distribution or <a ng-click="about.openLicenses()">click here for licensing information</a>.</p>
|
|
</div>
|
|
<h2>Version Information</h2>
|
|
<ul class="t-info l-info s-info" ng-repeat = "version in about.versions()">
|
|
<li title="{{version.description}}">
|
|
<span class="info version-name">{{version.name}}</span>
|
|
<span class="info version-value">{{version.value}}</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|