Skip to content

Commit

Permalink
add some basic templates
Browse files Browse the repository at this point in the history
  • Loading branch information
danshultz committed Jan 8, 2015
1 parent 3be446c commit a1bd5ab
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 3 deletions.
12 changes: 12 additions & 0 deletions app/templates/accounts.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="left-column accounts">
<h3>Accounts</h3>
<ul class='account-list'>
<li>My Account - $500</li>
<li>My Other Account - $200</li>

</ul>
</div>

<div class="right-column data">
{{ outlet }}
</div>
1 change: 1 addition & 0 deletions app/templates/accounts/index.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h2>Pick Your Account From The Right</h2>
22 changes: 22 additions & 0 deletions app/templates/accounts/transactions.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<h2>Transactions</h2>

<div class="transactions">
<table>
<thead>
<tr>
<td class="transactions-date">Date</td>
<td class="transactions-description">Description</td>
<td class="transactions-category">Category</td>
<td class="transactions-amount">Amount</td>
</tr>
</thead>
<tbody>
<tr>
<td>Mon March 15 2014</td>
<td>My Transaction</td>
<td></td>
<td>Amount</td>
</tr>
</tbody>
</table>
</div>
9 changes: 6 additions & 3 deletions app/templates/application.hbs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<h2 id='title'>Welcome to Ember.js</h2>

{{outlet}}
<div class="header">
<div class="title">Double Mint</div>
</div>
<div class="container content">
{{outlet}}
</div>

0 comments on commit a1bd5ab

Please sign in to comment.