Advertisement
fn-themes

theme-53

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