https://github.com/angular/angular
Raw File
Tip revision: 33f812016427d0d124abd1dca661d52de2bb9f4f authored by Igor Minar on 06 April 2018, 23:33:44 UTC
docs: add changelog for 6.0.0-rc.3
Tip revision: 33f8120
resource-list.component.html
<div class="resources-container">
    <div class="l-flex--column">
      <div class="showcase" *ngFor="let category of categories">
        <header class="c-resource-header">
          <a class="h-anchor-offset" id="{{category.id}}"></a>
          <h2>{{category.title}}</h2>
        </header>

        <div class="shadow-1">
          <div *ngFor="let subCategory of category.subCategories">
            <a class="h-anchor-offset" id="{{subCategory.id}}"></a>
            <h3 class="subcategory-title">{{subCategory.title}}</h3>

            <div *ngFor="let resource of subCategory.resources">
              <div class="c-resource" *ngIf="resource.rev">
                <a class="l-flex--column resource-row-link" target="_blank" [href]="resource.url">
                  <div>
                    <h4>{{resource.title}}</h4>
                    <p class="resource-description">{{resource.desc || 'No Description'}}</p>
                  </div>
                </a>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
</div>
back to top