diariodeumjudas

Theme 64

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