diariodeumjudas

Theme 42 (duas colunas)

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