https://github.com/angular/angular
Raw File
Tip revision: d69ef721d43ec62ea901cfb90d9c4e5252066f72 authored by Pawel Kozlowski on 15 February 2023, 17:30:33 UTC
release: cut the v15.1.5 release
Tip revision: d69ef72
footer.component.html
<div class="grid-fluid">
  <div class="footer-block" *ngFor="let node of nodes">
    <div class="footer-block-heading">{{ node.title }}</div>
    <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-{{ currentYear }}.
</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>
back to top