mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
06a887a96e
WTD-1036 Added file to gen LICENSES.md content; Added LICENSES.md file to repo
21 lines
949 B
HTML
21 lines
949 B
HTML
<div ng-controller="LicenseController as lc" class="abs l-about l-standalone s-text s-md-export">
|
|
<h1># Open MCT Web Licenses</h1>
|
|
<h2>## Apache License</h2>
|
|
<mct-include key="'license-apache'"></mct-include>
|
|
|
|
<h2>## Software Components Licenses</h2>
|
|
<p>This software includes components released under the following licenses:</p>
|
|
<div class="l-license-software" ng-repeat="license in lc.licenses()">
|
|
<p>### {{license.name}}</p>
|
|
<p>#### Info</p>
|
|
<p>* Link: {{license.website}}</p>
|
|
<p>* Version: {{license.version}}</p>
|
|
<p>* Author<span ng-show="license.author.indexOf(',') > 0">s</span>: {{license.author}}</p>
|
|
<p>* Description: {{license.description}}</p>
|
|
<p>#### License</p>
|
|
<p ng-show="license.copyright.length > 0">{{license.copyright}}</p>
|
|
<mct-include key="license.license"></mct-include>
|
|
<p> </p>
|
|
<p>---</p>
|
|
</div>
|
|
</div> |