This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Shopping Cart</h1> | |
<div class="shopping-cart"> | |
<div class="column-labels"> | |
<label class="product-image">Image</label> | |
<label class="product-details">Product</label> | |
<label class="product-price">Price</label> | |
<label class="product-quantity">Quantity</label> | |
<label class="product-removal">Remove</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li ng-repeat="item in items | orderObjectBy:'color':true">{{ item.color }}</li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (grunt) -> | |
grunt.initConfig | |
# Copy Font Awesome files to /fonts directory | |
copy: | |
fonts: | |
files: [ | |
expand: true | |
cwd: 'bower_components/font-awesome/fonts' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notifications: | |
webhooks: | |
urls: | |
- https://api.ghostinspector.com/v1/suites/[suite-id]/execute/?userId=[user-id]&apiKey=[api-key] | |
on_success: always | |
on_failure: never |