Advertisement
fn-themes

theme-52

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