Na falta de um site decente e realmente atualizado com os eventos de front-end que vão rolar, dê um pulo aqui ;)
- Quando: 06/10
- Onde: Maringá, PR
- Preço: Em breve
| add_action( 'init', 'register_cpt_habilidade' ); | |
| function register_cpt_habilidade() { | |
| $labels = array( | |
| 'name' => _x( 'Habilidades', 'habilidade' ), | |
| 'singular_name' => _x( 'habilidade', 'habilidade' ), | |
| 'add_new' => _x( 'Adicionar nova', 'habilidade' ), | |
| 'add_new_item' => _x( 'Adicionar nova habilidade', 'habilidade' ), | |
| 'edit_item' => _x( 'Alterar habilidade', 'habilidade' ), |
| <% if @company.errors.any? %> | |
| <div class="alert alert-error"> | |
| <a class="close" data-dismiss="alert">×</a> | |
| <h2><%= pluralize(@company.errors.count, "error") %> prohibited this company from being saved:</h2> | |
| <ul> | |
| <% @company.errors.full_messages.each do |msg| %> | |
| <li><%= msg %></li> | |
| <% end %> | |
| </ul> |
| <body> | |
| <p id="teudo" class="class" rel="stylesheet">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor perspiciatis eligendi doloremque reprehenderit impedit itaque sed rem facere explicabo dolore cupiditate ducimus perferendis inventore. Ducimus minus nam aliquid aliquam eligendi.</p> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th></th> | |
| <th></th> | |
| <th></th> | |
| <th></th> |
| <!doctype html> | |
| <html lang="pt-br"> | |
| <head> | |
| <!-- Dentro da tag <head> colocaremos todos os detalhes do nosso site: | |
| incluindo título, metatags, links e afins --> | |
| <meta charset="UTF-8"> | |
| <title>Meu primeiro site</title> | |
| </head> | |
| <body> | |
| <!-- Todos os elementos colocados dentro da tag <body> serão visualizados no navegador |
| App.Adapter = DS.RESTAdapter.extend | |
| serializer: DS.RESTSerializer.extend | |
| extract: (loader, json, type, record) -> | |
| root = @rootForType(type) | |
| // Embed JSON data in a new object with root element | |
| newJSON = {} | |
| newJSON[root] = json | |
| json = newJSON | |
| // |
| App.PickADate = Ember.View.extend({ | |
| attributes: ['monthsFull', 'monthsShort', 'weekdaysFull', 'weekdaysShort', | |
| 'monthPrev', 'monthNext', 'showMonthsFull', 'showWeekdaysShort', 'today', | |
| 'clear', 'format', 'formatSubmit', 'hiddenSuffix', 'firstDay', 'monthSelector', | |
| 'yearSelector', 'dateMin', 'dateMax', 'datesDisabled', 'disablePicker'], | |
| events: ['onOpen', 'onClose', 'onSelect', 'onStart'], | |
| tagName: 'input', | |
| classNames: 'pickadate', |
| App.PickADate = Ember.View.extend({ | |
| attributes: ['monthsFull', 'monthsShort', 'weekdaysFull', 'weekdaysShort', | |
| 'monthPrev', 'monthNext', 'showMonthsFull', 'showWeekdaysShort', 'today', | |
| 'clear', 'format', 'formatSubmit', 'hiddenSuffix', 'firstDay', 'monthSelector', | |
| 'yearSelector', 'dateMin', 'dateMax', 'datesDisabled', 'disablePicker'], | |
| events: ['onOpen', 'onClose', 'onSelect', 'onStart'], | |
| tagName: 'input', | |
| classNames: 'pickadate', |
WARNING
This gist is outdated! For the most up-to-date information, please see http://emberjs.com/guides/routing/!
An Ember application starts with its main template. Put your header, footer, and any other decorative content in application.handlebars.
<header>
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Ember.js Router Example</title> | |
| <meta name="description" content="Example of a basic Ember.js application with a Router" /> | |
| <meta name="author" content="http://codebrief.com" /> | |
| <!--[if lt IE 9]> | |
| <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> |