diariodeumjudas

Theme 50

Jun 1st, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.96 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2.  
  3. <head>
  4.  
  5. <!-- DEFAULT VARIABLES -->
  6. <meta name="if:Hidden Tags" content="1"/>
  7. <meta name="if:Trescolunas" content="1"/>
  8. <meta name="color:background" content="#ffffff"/>
  9. <meta name="color:link" content="#000000" />
  10. <meta name="color:hoverlink" content="#396086" />
  11. <meta name="color:text" content="#777" />
  12. <meta name="color:post" content="#ffffff" />
  13. <meta name="color:scrollbar" content="#000000"/>
  14. <meta name="color:linkbg" content="#ffffff" />
  15. <meta name="color:linktext" content="#ffffff" />
  16. <meta name="color:frase" content="#8d8d8d" />
  17. <meta name="color:page" content="#eeeeee" />
  18. <meta name="color:fundoask" content="#000000" />
  19. <meta name="color:sidebar" content="#ffffff" />
  20.  
  21. <meta name="image:background" content="" />
  22.  
  23. <meta name="image:sidebar" content="http://static.tumblr.com/j0b62rm/FUGmeznci/tumblr_men2qcw7oe1rck8x0o1_500_-_c__pia.jpg"/>
  24.  
  25. <meta name="text:frase" content="Despiértate absurda," />
  26.  
  27. <meta name="text:link1" content="/" />
  28. <meta name="text:Link1 Title" content="link" />
  29. <meta name="text:Link2" content="/" />
  30. <meta name="text:Link2 Title" content="link" />
  31. <meta name="text:Link3" content="/" />
  32. <meta name="text:Link3 Title" content="link" />
  33. <meta name="text:Link4" content="/" />
  34. <meta name="text:Link4 Title" content="link" />
  35. <meta name="text:Link5" content="/" />
  36. <meta name="text:Link5 Title" content="link" />
  37. <meta name="text:Link6" content="/" />
  38. <meta name="text:Link6 Title" content="link" />
  39.  
  40.  
  41. <script type="text/javascript"
  42. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  43.  
  44. <script>
  45.  
  46.  
  47.  
  48. $(document).ready(function() {
  49.  
  50. //
  51.  
  52.  
  53.  
  54. //When you click on a link with class of poplight and the href starts with a #
  55.  
  56. $('a.poplight[href^=#]').click(function() {
  57.  
  58. var popID = $(this).attr('rel'); //Get Popup Name
  59.  
  60. var popURL = $(this).attr('href'); //Get Popup href to define size
  61.  
  62.  
  63.  
  64. //Pull Query & Variables from href URL
  65.  
  66. var query= popURL.split('?');
  67.  
  68. var dim= query[1].split('&');
  69.  
  70. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  71.  
  72.  
  73.  
  74. //Fade in the Popup and add close button
  75.  
  76. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  77.  
  78.  
  79. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  80.  
  81. var popMargTop = ($('#' + popID).height() + 80) / 2;
  82.  
  83. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  84.  
  85.  
  86.  
  87. //Apply Margin to Popup
  88.  
  89. $('#' + popID).css({
  90.  
  91. 'margin-top' : -popMargTop,
  92.  
  93. 'margin-left' : -popMargLeft
  94.  
  95. });
  96.  
  97.  
  98.  
  99. //Fade in Background
  100.  
  101. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  102.  
  103. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  104.  
  105.  
  106.  
  107. return false;
  108.  
  109. });
  110.  
  111.  
  112.  
  113. //Close Popups and Fade Layer
  114.  
  115. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  116.  
  117. $('#fade , .popup_block').fadeOut(function() {
  118.  
  119. $('#fade, a.close').remove(); //fade them both out
  120.  
  121. });
  122.  
  123. return false;
  124.  
  125. });
  126.  
  127. });
  128.  
  129. </script>
  130. <script>
  131. function click() {
  132. if (event.button==2||event.button==3) {
  133. oncontextmenu='return false';
  134. }
  135. }
  136. document.onmousedown=click
  137. document.oncontextmenu = new Function("return false;")
  138. </script>
  139. <script type="text/javascript" language="Javascript">
  140. <!-- Begin
  141. document.oncontextmenu = function(){return false}
  142. // End -->
  143. </script>
  144.  
  145. <script type="text/javascript">
  146. function disableSelection(target){
  147. if (typeof target.onselectstart!="undefined") //IE route
  148. target.onselectstart=function(){return false}
  149. else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
  150. target.style.MozUserSelect="none"
  151. else //All other route (ie: Opera)
  152. target.onmousedown=function(){return false}
  153. target.style.cursor = "default"
  154. }
  155. </script>
  156.  
  157. <script type="text/javascript">
  158.  
  159. jQuery(document).ready(function() {
  160.  
  161. jQuery(".content").hide();
  162.  
  163. //toggle the componenet with class msg_body
  164.  
  165. jQuery(".heading").click(function()
  166.  
  167. {
  168.  
  169. jQuery(this).next(".content").slideToggle(500);
  170.  
  171. });});
  172.  
  173. </script>
  174.  
  175. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  176. <!--[if IE]>
  177. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  178. <![endif]-->
  179.  
  180. <link href='http://fonts.googleapis.com/css?family=Annie+Use+Your+Telescope' rel='stylesheet' type='text/css'>
  181. <link href='http://fonts.googleapis.com/css?family=Advent+Pro' rel='stylesheet' type='text/css'>
  182. <link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>
  183. <link href='http://fonts.googleapis.com/css?family=Qwigley' rel='stylesheet' type='text/css'>
  184. <link href='http://fonts.googleapis.com/css?family=ABeeZee|Kameron|Muli|Almendra' rel='stylesheet' type='text/css'>
  185. <link href='http://fonts.googleapis.com/css?family=Give+You+Glory' rel='stylesheet' type='text/css'>
  186. <link href='http://fonts.googleapis.com/css?family=Swanky+and+Moo+Moo' rel='stylesheet' type='text/css'>
  187. <link href='http://fonts.googleapis.com/css?family=Lovers+Quarrel' rel='stylesheet' type='text/css'>
  188. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  189. <link href='http://fonts.googleapis.com/css?family=Oregano' rel='stylesheet' type='text/css'>
  190. <link href='http://fonts.googleapis.com/css?family=Quantico' rel='stylesheet' type='text/css'>
  191. <link href='http://fonts.googleapis.com/css?family=Tangerine:400,700' rel='stylesheet' type='text/css'>
  192. <link href='http://fonts.googleapis.com/css?family=Average+Sans' rel='stylesheet' type='text/css'>
  193. <link href='http://fonts.googleapis.com/css?family=Wire+One' rel='stylesheet' type='text/css'>
  194. <link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
  195.  
  196. <title>{Title}</title>
  197. <link rel="shortcut icon" href="{Favicon}">
  198. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  199. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  200.  
  201. <style type="text/css">
  202.  
  203. body {background:{color:background} url({image:background}); background-repeat: repeat; background-attachment: fixed; line-height:130%;
  204. font-family:calibri; font-size:11px; color:{color:text};}
  205.  
  206. a:link, a:active, a:visited { color:{color:link}; text-decoration: none;}
  207.  
  208. a:hover {; text-decoration: none;}
  209.  
  210.  
  211. #content { margin-left:290px;padding:0px;width:590px;margin-top:0px;
  212.  
  213. {block:ifTrescolunas} width:800px; {/block:ifTrescolunas};}
  214.  
  215. #contain {height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: absolute;}
  216.  
  217. #fuckme { height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: relative;}
  218.  
  219. #vocemefaztaobem {width: 250px; position: fixed; margin-top: 140px; background:{color:background}; padding: 3px;}
  220.  
  221. .xquote { text-align: justify;; font-size: 10px; font-family: comic sans; line-height: 15px; padding: px;margin-left: 2px;margin-bottom:0px;padding-top:5px;}
  222. .xqsource {text-align: center; border-top:1px solid #bbb; text-transform: none; font-size: 10px; font-family:calibri; margin-right:px;font-weight:700;margin-top:3px;}
  223. .xqsource a, a:hover{text-transform: none;}
  224.  
  225.  
  226. .entry {float: left;
  227. {block:indexpage}
  228. width: 250px;
  229. margin: 5px;
  230. {/block:indexpage}
  231. display: block; padding: 2px;
  232. position: relative; background-color:{color:background}; opacity:0.8; border: 1px solid #bbb;}
  233.  
  234. .entry img {-webkit-transition: all 0.6s ; -moz-transition: all 0.6s ; -o-transition: all 0.6s ; opacity:1}
  235. .entry img:hover{opacity:1.8;}
  236.  
  237. .permalinkhehe {opacity: 0.0; filter: alpha(opacity = 0); position:absolute; z-index:9999991; bottom: 0px; right: 7px;}
  238.  
  239. .entry:hover .permalinkhehe {-webkit-transition: opacity 0.4s linear; opacity: 1; -moz-transition: all 0.4s linear; transition: all 0.4s linear; filter: alpha(opacity = 100);}
  240.  
  241. /*** Ask Por Simone (cerejadosundae)***/
  242. .ask {width: 99%; background:#eee; font-weight:normal; padding:3px; margin-bottom: 1px; color:#333; font-size: 11px; }
  243. .asker {width: 99%;height:18px; background: #9296AB; font-weight:normal; padding:3px; margin-bottom: 1px; color:#fff; font-size: 10px;text-align:left;line-height:20px;text-transform:uppercase;font-family: calibri;}
  244. .asker a{background:#; color:#fff;}
  245. .askborder {width:38px;float: left; display: inline; margin-bottom: 2px;margin-left:-3px;border: 3px solid #9296ab;margin-top:-3px;}
  246. .resposta {background:#ffff; font-weight:normal; padding:10px; margin-bottom: 1px; text-shadow:0 0px 0px #fff;color:{color:letras}; font-size: 11px; }
  247. /*** Ask Por Simone (cerejadosundae)***/
  248.  
  249. .likeyoubaby {width: 21px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block; }
  250. .likeyoubaby a {background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png"); background-position: 0px 0px; display: block;
  251. z-index: 9999999; webkit-transition: all 0s linear; -webkit-transition: all 0s linear; -moz-transition: all 0s linear; transition: all 0s linear;}
  252. .likeyoubaby img {width: 21px;height: 20px; webkit-transition: all 0.2s linear; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
  253. .likeyoubaby a:hover {background-position: 0px 0px;}
  254.  
  255. .reblog {width: 24px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block;}
  256. .reblog img{ width: 24px; height: 20px; line-height: 30px; display: inline;}
  257.  
  258. .notas { display: inline-block; background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png"); height: 20px; font-size: 11px;
  259. line-height: 20px; color: #fff; padding-left: 4px; padding-right: 4px; -moz-border-radius: 2px; border-radius: 2px; bottom: 6px; position: relative; letter-spacing:0px;}
  260. .notas:hover , .reblog:hover, .likeyoubaby:hover {opacity: 1!important; filter: alpha(opacity = 100)!important;}
  261. .notas a{color: #fff; font-family: helvetica;}
  262. .entry:hover .notas, .entry:hover .reblog, .entry:hover .likeyoubaby {opacity: 0.8;filter: alpha(opacity = 80);}
  263.  
  264. #pagination {display:none;}
  265.  
  266. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:2px; }
  267.  
  268. ol.notes { padding: 0px; margin: 25px 0px; list-style-type:decimal; border-bottom: solid 1px #ccc; }
  269.  
  270. ol.notes li.note { border-top: solid 1px #ccc; padding: 2px;}
  271.  
  272. ol.notes li.note img.avatar {margin-right: 10px; width:0px; height: 0px;}
  273.  
  274. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  275.  
  276. iframe#tumblr_controls {
  277. right:3px !important;
  278. position: fixed !important;
  279. -webkit-transition: opacity 0.7s linear;
  280. opacity: 0.5;
  281. -webkit-transition: all 0.8s ease-out;
  282. -moz-transition: all 0.8s ease-out;
  283. transition: all 0.8s ease-out;}
  284.  
  285. iframe#tumblr_controls:hover {
  286. -webkit-transition: opacity 0.7s linear;
  287. opacity: 1;
  288. -webkit-transition: all 0.4s ease-out;
  289. -moz-transition: all 0.4s ease-out;
  290. transition: all 0.4s ease-out;}
  291.  
  292. .posting {padding: 5px;}
  293.  
  294. li.drawer a {margin: 0px 5px;}
  295.  
  296. .label {text-transform:normal;color:{color:hover}}
  297.  
  298. .elavaivoltar {position:relative;text-align: center; line-height:10%; opacity: 0.0; filter: alpha(opacity = 0); font-family:calibri;font-size: 8px; line-height: 9px; text-transform: uppercase;-webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear;top:3px;}
  299. .elavaivoltar a{ text-transform: uppercase;-webkit-transition: all 0.6s linear; -moz-transition: all 0.6s linear; -o-transition: all 0.6s linear; transition: all 0.6s linear;}
  300.  
  301. .entry:hover .elavaivoltar {text-align: center; opacity: 1; filter: alpha(opacity = 50);-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear;}
  302.  
  303. div.panel { width: 260px; padding: 15px 20px; color: #333; text-align: center; line-height: 22px; display: none; filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#0d000000',GradientType=0 );}
  304.  
  305. div.panel p { margin: 10px 0; }
  306.  
  307. div.panel p a, div.textPost p a, div.audioPost p a { color: #333; text-decoration: none; border-bottom: 1px dotted; font-style: italic; font-weight: bold;}
  308.  
  309. ::-webkit-scrollbar-thumb:vertical { background-color:{color:scrollbar}; height:auto;-webkit-border-radius:20px;}
  310.  
  311. ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar};
  312. height:6px !important;-webkit-border-radius:20px;}
  313.  
  314. ::-webkit-scrollbar { height:6px; width:6px; background-color:{color:Background}; -webkit-border-radius:20px;}
  315.  
  316.  
  317. #photobar {position:absolute; padding:0px; background-color:; position:fixed; top:0px; left:0px; }
  318.  
  319. #photobar img {display: block; padding:0px;width:290px; height:660px;}
  320.  
  321. .des {position:fixed; width:190px; line-height:12px; font-size:12px; text-align:center; font-family:calibri; top:240px; left: 50px; color: {color:frase};}
  322.  
  323. .title { font-family:Arno Pro Light Display;position:fixed;margin-top:210px;font-size:25px;text-align:center;padding:3px; left:0px; padding-bottom:4px; letter-spacing:2px; text-transform:uppercase; width:285px; height:15px;color:{color:linkbg}; font-weight:bold;}
  324. .title:hover { text-shadow:0px 0px 10px {color:linkbg}; color:{color:linktext}; opacity:0.7}
  325.  
  326. .linkss {position:fixed; width:360px; left:-35px; line-height:12px; font-size:12px; text-align:center; font-family:calibri; color: {color:frase}; opacity:0.8;}
  327.  
  328. #pag{ margin-top: 600px; left: 0px; width: 280px; float: right; color:{color:linkbg};position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:999; text-align:right; text-shadow:0px 0px 10px#fff;}
  329.  
  330. #pagl {font-size: 10px;font-family:calibri; line-height: 24px;text-transform:none;color:#000000; }
  331. #paginacaoml a {font-size: 12px; font-family:calibri; {background: ; background-image:url(''); margin: 0 1px 0 0; padding: 2px 2px;color:{color:linkbg}; text-decoration: none;}
  332.  
  333. .nora {text-align: center; height: auto; font-size: 10px; font-family: muli; position: fixed; margin-left:6px; line-height: 12px; width:176px; ;padding:3px;margin-top: opx; background-attachment: fixed;z-index:9999999999999;color: {color:cordescri};}
  334.  
  335. #tumblr_controls{position: fixed!important}
  336. #tumblr_controls{position: fixed!important}
  337. #tumblr_controls{position: fixed!important}
  338. #tumblr_controls{position: fixed!important}
  339.  
  340. </style>
  341.  
  342. <script type="text/javascript">
  343. $(window).load(function(){
  344. $("p").remove(":contains('Source:')");
  345. $("p").remove(":contains('via ')");
  346. });
  347. </script>
  348.  
  349. <link href='http://fonts.googleapis.com/css?family=Merienda' rel='stylesheet' type='text/css'>
  350.  
  351. </head>
  352. <body onkeydown="return false">
  353.  
  354. <div id="photobar"><img src="{image:sidebar}"/></div>
  355.  
  356. <div class="des">{description}
  357. <p>
  358. <div class="linkss">
  359. <select style="font-family:georgia; width:50%; padding:2px; border:0px solid transparent; margin-bottom:5px; opacity:0.9; text-align:right;" onChange="location.href=this.options[this.selectedIndex].value;">
  360. <option value="#">navigation</option>
  361. {block:ifLink1}<option value="{text:Link1}" >{text:Link1 Title}</option> {/block:ifLink1}
  362. {block:ifLink2}<option value="{text:Link2}">{text:Link2 Title}</option>{/block:ifLink2}
  363. {block:ifLink3}<option value="{text:Link3}">{text:Link3 Title}</option>{/block:ifLink3}
  364. {block:ifLink4}<option value="{text:Link4}">{text:Link4 Title}</option>{/block:ifLink4}
  365. {block:ifLink5}<option value="{text:Link5}">{text:Link5 Title}</option>{/block:ifLink5}
  366. {block:ifLink6}<option value="{text:Link6}">{text:Link6 Title}</option>{/block:ifLink6}
  367. {block:ifLink7}<option value="{text:Link7}">{text:Link7 Title}</option>{/block:ifLink7}
  368. {block:ifLink8}<option value="{text:Link8}">{text:Link8 Title}</option>{/block:ifLink8}
  369. <option value="http://imatu-ro.tumblr.com">creditos</option>
  370. </select>
  371.  
  372. </div></div>
  373.  
  374. <div class="title" >{text:frase}</div>
  375.  
  376.  
  377. <div class="nora"><div id="pag"><div id="pagl"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}" title=""><font color="{color:source}">«</font></a>{/block:PreviousPage}{/block:Pagination}<b>{CurrentPage}</b> page or <b>{TotalPages}</b>{block:Pagination}{block:NextPage}<a href="{NextPage}" title=""><font color="{color:source}">»</font></a>{/block:NextPage}{/block:Pagination}</div></div>
  378.  
  379.  
  380. <!-- INICIO DOS POSTS -->
  381. <div id="content">
  382. {block:Posts}
  383. <div class="entry">
  384.  
  385. <!-- textos -->
  386. {block:Text}
  387.  
  388. <div class="permalinkhehe">
  389. <div class="likeyoubaby">
  390. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  391. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  392. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  393.  
  394.  
  395. <div class="posting">
  396. {block:Title}
  397.  
  398. <div class="permalinkhehe">
  399. <div class="likeyoubaby">
  400. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  401. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  402. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  403.  
  404. <div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">
  405. {Title}</div>{/block:Title}
  406. <div align="justify">{Body}</div>
  407. {block:indexpage}
  408. <div class="elavaivoltar">{/block:SameDayDate}
  409.  
  410. </div>
  411. {/block:indexpage}
  412. </div>
  413. {/block:Text}
  414. <!-- fim textos -->
  415.  
  416. <!-- fotos -->
  417. {block:Photo}
  418. {block:IndexPage}
  419. <div class="permalinkhehe">
  420. <div class="likeyoubaby">
  421. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  422. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  423. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  424. {/block:IndexPage}
  425. {block:indexpage}
  426. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/>{LinkCloseTag}{block:Caption}{caption}{/block:Caption}
  427. {/block:indexpage}
  428. {block:permalinkpage}
  429. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="99%"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  430. {/block:permalinkpage}
  431. {/block:Photo}
  432. <!-- fim fotos -->
  433.  
  434.  
  435. <!-- quotes -->
  436. {block:Quote}
  437.  
  438. <div class="permalinkhehe">
  439. <div class="likeyoubaby">
  440. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  441. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  442. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  443.  
  444. <div class="xquote">“{Quote}"</div>
  445. {block:Source}<div class="xqsource">{Source}</b></div>{/block:Source}
  446. {block:indexpage}
  447. <div class="elavaivoltar">{/block:SameDayDate}
  448.  
  449.  
  450. </div>
  451. {/block:indexpage}
  452.  
  453. {/block:Quote}
  454. <!-- fim quotes -->
  455.  
  456.  
  457. <!-- perguntas -->
  458. {block:Answer}
  459. <div class="posting">
  460. <div align="justify"><big></big>
  461. <span style="text-transform:uppercase; background:#eee; color:{color:Link}">{Asker}:</span> {Question}</div> <br>
  462. <div align="justify">{Answer}</div>
  463. {block:indexpage}
  464. <div class="elavaivoltar">{/block:SameDayDate}
  465.  
  466. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  467.  
  468. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  469.  
  470. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  471.  
  472. {block:ReblogRootURL}<a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  473. {/block:indexpage}
  474. </div>
  475. {/block:Answer}
  476. <!-- fim perguntas -->
  477.  
  478. <!-- audio -->
  479. {block:Audio}
  480. <div class="posting">
  481.  
  482. <div class="permalinkhehe">
  483. <div class="likeyoubaby">
  484. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  485. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  486. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  487.  
  488. <center>{AudioPlayerGrey}
  489. {PlayCountWithLabel}
  490. {block:Caption}
  491. {Caption}
  492. {/block:Caption}
  493. {block:indexpage}
  494. <div class="elavaivoltar">{/block:SameDayDate}
  495.  
  496. </div>
  497. {/block:indexpage}
  498. {Video-500}
  499. {/block:permalinkpage}
  500. </div>{/block:Audio}
  501. <!-- fim audio -->
  502.  
  503. <!-- photosets -->
  504. {block:Photoset}
  505. {block:IndexPage}
  506.  
  507. <div class="permalinkhehe">
  508. <div class="likeyoubaby">
  509. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  510. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  511. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  512.  
  513.  
  514. <br><center>
  515. {Photoset-250}
  516. </center>{/block:IndexPage}
  517. {block:indexpage}
  518. <div class="elavaivoltar">{/block:SameDayDate}
  519.  
  520.  
  521. </div>
  522. {/block:indexpage}
  523. {block:permalinkpage}
  524. {Photoset-500}
  525. {/block:permalinkpage}
  526. {/block:Photoset}
  527. <!-- fim photosets -->
  528.  
  529. <!-- chat -->
  530. {block:chat}
  531. <div class="posting">
  532.  
  533. <div class="permalinkhehe">
  534. <div class="likeyoubaby">
  535. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  536. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  537. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  538.  
  539. {block:title}
  540.  
  541. <center><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{title}
  542. </div>{/block:title}</center>
  543. <ul class="chat">
  544. {block:Lines}
  545. <li class="{Alt} user_{UserNumber}"> {block:Label}
  546. <span class="label">{Label}</span> {/block:Label}
  547. {Line} </li>
  548. {/block:Lines} </ul>
  549. {block:indexpage}
  550. <div class="elavaivoltar">{/block:SameDayDate}
  551.  
  552. </div>
  553. {/block:indexpage}
  554. </div>
  555. {/block:Chat}
  556. <!-- fim chat -->
  557.  
  558. <!-- links -->
  559. {block:Link}
  560. <div class="posting">
  561.  
  562. <div class="permalinkhehe">
  563. <div class="likeyoubaby">
  564. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  565. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  566. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  567.  
  568. <center><a href="{URL}" target="_blank"><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{Name}</a></div></center>
  569. {block:description}
  570. {description}
  571. {/block:description}
  572. {block:indexpage}
  573. <div class="elavaivoltar">{/block:SameDayDate}
  574.  
  575.  
  576. </div>
  577. {/block:indexpage}
  578. </div>
  579. {/block:Link}
  580. <!-- fim links -->
  581.  
  582. <!-- videos -->
  583. {block:Video}
  584.  
  585. <div class="permalinkhehe">
  586. <div class="likeyoubaby">
  587. <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div>
  588. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  589. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  590.  
  591. {block:IndexPage}{Video-250}{/block:IndexPage}
  592. {block:indexpage}
  593. <div class="elavaivoltar">{/block:SameDayDate}
  594.  
  595. </div>
  596. {/block:indexpage}
  597. {Video-250}
  598. {/block:permalinkpage}
  599. {/block:Video}
  600. <!-- fim videos -->
  601.  
  602. {block:PermalinkPage}
  603. <div style="width:400px;margin-left:5px;">
  604. <center>
  605. {block:Date}
  606.  
  607. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;">
  608.  
  609. {DayOfWeek}, {DayOfMonth} de {Month} de {Year} às ({24HourWithZero}:{Minutes}), com <small><small>♥</small></small> {NoteCount}</div>
  610. {/block:Date}
  611.  
  612. <br>
  613.  
  614. {block:HasTags}
  615. — Tags:&nbsp;
  616. {block:Tags}
  617. <a href="{TagURL}" style="margin-right:5px; font-family:{text:font};color:{color:Links hover};">#&nbsp;{Tag}</a>{/block:Tags}
  618. {/block:HasTags}<br>
  619.  
  620. {block:RebloggedFrom}
  621.  
  622. — Reblog via <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  623.  
  624. — Original <a href="{ReblogRootURL}">{ReblogRootName}</a>
  625. {/block:RebloggedFrom}<br>
  626. </div>
  627.  
  628. <center><br><br>{block:ContentSource}
  629. <br><a href="{SourceURL}">
  630. {lang:Source}:
  631. {block:SourceLogo}
  632. <img src="{BlackLogoURL}" width="{LogoWidth}"
  633. height="{LogoHeight}" alt="{SourceTitle}" />
  634. {/block:SourceLogo}
  635. {block:NoSourceLogo}
  636. {SourceLink}
  637. {/block:NoSourceLogo}
  638. </a>
  639. {/block:ContentSource}</center><br>
  640.  
  641. <div style="float:left;width:250px;margin-left:50px;">
  642. <div style="float:left"></div><div style="float:right"></div><div>{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  643. </div></center>
  644. {/block:PermalinkPage}
  645. <!-- fim dos notes -->
  646.  
  647. </div>
  648. {/block:Posts}
  649. </div>
  650. </div>
  651. <!-- FIM DOS POSTS -->
  652.  
  653. <!-- PAGINAÇÃO -->
  654. {block:Pagination}
  655. <ul id="pagination">
  656. {block:PreviousPage}
  657. <li><a href="{PreviousPage}"></a></li>
  658. {/block:PreviousPage}
  659. {block:JumpPagination length="5"}
  660. {block:CurrentPage}
  661. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  662. {/block:CurrentPage}
  663. {block:JumpPage}
  664. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  665. {/block:JumpPage}
  666. {/block:JumpPagination}
  667. {block:NextPage}
  668. <li><a id="nextPage" href="{NextPage}"></a></li>
  669. {/block:NextPage}
  670. </ul>
  671. {/block:Pagination}
  672. <!-- FIM DA PAGINAÇÃO -->
  673.  
  674. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  675. <script src="http://static.tumblr.com/fxpo5zq/HCHm5q8gs/infinitescroll.js"></script>
  676. {block:IndexPage}
  677. <script type="text/javascript">
  678. $(window).load(function () {
  679. $('#content').masonry(),
  680. $('.masonryWrap').infinitescroll({
  681. navSelector : '#pagination',
  682. nextSelector : '#pagination a#nextPage',
  683. itemSelector : ".entry",
  684. bufferPx : 100,
  685. loadingText : "<em></em>",
  686. },
  687. function() { $('#content').masonry({ appendedContent: $(this) }); }
  688. );
  689. });
  690. </script>
  691. {/block:IndexPage}
  692.  
  693. <script type="text/javascript">
  694.  
  695. $('.show').click(function(e){
  696. e.preventDefault();
  697. $('.panel').stop(true,true);
  698. var target = $(this).attr('href');
  699. if($('.panel').is(':visible')){
  700. if($(target).is(':visible')){
  701. $(target).slideUp();
  702. return false;
  703. }else{
  704. $('.panel:visible').slideUp(400, function(){
  705. $(target).slideDown();
  706. });
  707. }
  708. }else {
  709. $(target).slideDown();
  710. }
  711. });
  712.  
  713. </script>
  714. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  715. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  716. </body>
  717.  
  718.  
  719. </body>
  720. </html>
Advertisement
Add Comment
Please, Sign In to add comment