Browse Source

Add license to about page

pull/13/head
Thomas 4 years ago
parent
commit
b48185e38f
  1. 4
      CHANGELOG.md
  2. 5
      angular.json
  3. 13
      apps/client/src/app/pages/about/about-page.html

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added the license to the about page
### Changed
- Changed the about page for the new license

5
angular.json

@ -99,6 +99,11 @@
"input": "",
"output": "./"
},
{
"glob": "LICENSE",
"input": "",
"output": "./"
},
{
"glob": "sitemap.xml",
"input": "apps/client/src/assets",

13
apps/client/src/app/pages/about/about-page.html

@ -160,7 +160,7 @@
</div>
</div>
<div class="row">
<div class="mb-5 row">
<div class="col">
<h3 class="mb-3 text-center" i18n>Changelog</h3>
<mat-card class="changelog mb-3">
@ -170,4 +170,15 @@
</mat-card>
</div>
</div>
<div class="row">
<div class="col">
<h3 class="mb-3 text-center" i18n>License</h3>
<mat-card class="mb-3">
<mat-card-content>
<markdown [src]="'LICENSE'"></markdown>
</mat-card-content>
</mat-card>
</div>
</div>
</div>

Loading…
Cancel
Save