Initial commit. Modified the Meteor todos app to create the Petit Teton data tracking app. Has working data for sales. Requires a Mongo database.
This commit is contained in:
20
imports/ui/Menu.html
Normal file
20
imports/ui/Menu.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<template name="Menu">
|
||||
<div id="menu">
|
||||
<a class="option" href="/sales">
|
||||
<i class="fa fa-usd"></i>
|
||||
<p>Sales</p>
|
||||
</a>
|
||||
<a class="option" href="/prices">
|
||||
<i class="fa fa-usd"></i>
|
||||
<p>Prices</p>
|
||||
</a>
|
||||
<a class="option" href="/items">
|
||||
<i class="fa fa-sitemap"></i>
|
||||
<p>Items</p>
|
||||
</a>
|
||||
<a class="option" href="/configMenu">
|
||||
<i class="fa fa-cog"></i>
|
||||
<p>Settings</p>
|
||||
</a>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user