12345678910111213141516171819202122232425262728293031323334353637 |
- <div layout="column" layout-fill layout-align="top" angular-busy="appUtils.cgBusy('home.home')">
- <div layout="column" layout-align=" center">
- <p class="newline-text article-text">{{ item.text }}</p>
- </div>
- <div layout="row">
- <div flex="70">
- <md-table-container>
- <table md-table>
- <thead md-head>
- <tr md-row>
- <th md-column>{{ itemType + '.fields.property' | translate }}</th>
- <th md-column>{{ itemType + '.fields.value' | translate }}</th>
- </tr>
- </thead>
- <tbody md-body>
- <tr md-row ng-repeat="field in item.fields track by $index">
- <td md-cell>
- {{ itemType + '.fields.properties.' + field.property | translate }}
- </td>
- <td md-cell>
- {{ field.value }}
- </td>
- </tr>
- </tbody>
- </table>
- </md-table-container>
- </div>
- <div flex="30">
- <div layout="column" layout-align=" center">
- <img class="article-picture" ng-src="{{item.pictureUrl}}" />
- </div>
- <div layout="column" layout-align=" center">
- <p class="newline-text article-picture-caption">{{ item.pictureCaption }}</p>
- </div>
- </div>
- </div>
- </div>
|