Skip to content

Commit b955cdb

Browse files
authored
Add files via upload
1 parent 0683cca commit b955cdb

4 files changed

+36
-0
lines changed
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<h2 id="menu-categories-title" class="text-center">Menu Categories</h2>
2+
<div class="text-center">
3+
Substituting white rice with brown rice or fried rice after 3:00pm will be $1.50 for a pint and $2.50 for a quart.
4+
</div>

snippets/category-snippet.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<div class="col-md-3 col-sm-4 col-xs-6 col-xxs-12">
2+
<a href="#" onclick="$dc.loadMenuItems('{{short_name}}');">
3+
<div class="category-tile">
4+
<img width="200" height="200" src="images/menu/{{short_name}}/{{short_name}}.jpg" alt="{{name}}">
5+
<span>{{name}}</span>
6+
</div>
7+
</a>
8+
</div>

snippets/home-snippet.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<div class="jumbotron">
2+
<img src="images/jumbotron_768.jpg" alt="Picture of restaurant" class="img-responsive visible-xs">
3+
</div>
4+
5+
<div id="home-tiles" class="row">
6+
<div class="col-md-4 col-sm-6 col-xs-12">
7+
<a href="#" onclick="$dc.loadMenuCategories();"><div id="menu-tile"><span>menu</span></div></a>
8+
</div>
9+
<div class="col-md-4 col-sm-6 col-xs-12">
10+
<a href="#" onclick="$dc.loadMenuItems({{randomCategoryShortName}});">
11+
<div id="specials-tile"><span>specials</span></div>
12+
</a>
13+
</div>
14+
<div class="col-md-4 col-sm-12 col-xs-12">
15+
<a href="https://www.google.com/maps/place/David+Chu's+China+Bistro/@39.3635874,-76.7138622,17z/data=!4m6!1m3!3m2!1s0x89c81a14e7817803:0xab20a0e99daa17ea!2sDavid+Chu's+China+Bistro!3m1!1s0x89c81a14e7817803:0xab20a0e99daa17ea" target="_blank">
16+
<div id="map-tile">
17+
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3084.675372390488!2d-76.71386218529199!3d39.3635874269356!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c81a14e7817803%3A0xab20a0e99daa17ea!2sDavid+Chu&#39;s+China+Bistro!5e0!3m2!1sen!2sus!4v1452824864156" width="100%" height="250" frameborder="0" style="border:0" allowfullscreen></iframe>
18+
<span>map</span>
19+
</div>
20+
</a>
21+
</div>
22+
</div><!-- End of #home-tiles -->

snippets/menu-items-title.html

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<h2 id="menu-categories-title" class="text-center">{{name}} Menu</h2>
2+
<div class="text-center">{{special_instructions}}</div>

0 commit comments

Comments
 (0)