Advertisement
fn-themes

theme-56

Mar 3rd, 2013
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 30.97 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=Indie+Flower' 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:text" content="#777" />
  167. <meta name="color:descr" content="#777" />
  168. <meta name="color:link" content="#fff"/>
  169. <meta name="color:links" content="#777"/>
  170. <meta name="color:border" content="#bebebe"/>
  171. <meta name="color:background" content="#ffffff"/>
  172. <meta name="color:scrollbar" content="#000000"/>
  173. <meta name="color:hover" content="#ffb000">
  174. <meta name="color:bglinks" content="#eeeeee">
  175.  
  176. <meta name="if:ScrollInfinito" content="1">
  177.  
  178. <meta name="image:background" content=""/>
  179. <meta name="image:sidebarimagem1" content="http://static.tumblr.com/82f96802cebcab2eb62cd51a78518572/yhfuno6/SDpmhevw7/tumblr_static_tumblr_mcvyiwreoy1r197loo1_500.png"/>
  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="Depressao" />
  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}; text-decoration: none;}
  205.  
  206. a:hover {; text-decoration: none;}
  207.  
  208.  
  209. #content { margin-left:500px;padding:0px;width:611px;margin-top:0px;}
  210.  
  211. #contain {height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: absolute;}
  212.  
  213. #fuckme { height:100%; padding-left:10px; padding-right:10px; width: 1100px; margin: 0px auto; position: relative;}
  214.        
  215. #vocemefaztaobem {width: 250px; position: fixed; margin-top: 140px;  background:{color:background}; padding: 3px;}
  216.  
  217.  
  218.  
  219. #sidebar { width: 220px; position: fixed; margin-top: 140px; ; padding: 2px;}
  220.  
  221.  
  222.  /************ QUOTES ***************/
  223. .xquote { text-align: justify;; font-size: 11px; font-family: 'muli'; line-height: 15px; padding: px;margin-left: 2px;margin-bottom:0px;padding-top:5px;}
  224. .xquote:first-letter{font-family: 'Indie Flower'; font-size: 20px;line-height:12px;}
  225. .xqsource {text-align: center;; text-transform: none; font-size: 10px; font-family:calibri; letter-spacing:1px;margin-right:px;}
  226. .xqsource a, a:hover{text-transform: none;}
  227.  
  228.  
  229. .image {text-align: center; border: 0px;}
  230. .image img {max-width: 250px;opacity:1; border-radius:2px;}
  231.  
  232.  
  233. .entry {float: left;
  234. {block:indexpage}
  235. width: 250px;
  236. margin: 5px;
  237. {/block:indexpage}
  238. display: block; padding: 2px;
  239. position: relative;}
  240.  
  241. .entry img {; opacity:1}
  242.  
  243. .permalinkhehe {opacity: 0.0; filter: alpha(opacity = 0); position:absolute; z-index:9999991; bottom: 0px; right: 7px;}
  244.  
  245. .entry:hover .permalinkhehe {-webkit-transition: opacity 0.4s linear; opacity: 1; -moz-transition: all 0.4s linear; transition: all 0.4s linear; filter: alpha(opacity = 100);}
  246.  
  247.  
  248. /*********************** LIKE, REBLOG E NOTES*/
  249. .likeyoubaby {width: 21px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block; }
  250. .likeyoubaby a {background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png"); background-position: 0px 0px; display: block;
  251. z-index: 9999999; webkit-transition: all 0s linear; -webkit-transition: all 0s linear; -moz-transition: all 0s linear; transition: all 0s linear;}
  252. .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;}
  253. .likeyoubaby a:hover {background-position: 0px 0px;}
  254.  
  255. .reblog {width: 24px; height: 20px; overflow: hidden; z-index: 9999999; display: inline-block;}    
  256. .reblog img{ width: 24px; height: 20px; line-height: 30px; display: inline;}
  257.  
  258. .notas { display: inline-block; background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png"); height: 20px; font-size: 11px;
  259. 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;}
  260. .notas:hover , .reblog:hover, .likeyoubaby:hover {opacity: 1!important; filter: alpha(opacity = 100)!important;}
  261. .notas a{color: #fff; font-family: helvetica;}
  262.  .entry:hover .notas, .entry:hover .reblog, .entry:hover .likeyoubaby {opacity: 0.8;filter: alpha(opacity = 80);}
  263.  
  264.  
  265. /****************** PAGINA, CHAT, CONTROLES E NOTES OCULTO*/
  266. #pagination {display:none;}
  267.  
  268. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:2px; }
  269.  
  270. ol.notes { padding: 0px; margin: 25px 0px; list-style-type:decimal; border-bottom: solid 1px #ccc; }
  271.  
  272. ol.notes li.note { border-top: solid 1px #ccc; padding: 2px;}
  273.  
  274. ol.notes li.note img.avatar {margin-right: 10px; width:0px; height: 0px;}
  275.  
  276. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  277.  
  278. iframe#tumblr_controls {
  279.     right:3px !important;
  280.     position: fixed !important;
  281.     -webkit-transition: opacity 0.7s linear;
  282.     opacity: 0.5;
  283.     -webkit-transition: all 0.8s ease-out;
  284.     -moz-transition: all 0.8s ease-out;
  285.     transition: all 0.8s ease-out;}
  286.  
  287. iframe#tumblr_controls:hover {
  288.     -webkit-transition: opacity 0.7s linear;
  289.     opacity: 1;
  290.     -webkit-transition: all 0.4s ease-out;
  291.     -moz-transition: all 0.4s ease-out;
  292.     transition: all 0.4s ease-out;}
  293.  
  294. /**************************** FRASE POR PR-INCESO ***********/
  295. .blogtitle { font-family:Swanky and Moo Moo;position:fixed;margin-top:415px;font-size:24px;text-align:right;padding:3px; margin-left:232px; padding-bottom:4px; letter-spacing:0px; text-transform:NONE;height:1px;;width:230px;text-shadow:0px 0px 1px {color:descr}; ; color:{color:descr};}
  296.  
  297.  
  298.  
  299.  
  300. .blogtitle1 { font-family:Swanky and Moo Moo;position:fixed;margin-top:143px;font-size:14px;text-align:right;padding:3px; margin-left:212px; padding-bottom:4px; letter-spacing:0px; text-transform:NONE; width:250px;text-shadow:0px 0px 1px {color:descr}; ; color:{color:descr};}
  301.  
  302. /* IMAGEM DA SIDE POR PR-INCESO */
  303. #imagevi1{float: left; margin-top: 20px; margin-left: 220px; padding: 0px; width: 220px; height:240px; position: fixed; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;z-index:0;}
  304. #imagevi1 a {background-attachment: absolute;}
  305. #imagevi2 {margin-top: 0px; margin-left: 0px; position: fixed;}
  306. #imagevi2 img{width: 220px; z-index:999999999999999;height:240px;position: absolute; opacity:1; border:1px solid {color:border};-webkit-transition: all 1.3s ease-out; -moz-transition: all 1.1s ease-out;padding:5px;}
  307. #imagevi1:hover #links{opacity:1;margin-top:168px;;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out}
  308.  
  309. /************** DESCRIÇÃO POR PR-INCESO ********************/
  310.  .teamomoh {text-align: center; height: auto; font-size: 10px; font-family: muli; position: fixed; margin-left:106px; line-height: 12px; width:176px; ;padding:3px;margin-top: opx; background-attachment: fixed;z-index:9999999999999;color: {color:descr};}
  311.  
  312.  /****************** LINKS POR PR-INCESO ******************/
  313. #links {width: 120px;line-height:2px; margin-top: 164px; text-align: center;; position: fixed; margin-left:56px;z-index:1500; -webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;z-index:999999999999999999999999999;opacity:0;}
  314. #links a {display:block;text-transform:uppercase;font-family:"calibri"; font-size:9px; opacity:1;z-index:9999900;;  -webkit-transition: all .8s ease-out; -moz-transition: all .8s ease-out; ;color:transparent;margin-bottom:1px;background-color:{color:bglinks};border-radius:70%}
  315. #links a:hover {color:{color:link};line-height:15px; background-color:transparent;text-shadow:0px 0px 3px {color:link};}
  316.  
  317. /***** CREDITOS *******************/
  318. #crd {width: 194px; height:auto;padding:0px; margin-top:287px; margin-left:340px; position: fixed;z-index: 3;-webkit-transition: all .7s ease-out; -moz-transition: all .7s ease-out;}
  319. #crd a {font-family:"calibri"; font-size:8px; text-align: center; color:{color:descr};-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out;text-transform:uppercase;}
  320. #crd a:hover {opacity: 1;text-shadow: 0px 0px 0px {color:hover};;}
  321.  
  322.  
  323.  
  324. /****************** POSTING, REBLOGS E SCROLL*/
  325. .posting {padding: 5px;}
  326.  
  327. li.drawer a {margin: 0px 5px;}
  328.    
  329. .label {text-transform:normal;color:{color:hover}}
  330.    
  331. .elavaivoltar {position:relative;text-align: right; line-height:10%; opacity: 0.0; filter: alpha(opacity = 0); font-family:muli;font-size: 7px; 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;}
  332. .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;color:{color:links};}
  333. .elavaivoltar a:hover{color:{color:hover};}
  334.    
  335. .entry:hover .elavaivoltar { 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;}
  336.  
  337. 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 );}
  338.  
  339. div.panel p { margin: 10px 0; }
  340.  
  341. 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;}
  342.  
  343. ::-webkit-scrollbar-thumb:vertical { background-color:{color:scrollbar}; height:auto;-webkit-border-radius:20px;}
  344.  
  345. ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar};
  346. height:6px !important;-webkit-border-radius:20px;}
  347.  
  348. ::-webkit-scrollbar { height:6px; width:6px; background-color:{color:Background}; -webkit-border-radius:20px;}
  349.  
  350. /************** MENU POP *****************/
  351.  
  352.  
  353. #fade { /*--Transparent background layer--*/
  354.     display: none; /*--hidden by default--*/
  355.     background: #000;
  356.     position: fixed; left: 0; top: 0;
  357.     width: 100%; height: 100%;
  358.         opacity: .80;
  359.         z-index: 999999;
  360. }
  361. .popup_block{
  362.         display: none; /*--hidden by default--*/
  363.         background: #fff;
  364.         padding: 20px;
  365.         border: 10px double #bebebe;
  366.         float: left;
  367.         font-size: 12px;
  368.         position: fixed;
  369.         top: 50%; left: 50%;
  370.         z-index: 9999999999999999999999999999999999;
  371.     color:#000;
  372.     text-align:left;
  373.     font-family:calibri;
  374.         /*--CSS3 Box Shadows--*/
  375.         -webkit-box-shadow: 0px 0px 20px #000;
  376.         -moz-box-shadow: 0px 0px 20px #000;
  377.         box-shadow: 0px 0px 20px #000 inset;
  378.         /*--CSS3 Rounded Corners--*/
  379.         -webkit-border-radius: 10px;
  380.         -moz-border-radius: 10px;
  381.         border-radius: 10px;
  382. }
  383. .popup_block a{color:#000;}
  384. img.btn_close {
  385.         float: right;
  386.         margin: -55px -55px 0 0;
  387. }
  388. /*--Making IE6 Understand Fixed Positioning--*/
  389. *html #fade {
  390.         position: absolute;
  391. }
  392. *html .popup_block {
  393.         position: absolute;
  394. }
  395. .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; }
  396.  
  397. .tchutchuca1 a{color: #57768e;}
  398. /*-----------------------------------------------------------------------*/
  399.  
  400. #pagina{ margin-top: 334px; margin-left: 220px; width: 175px; float: right; color:{color:links};position: fixed; height: 24px; -webkit-border-radius: 0px 0px 0px 0px; z-index:830 }
  401.  
  402.  
  403. #paginacaoml {font-size: 8px;font-family:calibri; line-height: 24px;text-transform:uppercase;color:{color:links};}
  404. #paginacaoml a {font-size: 12px; font-family:calibri; {background: ;  background-image:url(''); margin: 0 1px 0 0; padding: 2px 2px;color:{color:links}; text-decoration: none;}
  405. </style>
  406.  
  407. <script type="text/javascript">
  408. $(window).load(function(){
  409. $("p").remove(":contains('Source:')");
  410. $("p").remove(":contains('via ')");
  411. });
  412. </script>
  413.    
  414. </head>
  415. <body>
  416.  
  417. <div class="blogtitle">{text:frase}</div>
  418. <div class="blogtitle1"></div>
  419. <!-- INICIO MENU  -->
  420.  
  421. <div id="contain">
  422. <div id="sidebar">
  423.  
  424. <!-- HEADER IMAGEM -->
  425. <center>
  426.  
  427. <div id="imagevi1">
  428. <div id="imagevi2">
  429.  <img src="{image:sidebarimagem1}">  <div id="links">
  430.  
  431.  
  432. <a href="{text:link 1}">{text:link 1 nome}</a>
  433. <a href="{text:link 2}">{text:link 2 nome}</a>
  434. <a href="{text:link 3}">{text:link 3 nome}</a>
  435. <a href="{text:link 4}">{text:link 4 nome}</a>
  436. <a href="{text:link 5}">{text:link 5 nome}</a>
  437.  
  438. </div>                            
  439. </div></div>         <div id="crd"><a href='#?w=500' rel='theme' class='poplight' title="clica pra ver os creditos.">@theme</a></div>
  440.  
  441.  
  442. <!-- TITULO  -->
  443.  
  444.  
  445.  
  446.  
  447.  
  448. <!-- DESCRIÇÃO -->
  449. <div class="teamomoh"></div>
  450.  
  451.  
  452. <!-- LINKS -->
  453.  
  454.    
  455. </div>
  456.  
  457. <!-- INICIO DOS POSTS  -->
  458. <div id="content">
  459. {block:Posts}
  460. <div class="entry">
  461.  
  462. <!-- textos -->
  463. {block:Text}
  464. <div class="posting">
  465. {block:Title}
  466. <div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">
  467. {Title}</div>{/block:Title}
  468. <div align="justify">{Body}</div>
  469. {block:indexpage}
  470. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  471.  
  472. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  473.  
  474. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  475.  
  476. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  477.  
  478. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  479. {/block:indexpage}
  480. </div>
  481. {/block:Text}
  482. <!-- fim textos -->
  483.  
  484. <!-- fotos -->
  485. {block:Photo}
  486. {block:IndexPage}
  487. <div class="permalinkhehe">
  488. <div class="likeyoubaby">
  489. <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>
  490. <div class="reblog"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  491. <div class="notas"><a id="notes{PostID}" href="{Permalink}">{NoteCount}</a></div></div>  
  492. {/block:IndexPage}
  493. {block:indexpage}
  494. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></div>{LinkCloseTag}{block:Caption}{caption}{/block:Caption}
  495. {/block:indexpage}
  496. {block:permalinkpage}
  497. {LinkOpenTag}<div class="image"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="99%"/></div>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  498. {/block:permalinkpage}
  499. {/block:Photo}
  500. <!-- fim fotos -->
  501.  
  502.  
  503. <!-- quotes -->
  504. {block:Quote}
  505.  
  506. <div class="xquote">{Quote}"</div>
  507. {block:Source}<div class="xqsource"><strong>{Source}</div>{/block:Source}</strong>
  508. {block:indexpage}
  509. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  510.  
  511. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  512.  
  513. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  514.  
  515. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  516.  
  517. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  518. {/block:indexpage}
  519.  
  520. {/block:Quote}
  521. <!-- fim quotes -->
  522.  
  523.  
  524. <!-- perguntas -->
  525. {block:Answer}
  526. <div class="posting">
  527. <div align="justify"><big></big>
  528. <span style="text-transform:uppercase; color:{color:Link}">{Asker}:</span> {Question}</div> <br>
  529. <div align="justify">{Answer}</div>
  530. {block:indexpage}
  531. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  532.  
  533. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  534.  
  535. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  536.  
  537. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  538.  
  539. {block:ReblogRootURL}<a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  540. {/block:indexpage}
  541. </div>
  542. {/block:Answer}
  543. <!-- fim perguntas -->
  544.  
  545. <!-- audio -->
  546. {block:Audio}
  547. <div class="posting">
  548. <center>{AudioPlayerGrey}
  549. {PlayCountWithLabel}
  550. {block:Caption}
  551. {Caption}
  552. {/block:Caption}
  553. {block:indexpage}
  554. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  555.  
  556. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  557.  
  558. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  559.  
  560. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  561.  
  562. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  563. {/block:indexpage}
  564. {Video-500}
  565. {/block:permalinkpage}
  566. </div>{/block:Audio}
  567. <!-- fim audio -->
  568.  
  569. <!-- photosets  -->
  570. {block:Photoset}
  571. {block:IndexPage}
  572. <br><center>
  573. {Photoset-250}
  574. </center>{/block:IndexPage}
  575. {block:indexpage}
  576. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  577.  
  578. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  579.  
  580. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  581.  
  582. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  583.  
  584. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  585. {/block:indexpage}
  586. {block:permalinkpage}
  587. <div class="image">{Photoset-250}</div>
  588. {/block:permalinkpage}
  589. {/block:Photoset}
  590. <!-- fim photosets -->
  591.  
  592. <!-- chat -->
  593. {block:chat}
  594. <div class="posting">
  595. {block:title}
  596. <center><div style="font-family:{text:font}; font-size:14px; padding:2px; background-color:{color:background}; color:{color:Links hover};">{title}
  597. </div>{/block:title}</center>
  598. <ul class="chat">
  599. {block:Lines}
  600. <li class="{Alt} user_{UserNumber}"> {block:Label}
  601. <span class="label">{Label}</span> {/block:Label}
  602. {Line} </li>
  603. {/block:Lines} </ul>    
  604. {block:indexpage}
  605. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  606.  
  607. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  608.  
  609. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  610.  
  611. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  612.  
  613. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  614. {/block:indexpage}
  615. </div>
  616. {/block:Chat}
  617. <!-- fim chat -->
  618.  
  619. <!-- links -->
  620. {block:Link}
  621. <div class="posting">
  622. <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>
  623. {block:description}
  624. {description}
  625. {/block:description}
  626. {block:indexpage}
  627. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  628.  
  629. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  630.  
  631. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  632.  
  633. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  634.  
  635. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  636. {/block:indexpage}
  637. </div>
  638. {/block:Link}
  639. <!-- fim links -->
  640.  
  641. <!-- videos -->
  642. {block:Video}
  643. {block:IndexPage}{Video-250}{/block:IndexPage}
  644. {block:indexpage}
  645. <div class="elavaivoltar">{block:SameDayDate}  <a href="{Permalink}" >{DayOfWeek}, {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}</a> ·{/block:SameDayDate}
  646.  
  647. {block:NoteCount}<a href="{Permalink}" > {NoteCount} notes</a> ·{/block:NoteCount}
  648.  
  649. {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> ·{/block:RebloggedFrom}
  650.  
  651. {block:ContentSource}<a href="{SourceURL}" title="originally by {SourceTitle}"> source</b></a> ·{/block:ContentSource}
  652.  
  653. <a href="{ReblogURL}" target="_blank"> Reblog</a>{/block:ReblogRootURL}</div>
  654. {/block:indexpage}
  655. {Video-250}
  656. {/block:permalinkpage}
  657. {/block:Video}
  658. <!-- fim videos -->
  659.  
  660. {block:PermalinkPage}
  661. <div style="width:400px;margin-left:5px;">
  662. <center>
  663. {block:Date}
  664.  
  665. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;">
  666.  
  667. {DayOfWeek}, {DayOfMonth} de {Month} de {Year} às ({24HourWithZero}:{Minutes}), com <small><small></small></small> {NoteCount}</div>
  668. {/block:Date}
  669.  
  670. <br>
  671.  
  672. {block:HasTags}
  673. — Tags:&nbsp;
  674. {block:Tags}
  675. <a href="{TagURL}" style="margin-right:5px; font-family:{text:font};color:{color:Links hover};">#&nbsp;{Tag}</a>{/block:Tags}
  676. {/block:HasTags}<br>
  677.  
  678. {block:RebloggedFrom}
  679.  
  680. — Reblog via <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  681.  
  682. — Original <a href="{ReblogRootURL}">{ReblogRootName}</a>
  683. {/block:RebloggedFrom}<br>
  684. </div>
  685.  
  686. <center><br><br>{block:ContentSource}
  687. <br><a href="{SourceURL}">
  688. {lang:Source}:
  689. {block:SourceLogo}
  690. <img src="{BlackLogoURL}" width="{LogoWidth}"
  691. height="{LogoHeight}" alt="{SourceTitle}" />
  692. {/block:SourceLogo}
  693. {block:NoSourceLogo}
  694. {SourceLink}
  695. {/block:NoSourceLogo}
  696. </a>
  697. {/block:ContentSource}</center><br>
  698.  
  699. <div style="float:left;width:250px;margin-left:50px;">
  700. <div style="float:left"></div><div style="float:right"></div><div>{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  701. </div></center>
  702. {/block:PermalinkPage}
  703. <!-- fim dos notes -->
  704.  
  705. </div>
  706. {/block:Posts}
  707. </div>
  708. </div>
  709. <!-- FIM DOS POSTS -->
  710.  
  711. {block:IfScrollInfinito}
  712. <!-- PAGINAÇÃO -->
  713. {block:Pagination}
  714. <ul id="pagination">
  715. {block:PreviousPage}
  716. <li><a href="{PreviousPage}"></a></li>
  717. {/block:PreviousPage}
  718. {block:JumpPagination length="5"}
  719. {block:CurrentPage}
  720. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  721. {/block:CurrentPage}
  722. {block:JumpPage}
  723. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  724. {/block:JumpPage}
  725. {/block:JumpPagination}
  726. {block:NextPage}
  727. <li><a id="nextPage" href="{NextPage}"></a></li>
  728. {/block:NextPage}
  729. </ul>
  730. {/block:Pagination}
  731. <!-- FIM DA PAGINAÇÃO -->
  732. {/block:IfScrollInfinito}
  733.  
  734. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  735. <script src="http://static.tumblr.com/fxpo5zq/HCHm5q8gs/infinitescroll.js"></script>
  736. {block:IndexPage}
  737. <script type="text/javascript">
  738. $(window).load(function () {
  739. $('#content').masonry(),
  740. $('.masonryWrap').infinitescroll({
  741. navSelector    : '#pagination',  
  742. nextSelector   : '#pagination a#nextPage',
  743. itemSelector : ".entry",
  744. bufferPx : 100,
  745. loadingText : "<em></em>",
  746. },
  747. function() { $('#content').masonry({ appendedContent: $(this) }); }
  748. );
  749. });
  750. </script>
  751. {/block:IndexPage}
  752.  
  753. <script type="text/javascript">
  754.  
  755.                         $('.show').click(function(e){
  756.                                 e.preventDefault();
  757.                                 $('.panel').stop(true,true);
  758.                                 var target = $(this).attr('href');
  759.                                 if($('.panel').is(':visible')){
  760.                                         if($(target).is(':visible')){
  761.                                                 $(target).slideUp();
  762.                                                 return false;
  763.                                         }else{
  764.                                                 $('.panel:visible').slideUp(400, function(){
  765.                                                         $(target).slideDown();
  766.                                                 });            
  767.                                         }
  768.                                 }else {
  769.                                         $(target).slideDown();
  770.                                 }
  771.                         });
  772.    
  773. </script>
  774. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  775. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  776. </body>
  777. <!-----------------------------THEMES-------------------------------->
  778. <div id='theme' class='popup_block' style="background-image: url('http://static.tumblr.com/yhfuno6/o3gmeher5/14.png') ;">
  779.  
  780. <center><div style="color:#fff; font-family:Qwigley; font-size:39px;">Creditos.</div></center>
  781.  
  782. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">all theme por vasculhos.</li><br></div>
  783.  
  784. <div class="tchutchuca"style="opacity:.8;background-color:transparent;color:#fff;">se pegar base, por favor, credite. hoje em dia não fazem muito isso, então faça a diferença ;)</li><br></div>
  785.  
  786.  
  787. <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>
  788. </div></div>
  789.  
  790.  
  791.  
  792.  
  793. </body>
  794. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement