You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
609 B

<header ng-controller="HeaderController as header">
<h1>The Sins We Commit</h1>
<p>
Welcome {{header.current_user.email}}
<p>
<nav>
<h2>Navigation</h2>
</nav>
</header>
<main>
<section ng-controller="TransgressionsController as transgressionsCtrl">
<h2>Your Beautiful Transgressions</h2>
<ul>
<li ng-repeat="transgression in transgressionsCtrl.transgressions">
Sin Type: {{transgression.sin_type}}
<br/>
Description: {{transgression.description}}
<br/>
Created: {{transgression.authored_at}}
</li>
</ul>
</section>
</main>