Skip to content
This repository has been archived by the owner on May 20, 2022. It is now read-only.

Latest commit

 

History

History
31 lines (27 loc) · 491 Bytes

README.md

File metadata and controls

31 lines (27 loc) · 491 Bytes

Angular layout directive

Bitdeli Badge

Usage

layout.html

<table>
  <tr>
    <td>
      <yield content_for="left">
    </td>
    <td>
      <yield content_for="right">
    </td>
  </tr>
</table>

main.html

<ng-layout src="layout.html">
  <div content_for="left">
    Hello
  </div>

  <div content_for="right">
    {{ name }}
  </div>
</ng-layout>