This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>A simple Backbone testing</title> | |
</head> | |
<body> | |
<script id="userTemplate" type="text/template"> | |
<li><%= id %></li> |
This file contains hidden or 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
<?xml version='1.0' encoding='utf-8'?> | |
<widget id="com.garciaechegaray.app" versionCode="1" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0"> | |
<!--/YourPhonegapProject/www/config.xml--> | |
<name>App Name</name> | |
<description> | |
App Description | |
</description> | |
<author email="[email protected]" href="http://blog.garciaechegaray.com"> | |
App Name | |
</author> |
This file contains hidden or 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$align-types: ("left", "right", "center", "justify"); | |
@for $i from 1 through length($align-types) { | |
$type: nth($align-types, $i); | |
.align-#{$type}{text-align: #{$type} !important;} |
This file contains hidden or 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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
$align-types: ("left", "right", "center", "justify"); | |
@for $i from 1 through length($align-types) { | |
$type: nth($align-types, $i); | |
.align-#{$type}{text-align: #{$type} !important;} |
This file contains hidden or 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
{ | |
"name": "My Project", | |
"version": "0.0.1", | |
"authors": [ | |
"Bruno Garcia <[email protected]>" | |
], | |
"description": "My Project", | |
"license": "MIT", | |
"private": true, | |
"ignore": [ |
This file contains hidden or 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
### Bower ### | |
bower_components | |
.bower-cache | |
.bower-registry | |
.bower-tmp |
This file contains hidden or 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
{ | |
"name": "My Project", | |
"version": "0.0.1", | |
"devDependencies": { | |
"grunt": "~0.4.5", | |
"grunt-bowercopy": "~1.2.0" | |
} | |
} |
This file contains hidden or 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 = function(grunt) { | |
grunt.initConfig({ | |
bowercopy: { | |
// CSS assets | |
css: { | |
options: { | |
destPrefix: 'src/AppBundle/Resources/public/css' | |
}, |
This file contains hidden or 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
{# Main #} | |
{% stylesheets | |
'@AppBundle/Resources/public/sass/main.scss' | |
filter='sass' | |
output='css/main.css' | |
%} | |
<link href="{{ asset_url }}" rel="stylesheet" type="text/css" /> | |
{% endstylesheets %} | |
{# Plugins #} |
This file contains hidden or 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
# Assetic Configuration | |
assetic: | |
filters: | |
sass: | |
style: compressed |
OlderNewer