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
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<title>{title_for_layout}</title> | |
{css_for_layout} | |
{js_for_layout} | |
<!--[if lt IE 8]><link rel="stylesheet" href="assets/css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]--> | |
</head> | |
<body> |
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
<?php | |
class MY_Controller extends CI_Controller | |
{ | |
# public $layout = 'default'; | |
public $title = 'Unesc - Universidade do Extremo Sul Catarinense'; | |
public $css = array('application','libs/blueprint/screen'); | |
public $js = array('application','libs/jquery-1.6.2.min','libs/modernizr-2.0.6'); | |
public $data = array(); | |
public $view = TRUE; |
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
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); | |
class Layout | |
{ | |
public $base_url; | |
public function initx(){ | |
return 'ok!'; | |
} | |
/** | |
* Metodo que executa as implementacoes. |
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
<a id='like_12' href='#' onclick='function(this)'>curti!</a> | |
<a id='like' data-speaker-id='12' href='#'>curti!</a> | |
$('#like').live('click', function(event){ | |
speaker_id = $(this).attr('data-speaker_id'); | |
sendRequest('/like',{speaker:speaker_id}, | |
'#vote_'+speaker_id); | |
return false; | |
}); |
NewerOlder