Used to provide structural templates.
Pattern
t-template-name
t-template-name--modifier-name
t-template-name__subcomponent-name--subcomponent-modifier-name
(function($) { | |
// Used by dateinput | |
$.expr = {':': {}}; | |
// Used by bootstrap | |
$.support = {}; | |
// Used by dateinput | |
$.fn.clone = function(){ | |
var ret = $(); |
{ | |
"estados": [ | |
{ | |
"sigla": "AC", | |
"nome": "Acre", | |
"cidades": [ | |
"Acrelândia", | |
"Assis Brasil", | |
"Brasiléia", | |
"Bujari", |
MIT License | |
=========== | |
Copyright (c) 2009–2011 | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
/*! | |
* <style scoped> shim | |
* http://github.com/richtr | |
* | |
* Copyright 2012 Rich Tibbett | |
* Released under the MIT license | |
* http://opensource.org/licenses/MIT | |
* | |
* Date: 8th November 2012 | |
*/ |
// app/views/libary/book.coffee | |
class App.BookView extends Backbone.View | |
tagName: 'li' | |
className: 'book' | |
template: JST['app/templates/library/book'] | |
events: | |
'click a': 'addToReadingList' | |
render: -> |
@mixin size($height: auto, $width: auto, $display: block ) | |
display: $display | |
height: $height | |
width: $width | |
@mixin square($size: auto, $display: block ) | |
+size($size, $size, $display) | |
@mixin absLT($left: 0, $top: 0 ) | |
left: $left |
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<title>P&B</title> | |
<style> | |
.imageWrap { | |
width: 500px; | |
margin: 100px auto; | |
position: relative; |