diariodeumjudas

Theme 47 (duas colunas)

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