akatov / ng-layout

simple reusable layouts for AngularJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>

About

simple reusable layouts for AngularJS


Languages

Language:JavaScript 100.0%