This commit improves how sentences are broken up into lines in the footer (due to the limited max-width of the content) by moving the license references in a separate paragraph. Before: ![footer before][1] After: ![footer after][2] [1]: https://user-images.githubusercontent.com/8604205/108595211-593ed000-7387-11eb-8ee5-f13c8bf522f4.png [2]: https://user-images.githubusercontent.com/8604205/108595214-5a6ffd00-7387-11eb-9a9d-dbaa2175f51f.png PR Close #40944
22 lines
590 B
HTML
22 lines
590 B
HTML
<div class="grid-fluid">
|
|
<div class="footer-block" *ngFor="let node of nodes">
|
|
<h3>{{node.title}}</h3>
|
|
<ul>
|
|
<li *ngFor="let item of node.children">
|
|
<a class="link" [href]="item.url" [title]="item.tooltip || item.title">{{ item.title }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
Super-powered by Google ©2010-2021.
|
|
</p>
|
|
<p>
|
|
Code licensed under an <a href="license" title="License text">MIT-style License</a>.
|
|
Documentation licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
|
|
</p>
|
|
<p>
|
|
Version {{versionInfo?.full}}.
|
|
</p>
|