mirror of
https://github.com/moparisthebest/mail
synced 2024-12-25 08:48:56 -05:00
25 lines
789 B
HTML
25 lines
789 B
HTML
<div class="content">
|
|
<header>
|
|
<h1>WHITEOUT<span>.IO</span></h1>
|
|
</header>
|
|
|
|
<ul class="nav-primary">
|
|
<li ng-repeat="folder in account.folders" ng-switch="folder.count !== undefined && folder.count > 0">
|
|
<a href="#" ng-click="openFolder(folder); $event.preventDefault()">
|
|
{{folder.type}}
|
|
<span class="label-wrapper" ng-switch-when="true">
|
|
<span class="label label-light">{{folder.count}}</span>
|
|
</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<ul class="nav-secondary">
|
|
<li><a href="#" ng-click="state.account.toggle(true); $event.preventDefault()">Account</a></li>
|
|
<li><a href="http://whiteout.io" target="_blank">About whiteout.io</a></li>
|
|
</ul>
|
|
|
|
<footer>
|
|
{{lastUpdateLbl}} {{lastUpdate | date:'shortTime'}}
|
|
</footer>
|
|
</div> |