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 lang="pt-br"> | |
... | |
</html> |
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
<button type="submit"> | |
<svg id="search" role="img" aria-describedby="searchIcon" viewBox="0 0 16 16.9"> | |
<title id="searchIcon">Search</title> | |
<path d="M16, 15.7L11.3,11C12.4,9.8,13, 8.2,13,6.5C13"></path> | |
</svg> | |
</button> |
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
<button type="submit"> | |
<svg id="search" viewBox="0 0 16 16.9"> | |
<path d="M16, 15.7L11.3,11C12.4,9.8,13, 8.2,13,6.5C13"></path> | |
</svg> | |
</button> |
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
<form> | |
<label for="email">E-mail</label> | |
<input type="email" id="email" placeholder="insira o seu melhor e-mail" /> | |
</form> |
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
<form> | |
<input type="email" placeholder="insira o seu melhor e-mail" /> | |
</form> |
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
<a href="https://twitter.com/obrunopulis"> | |
<span class="fa fa-twitter" aria-hidden="true"></span> | |
<span class="sr-only">Perfil de Bruno Pulis no twitter</span> | |
</a> |
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
<a href="https://twitter.com/obrunopulis"> | |
<i class="fa fa-twitter"></i> | |
</a> |
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
<img src="/imagens/duck.png" alt="Pato de borracha amarelo olhando fixamente" /> |
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
// remove contact form 7 from all pages, only to contact form. | |
function contactform7_check_dequeue() { | |
$check_cf7 = false; | |
if( is_page( 'contact' ) ) { | |
$check_cf7 = true; | |
} | |
if( ! $check_cf7 ) { | |
wp_dequeue_script( 'contact-form-7' ); |
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
{ | |
"templates":[ | |
{"name": "DEFAULT TEMPLATE", "issuetype-field":"", "projects-field": "", "text":""}, | |
{ | |
"name": "BUG TEMPLATE", | |
"issuetype-field":"Bug", | |
"projects-field": "", | |
"text":"*Sumário*\n<TI>Digite o resumo do problema aqui.</TI>\n\n*Passos para reprodução*\n<TI>Digite os passos para reprodução aqui. Mais detalhes são melhores.</TI>\n\n*Comportamento esperado*\n<TI>Digite o que deveria acontecer aqui.</TI>\n\n*Detalhes adicionais*\n<TI>Digite quaisquer outros detalhes, como exemplos, links para requisitos, etc. Quaisquer critérios que possam ajudar na solução do problema. Anexe capturas de tela, se possível. Mais detalhes são melhores.</TI>"}, | |
{"name": "STORY TEMPLATE", "issuetype-field":"Story", "projects-field": "", "text":"*Story*\nAs a <TI>type of user/persona</TI>, I want <TI>to perform some task</TI>, so that I can <TI>achieve some goal/benefit/value</TI>.\n\n*Details*\n<TI>Enter any details, clarifications, answers to questions, or points ab |
NewerOlder