diariodeumjudas

Theme 58

Sep 30th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.83 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:Tres Colunas" 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. <link href='http://fonts.googleapis.com/css?family=Jacques+Francois' rel='stylesheet' type='text/css'>
  196. <link href='http://fonts.googleapis.com/css?family=Kavoon' rel='stylesheet' type='text/css'>
  197. <link href='http://fonts.googleapis.com/css?family=Playball' rel='stylesheet' type='text/css'>
  198.  
  199. <title>{Title}</title>
  200. <link rel="shortcut icon" href="{Favicon}">
  201. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  202. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  203.  
  204. <style type="text/css">
  205.  
  206. body {background:{color:background} url({image:background}); background-repeat: repeat; background-attachment: fixed; line-height:130%;
  207. font-family:calibri; font-size:11px; color:{color:text};}
  208.  
  209. a:link, a:active, a:visited { color:{color:link}; text-decoration: none;}
  210.  
  211. a:hover {; text-decoration: none;}
  212.  
  213.  
  214. #content { margin-left:180px;padding:30px;width:590px;margin-top:-40px;
  215.  
  216. {block:ifTrescolunas} width:800px; {/block:ifTrescolunas};}
  217.  
  218. #contain {height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: absolute;}
  219.  
  220. #fuckme { height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: relative;}
  221.  
  222. #vocemefaztaobem {width: 250px; position: fixed; margin-top: 140px; background:{color:background}; padding: 3px;}
  223.  
  224. .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;}
  225. .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;}
  226. .xqsource a, a:hover{text-transform: none;}
  227.  
  228.  
  229. .entry {float: left;
  230. {block:indexpage}
  231. width: 250px;
  232. margin: 5px;
  233. {/block:indexpage}
  234. display: block; padding: 2px;
  235. position: relative; background-color:{color:background}; opacity:0.8; border: 1px solid #d7d7d7;}
  236.  
  237. .entry img {-webkit-transition: all 0.6s ; -moz-transition: all 0.6s ; -o-transition: all 0.6s ; opacity:1}
  238. .entry img:hover{opacity:1.8;}
  239.  
  240. .permalinkhehe {opacity: 0.0; filter: alpha(opacity = 0); position:absolute; z-index:9999991; bottom: 0px; right: 7px;}
  241.  
  242. .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);}
  243.  
  244. /*** Ask Por Simone (cerejadosundae)***/
  245. .ask {width: 99%; background:#eee; font-weight:normal; padding:3px; margin-bottom: 1px; color:#333; font-size: 11px; }
  246. .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;}
  247. .asker a{background:#; color:#fff;}
  248. .askborder {width:38px;float: left; display: inline; margin-bottom: 2px;margin-left:-3px;border: 3px solid #9296ab;margin-top:-3px;}
  249. .resposta {background:#ffff; font-weight:normal; padding:10px; margin-bottom: 1px; text-shadow:0 0px 0px #fff;color:{color:letras}; font-size: 11px; }
  250. /*** Ask Por Simone (cerejadosundae)***/
  251.  
  252. .likeyoubaby {width: 21px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block; }
  253. .likeyoubaby a {background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png"); background-position: 0px 0px; display: block;
  254. z-index: 9999999; webkit-transition: all 0s linear; -webkit-transition: all 0s linear; -moz-transition: all 0s linear; transition: all 0s linear;}
  255. .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;}
  256. .likeyoubaby a:hover {background-position: 0px 0px;}
  257.  
  258. .reblog {width: 24px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block;}
  259. .reblog img{ width: 24px; height: 20px; line-height: 30px; display: inline;}
  260.  
  261. .notas { display: inline-block; background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png"); height: 20px; font-size: 11px;
  262. 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;}
  263. .notas:hover , .reblog:hover, .likeyoubaby:hover {opacity: 1!important; filter: alpha(opacity = 100)!important;}
  264. .notas a{color: #fff; font-family: helvetica;}
  265. .entry:hover .notas, .entry:hover .reblog, .entry:hover .likeyoubaby {opacity: 0.8;filter: alpha(opacity = 80);}
  266.  
  267. #pagination {display:none;}
  268.  
  269. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:2px; }
  270.  
  271. ol.notes { padding: 0px; margin: 25px 0px; list-style-type:decimal; border-bottom: solid 1px #ccc; }
  272.  
  273. ol.notes li.note { border-top: solid 1px #ccc; padding: 2px;}
  274.  
  275. ol.notes li.note img.avatar {margin-right: 10px; width:0px; height: 0px;}
  276.  
  277. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  278.  
  279. iframe#tumblr_controls {
  280. right:3px !important;
  281. position: fixed !important;
  282. -webkit-transition: opacity 0.7s linear;
  283. opacity: 0.5;
  284. -webkit-transition: all 0.8s ease-out;
  285. -moz-transition: all 0.8s ease-out;
  286. transition: all 0.8s ease-out;}
  287.  
  288. iframe#tumblr_controls:hover {
  289. -webkit-transition: opacity 0.7s linear;
  290. opacity: 1;
  291. -webkit-transition: all 0.4s ease-out;
  292. -moz-transition: all 0.4s ease-out;
  293. transition: all 0.4s ease-out;}
  294.  
  295. .posting {padding: 5px;}
  296.  
  297. li.drawer a {margin: 0px 5px;}
  298.  
  299. .label {text-transform:normal;color:{color:hover}}
  300.  
  301. .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;}
  302. .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;}
  303.  
  304. .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;}
  305.  
  306. 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 );}
  307.  
  308. div.panel p { margin: 10px 0; }
  309.  
  310. 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;}
  311.  
  312. ::-webkit-scrollbar-thumb:vertical { background-color:{color:scrollbar}; height:auto;-webkit-border-radius:20px;}
  313.  
  314. ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar};
  315. height:6px !important;-webkit-border-radius:20px;}
  316.  
  317. ::-webkit-scrollbar { height:6px; width:6px; background-color:{color:Background}; -webkit-border-radius:20px;}
  318.  
  319. #sidebar1 {width:100%; height: 30px; overflow: hidden; background:{color:sidebar}; padding: 5px;text-align:center; position:fixed; letter-spacing:1px; font: 9px cambria; left:0px; bottom:0px; -webkit-transition-duration: 0.6s;z-index: 9;}
  320.  
  321. #play {width:50px; height: 10px; overflow: hidden; background:#eee; padding: 5px;text-align:center; position:fixed; letter-spacing:1px; font: 9px cambria; left:0px; top:30px; -webkit-transition-duration: 0.6s;z-index: 9;}
  322.  
  323.  
  324. #photobar {position:absolute; padding:0px; background-color:; position:fixed; bottom:60px; left:85px; border:4px solid {color:sidebar}; -webkit-transition-duration: 0.6s; z-index:999;}
  325.  
  326. #photobar img {display: block; padding:0px;width:50px; height:55px; }
  327. #photobar:hover {opacity: 0.8; -webkit-transition-duration: 0.6s; margin-left: 75px;}
  328.  
  329. #photobar:hover .descri {opacity: 1; -webkit-transition-duration: 0.6s; left: 5px; }
  330.  
  331. #photobar:hover .title {opacity: 1; -webkit-transition-duration: 0.6s; bottom: 112px; }
  332.  
  333.  
  334. .descri {width:140px; height: 50px; overflow: hidden; background:; text-align:right; position:fixed; letter-spacing:-1px; padding: 5px; font: 12px calibri; left:90px; bottom: 60px; -webkit-transition-duration: 0.6s; color:{color:frase}; font-style: italic; opacity: 0.0;}
  335.  
  336. .descri a {text-transform:none; }
  337.  
  338. .title { font-family:"Kavoon"; Display;position:fixed; bottom:132px;font-size:10px;text-align:right;padding:3px; left:5px; padding-bottom:4px; letter-spacing:0px; text-transform:none; width:140px; height:10px;color:{color:frase}; background:; -webkit-transition-duration: 0.6s; opacity: 0.0; }
  339.  
  340. .simbolo { font-family:Arno Pro Light Display;position:fixed;bottom:42px;font-size:25px;text-align:center;padding:3px; left:50px; padding-bottom:4px; letter-spacing:2px; text-transform:uppercase; width:120px; height:15px;color:{color:sidebar}; font-weight:bold; -webkit-transition-duration: 0.6s;}
  341.  
  342. .links {position: fixed; text-align: center;font-size: 17px; font-family:"Playball"; width:100%; bottom:10px; left:0px;line-height:100%;letter-spacing:0px;}
  343. .links a {color:{color:linkbg};}
  344.  
  345. #pag{ margin-top: 30px; 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:center; text-shadow:0px 0px 10px#fff;}
  346.  
  347. #pagl {font-size: 10px;font-family:calibri; line-height: 24px;text-transform:none;color:#000000; }
  348. #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;}
  349.  
  350. .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};}
  351.  
  352. #tumblr_controls{position: fixed!important}
  353. #tumblr_controls{position: fixed!important}
  354. #tumblr_controls{position: fixed!important}
  355. #tumblr_controls{position: fixed!important}
  356.  
  357. </style>
  358.  
  359. <script type="text/javascript">
  360. $(window).load(function(){
  361. $("p").remove(":contains('Source:')");
  362. $("p").remove(":contains('via ')");
  363. });
  364. </script>
  365.  
  366. <link href='http://fonts.googleapis.com/css?family=Merienda' rel='stylesheet' type='text/css'>
  367.  
  368. </head>
  369. <body onkeydown="return false">
  370.  
  371. <div id="sidebar1">
  372. <div id="photobar"><img src="{image:sidebar}"/>
  373.  
  374. <div class="descri" >
  375. {description}</div>
  376.  
  377. <div class="title">{text:frase}</div>
  378.  
  379. </div>
  380.  
  381.  
  382. <div class="links">
  383. <a href="{text:Link1}">{text:Link1 Title}</a>
  384. <a href="{text:Link2}">{text:Link2 Title}</a>
  385. <a href="{text:Link3}">{text:Link3 Title}</a>
  386. <a href="{text:Link4}">{text:Link4 Title}</a>
  387. <a href="{text:Link5}">{text:Link5 Title}</a>
  388. <a href="http://sintonizo.tumblr.com">créditos</a>
  389. </div>
  390.  
  391.  
  392.  
  393. <div class="simbolo" > ▲<div>
  394. </div></div></div>
  395.  
  396.  
  397. <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>
  398.  
  399. <!-- INICIO DOS POSTS -->
  400. <div id="content">
  401. {block:Posts}
  402. <div class="entry">
  403.  
  404. <!-- textos -->
  405. {block:Text}
  406.  
  407. <div class="permalinkhehe">
  408. <div class="likeyoubaby">
  409. <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>
  410. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  411. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  412.  
  413.  
  414. <div class="posting">
  415. {block:Title}
  416.  
  417. <div class="permalinkhehe">
  418. <div class="likeyoubaby">
  419. <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>
  420. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  421. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  422.  
  423. <div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">
  424. {Title}</div>{/block:Title}
  425. <div align="justify">{Body}</div>
  426. {block:indexpage}
  427. <div class="elavaivoltar">{/block:SameDayDate}
  428.  
  429. </div>
  430. {/block:indexpage}
  431. </div>
  432. {/block:Text}
  433. <!-- fim textos -->
  434.  
  435. <!-- fotos -->
  436. {block:Photo}
  437. {block:IndexPage}
  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. {/block:IndexPage}
  444. {block:indexpage}
  445. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/>{LinkCloseTag}{block:Caption}{caption}{/block:Caption}
  446. {/block:indexpage}
  447. {block:permalinkpage}
  448. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="99%"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  449. {/block:permalinkpage}
  450. {/block:Photo}
  451. <!-- fim fotos -->
  452.  
  453.  
  454. <!-- quotes -->
  455. {block:Quote}
  456.  
  457. <div class="permalinkhehe">
  458. <div class="likeyoubaby">
  459. <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>
  460. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  461. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  462.  
  463. <div class="xquote">“{Quote}"</div>
  464. {block:Source}<div class="xqsource">{Source}</b></div>{/block:Source}
  465. {block:indexpage}
  466. <div class="elavaivoltar">{/block:SameDayDate}
  467.  
  468.  
  469. </div>
  470. {/block:indexpage}
  471.  
  472. {/block:Quote}
  473. <!-- fim quotes -->
  474.  
  475.  
  476. <!-- perguntas -->
  477. {block:Answer}
  478. <div class="posting">
  479. <div align="justify"><big></big>
  480. <span style="text-transform:uppercase; background:#eee; color:{color:Link}">{Asker}:</span> {Question}</div> <br>
  481. <div align="justify">{Answer}</div>
  482. {block:indexpage}
  483. <div class="elavaivoltar">{/block:SameDayDate}
  484.  
  485. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  486.  
  487. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  488.  
  489. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  490.  
  491. {block:ReblogRootURL}<a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  492. {/block:indexpage}
  493. </div>
  494. {/block:Answer}
  495. <!-- fim perguntas -->
  496.  
  497. <!-- audio -->
  498. {block:Audio}
  499. <div class="posting">
  500.  
  501. <div class="permalinkhehe">
  502. <div class="likeyoubaby">
  503. <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>
  504. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  505. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  506.  
  507. <center>{AudioPlayerGrey}
  508. {PlayCountWithLabel}
  509. {block:Caption}
  510. {Caption}
  511. {/block:Caption}
  512. {block:indexpage}
  513. <div class="elavaivoltar">{/block:SameDayDate}
  514.  
  515. </div>
  516. {/block:indexpage}
  517. {Video-500}
  518. {/block:permalinkpage}
  519. </div>{/block:Audio}
  520. <!-- fim audio -->
  521.  
  522. <!-- photosets -->
  523. {block:Photoset}
  524. {block:IndexPage}
  525.  
  526. <div class="permalinkhehe">
  527. <div class="likeyoubaby">
  528. <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>
  529. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  530. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  531.  
  532.  
  533. <br><center>
  534. {Photoset-250}
  535. </center>{/block:IndexPage}
  536. {block:indexpage}
  537. <div class="elavaivoltar">{/block:SameDayDate}
  538.  
  539.  
  540. </div>
  541. {/block:indexpage}
  542. {block:permalinkpage}
  543. {Photoset-500}
  544. {/block:permalinkpage}
  545. {/block:Photoset}
  546. <!-- fim photosets -->
  547.  
  548. <!-- chat -->
  549. {block:chat}
  550. <div class="posting">
  551.  
  552. <div class="permalinkhehe">
  553. <div class="likeyoubaby">
  554. <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>
  555. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  556. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  557.  
  558. {block:title}
  559.  
  560. <center><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{title}
  561. </div>{/block:title}</center>
  562. <ul class="chat">
  563. {block:Lines}
  564. <li class="{Alt} user_{UserNumber}"> {block:Label}
  565. <span class="label">{Label}</span> {/block:Label}
  566. {Line} </li>
  567. {/block:Lines} </ul>
  568. {block:indexpage}
  569. <div class="elavaivoltar">{/block:SameDayDate}
  570.  
  571. </div>
  572. {/block:indexpage}
  573. </div>
  574. {/block:Chat}
  575. <!-- fim chat -->
  576.  
  577. <!-- links -->
  578. {block:Link}
  579. <div class="posting">
  580.  
  581. <div class="permalinkhehe">
  582. <div class="likeyoubaby">
  583. <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>
  584. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  585. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  586.  
  587. <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>
  588. {block:description}
  589. {description}
  590. {/block:description}
  591. {block:indexpage}
  592. <div class="elavaivoltar">{/block:SameDayDate}
  593.  
  594.  
  595. </div>
  596. {/block:indexpage}
  597. </div>
  598. {/block:Link}
  599. <!-- fim links -->
  600.  
  601. <!-- videos -->
  602. {block:Video}
  603.  
  604. <div class="permalinkhehe">
  605. <div class="likeyoubaby">
  606. <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>
  607. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  608. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>
  609.  
  610. {block:IndexPage}{Video-250}{/block:IndexPage}
  611. {block:indexpage}
  612. <div class="elavaivoltar">{/block:SameDayDate}
  613.  
  614. </div>
  615. {/block:indexpage}
  616. {Video-250}
  617. {/block:permalinkpage}
  618. {/block:Video}
  619. <!-- fim videos -->
  620.  
  621. {block:PermalinkPage}
  622. <div style="width:400px;margin-left:5px;">
  623. <center>
  624. {block:Date}
  625.  
  626. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;">
  627.  
  628. {DayOfWeek}, {DayOfMonth} de {Month} de {Year} às ({24HourWithZero}:{Minutes}), com <small><small>♥</small></small> {NoteCount}</div>
  629. {/block:Date}
  630.  
  631. <br>
  632.  
  633. {block:HasTags}
  634. — Tags:&nbsp;
  635. {block:Tags}
  636. <a href="{TagURL}" style="margin-right:5px; font-family:{text:font};color:{color:Links hover};">#&nbsp;{Tag}</a>{/block:Tags}
  637. {/block:HasTags}<br>
  638.  
  639. {block:RebloggedFrom}
  640.  
  641. — Reblog via <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  642.  
  643. — Original <a href="{ReblogRootURL}">{ReblogRootName}</a>
  644. {/block:RebloggedFrom}<br>
  645. </div>
  646.  
  647. <center><br><br>{block:ContentSource}
  648. <br><a href="{SourceURL}">
  649. {lang:Source}:
  650. {block:SourceLogo}
  651. <img src="{BlackLogoURL}" width="{LogoWidth}"
  652. height="{LogoHeight}" alt="{SourceTitle}" />
  653. {/block:SourceLogo}
  654. {block:NoSourceLogo}
  655. {SourceLink}
  656. {/block:NoSourceLogo}
  657. </a>
  658. {/block:ContentSource}</center><br>
  659.  
  660. <div style="float:left;width:250px;margin-left:50px;">
  661. <div style="float:left"></div><div style="float:right"></div><div>{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  662. </div></center>
  663. {/block:PermalinkPage}
  664. <!-- fim dos notes -->
  665.  
  666. </div>
  667. {/block:Posts}
  668. </div>
  669. </div>
  670. <!-- FIM DOS POSTS -->
  671.  
  672. <!-- PAGINAÇÃO -->
  673. {block:Pagination}
  674. <ul id="pagination">
  675. {block:PreviousPage}
  676. <li><a href="{PreviousPage}"></a></li>
  677. {/block:PreviousPage}
  678. {block:JumpPagination length="5"}
  679. {block:CurrentPage}
  680. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  681. {/block:CurrentPage}
  682. {block:JumpPage}
  683. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  684. {/block:JumpPage}
  685. {/block:JumpPagination}
  686. {block:NextPage}
  687. <li><a id="nextPage" href="{NextPage}"></a></li>
  688. {/block:NextPage}
  689. </ul>
  690. {/block:Pagination}
  691. <!-- FIM DA PAGINAÇÃO -->
  692.  
  693. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  694. <script src="http://static.tumblr.com/fxpo5zq/HCHm5q8gs/infinitescroll.js"></script>
  695. {block:IndexPage}
  696. <script type="text/javascript">
  697. $(window).load(function () {
  698. $('#content').masonry(),
  699. $('.masonryWrap').infinitescroll({
  700. navSelector : '#pagination',
  701. nextSelector : '#pagination a#nextPage',
  702. itemSelector : ".entry",
  703. bufferPx : 100,
  704. loadingText : "<em></em>",
  705. },
  706. function() { $('#content').masonry({ appendedContent: $(this) }); }
  707. );
  708. });
  709. </script>
  710. {/block:IndexPage}
  711.  
  712. <script type="text/javascript">
  713.  
  714. $('.show').click(function(e){
  715. e.preventDefault();
  716. $('.panel').stop(true,true);
  717. var target = $(this).attr('href');
  718. if($('.panel').is(':visible')){
  719. if($(target).is(':visible')){
  720. $(target).slideUp();
  721. return false;
  722. }else{
  723. $('.panel:visible').slideUp(400, function(){
  724. $(target).slideDown();
  725. });
  726. }
  727. }else {
  728. $(target).slideDown();
  729. }
  730. });
  731.  
  732. </script>
  733. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  734. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  735. </body>
  736.  
  737.  
  738. </body>
  739. </html>
Advertisement
Add Comment
Please, Sign In to add comment