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
| <div id="conteudo"> | |
| <div id="artigos"> | |
| <div class="artigo"> | |
| <h2>Titulo do artigo 1</h2> | |
| <p>Postado por administrador em 16/01/2012</p> | |
| <p>Conteudo do artigo</p> | |
| </div> | |
| <div class="artigo"> | |
| <h2>Titulo do artigo 2</h2> |
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 PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> | |
| <head> | |
| <title>Página de HTML</title> | |
| <link rel="stylesheet" href="style.css" type="text/css" /> | |
| </head> | |
| <body> | |
| <div id="corpo"> |
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 PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"> | |
| <head> | |
| <title>Página de HTML</title> | |
| <link rel="stylesheet" href="style.css" type="text/css" /> | |
| </head> | |
| <body> | |
| <div id="corpo"> |
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
| create table contador_de_visitas ( | |
| `id` int not null auto_increment primary key comment 'ID de cada contador', | |
| `data_criacao` timestamp default current_timestamp comment 'Data do acesso', | |
| `contador` int | |
| ); |
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
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Maintainer: | |
| " Amir Salihefendic | |
| " http://amix.dk - [email protected] | |
| " | |
| " Version: | |
| " 5.0 - 29/05/12 15:43:36 | |
| " | |
| " Blog_post: | |
| " http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github |
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
| // administrator/components/com_sigpro/js/script.js:55 | |
| if ( typeof submitform === 'undefined') { | |
| $sig('#adminForm').find('input[name=task]').val(pressbutton); | |
| $sig('#adminForm').submit(); | |
| }else{ | |
| submitform(pressbutton); | |
| } |
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
| // template tag extra fields | |
| $model = K2Model::getInstance('Item', 'K2Model'); | |
| $extra_fields = $model->getItemExtraFields($item->extra_fields, $item); | |
| foreach ($extra_fields as $field) | |
| $itemhtml = str_replace('{'.$field->alias.'}', $field->value, $itemhtml); |
NewerOlder