luisquintanilha

Theme 12

Jul 25th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.76 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <script type="text/javascript">
  4.  
  5.  
  6. // <![CDATA[
  7.  
  8. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  9.  
  10. var fgcolour="#656565"; // foreground colour
  11.  
  12. var hlcolour="#b5b5b5"; // highlight colour
  13.  
  14. var bgcolour="#FFFFFF"; // background colour
  15.  
  16. var glcolour="#f8f8f8"; // colour of glow around letters
  17.  
  18. var speed=66; // speed colours change, 1 second = 1000
  19.  
  20. var delay=50; // how long to wait between wipes
  21.  
  22. var alink="/"; // page to link text to (set to ="" for no link)
  23.  
  24.  
  25.  
  26. /****************************
  27.  
  28. *Multi-Wipe Neon Text Effect*
  29.  
  30. *(c)2003-12 mf2fm web-design*
  31.  
  32. * http://www.mf2fm.com/rv *
  33.  
  34. * DON'T EDIT BELOW THIS BOX *
  35.  
  36. ****************************/
  37.  
  38. var w_txt, w_txl;
  39.  
  40. var w_flp=bgcolour;
  41.  
  42. var w_sty=Math.floor(Math.random()*8);
  43.  
  44. var w_cnt=-1;
  45.  
  46. var wipes=new Array();
  47.  
  48. var wrand=new Array();
  49.  
  50. window.onload=function() { if (document.getElementById) {
  51.  
  52. var i, wiper, wipei;
  53.  
  54. wiper=document.getElementById("wipe");
  55.  
  56. w_txt=wiper.firstChild.nodeValue;
  57.  
  58. w_txl=w_txt.length;
  59.  
  60. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  61.  
  62. for (i=0; i<w_txl; i++) {
  63.  
  64. wipei=document.createElement("span");
  65.  
  66. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  67.  
  68. wipes[i]=wipei.style;
  69.  
  70. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  71.  
  72. wipes[i].color=fgcolour;
  73.  
  74. wiper.appendChild(wipei);
  75.  
  76. }
  77.  
  78. if (alink) {
  79.  
  80. wiper.style.cursor="pointer";
  81.  
  82. wiper.onclick=function() { top.location.href=alink; }
  83.  
  84. }
  85.  
  86. for (i=0; i<w_txl; i++) wrand[i]=i;
  87.  
  88. wiper=setInterval("randwipe()", speed);
  89.  
  90. }}
  91.  
  92.  
  93.  
  94. function c(i, shade) {
  95.  
  96. if (shade==bgcolour) wipes[i].textShadow="none";
  97.  
  98. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  99.  
  100. wipes[i].color=shade;
  101.  
  102. }
  103.  
  104.  
  105.  
  106. function randwipe() {
  107.  
  108. var w_old;
  109.  
  110. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  111.  
  112. else {
  113.  
  114. w_cnt=-1;
  115.  
  116. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  117.  
  118. w_old=w_sty;
  119.  
  120. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  121.  
  122. }
  123.  
  124. }
  125.  
  126.  
  127.  
  128. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  129.  
  130.  
  131.  
  132. function wipe0() { // curtains
  133.  
  134. if (w_cnt<Math.floor(w_txl/2)) {
  135.  
  136. c(w_cnt, hlcolour);
  137.  
  138. c(w_txl-w_cnt-1, hlcolour);
  139.  
  140. }
  141.  
  142. else if (w_cnt<w_txl) {
  143.  
  144. c(w_cnt, w_flp);
  145.  
  146. c(w_txl-w_cnt-1, w_flp);
  147.  
  148. }
  149.  
  150. }
  151.  
  152.  
  153.  
  154. function wipe1() { // random
  155.  
  156. var i, rand, temp;
  157.  
  158. if (w_cnt==0) {
  159.  
  160. for (i=0; i<w_txl; i++) {
  161.  
  162. rand=Math.floor(Math.random()*w_txl);
  163.  
  164. temp=wrand[i];
  165.  
  166. wrand[i]=wrand[rand];
  167.  
  168. wrand[rand]=temp;
  169.  
  170. }
  171.  
  172. }
  173.  
  174. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  175.  
  176. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  177.  
  178. }
  179.  
  180.  
  181.  
  182. function wipe2() { // forwards
  183.  
  184. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  185.  
  186. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  187.  
  188. }
  189.  
  190.  
  191.  
  192. function wipe3() { // backwards
  193.  
  194. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  195.  
  196. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  197.  
  198. }
  199.  
  200.  
  201.  
  202. function wipe4() { // searchlight
  203.  
  204. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  205.  
  206. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  207.  
  208. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  209.  
  210. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  211.  
  212. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  213.  
  214. }
  215.  
  216.  
  217.  
  218. function wipe5() { // fade
  219.  
  220. var i;
  221.  
  222. if (w_cnt<w_txl+3) {
  223.  
  224. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  225.  
  226. var temp="#";
  227.  
  228. for (i=1; i<6; i+=2) {
  229.  
  230. var hex1=parseInt(start.substring(i,i+2),16);
  231.  
  232. var hex2=parseInt(w_flp.substring(i,i+2),16);
  233.  
  234. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  235.  
  236. }
  237.  
  238. for (i=0; i<w_txl; i++) c(i, temp);
  239.  
  240. }
  241.  
  242. }
  243.  
  244.  
  245.  
  246. function wipe6() { // flash
  247.  
  248. var i;
  249.  
  250. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  251.  
  252. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  253.  
  254. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  255.  
  256. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  257.  
  258. }
  259.  
  260. }
  261.  
  262.  
  263.  
  264. function wipe7() { // checkerboard
  265.  
  266. var qtr=Math.floor(w_txl/4);
  267.  
  268. if (w_cnt<qtr) {
  269.  
  270. c(w_cnt, hlcolour);
  271.  
  272. c(w_cnt+2*qtr, hlcolour);
  273.  
  274. }
  275.  
  276. else if (w_cnt<2*qtr) {
  277.  
  278. c(w_cnt-qtr, w_flp);
  279.  
  280. c(w_cnt+qtr, w_flp);
  281.  
  282. }
  283.  
  284. else if (w_cnt<3*qtr) {
  285.  
  286. c(w_cnt-qtr, hlcolour);
  287.  
  288. c(w_cnt+qtr, hlcolour);
  289.  
  290. }
  291.  
  292. else if (w_cnt<w_txl) {
  293.  
  294. c(w_cnt-2*qtr, w_flp);
  295.  
  296. c(w_cnt, w_flp);
  297.  
  298. }
  299.  
  300. }
  301.  
  302. // ]]>
  303.  
  304. </script>
  305.  
  306.  
  307. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  308. <head>
  309. <!-- DEFAULT VARIABLES -->
  310.  
  311. <meta name="color:background" content="#ececec" />
  312. <meta name="color:sbar" content="#fff" />
  313. <meta name="color:links" content="#000" />
  314. <meta name="color:links hover" content="#999999" />
  315. <meta name="color:bordas" content="#f0f0f0" />
  316. <meta name="color:entry" content="#fff" />
  317. <meta name="color:text" content="#000" />
  318. <meta name="color:scroll" content="#000000" />
  319. <meta name="color:scrollback" content="#f9f9f9" />
  320. <meta name="image:tbar" content="http://media.tumblr.com/tumblr_m2qxfy553K1qh9oez.jpg"/>
  321. <meta name="text:frase" content="I'm Miss Nothing" />
  322. <meta name="color:link1" content="#fff" />
  323. <meta name="color:link2" content="#000" />
  324. <meta name="color:linkhover1" content="#000" />
  325. <meta name="color:linkhover2" content="#fff" />
  326. <meta name="color:hover" content="#000" />
  327. <meta name="color:hovertext" content="#000000" />
  328. <meta name="image:background" content=""/>
  329. <meta name="text:Link1" content="links" />
  330. <meta name="text:Link1 Title" content="links" />
  331. <meta name="text:Link2" content="links" />
  332. <meta name="text:Link2 Title" content="links" />
  333. <meta name="text:Link3" content="links" />
  334. <meta name="text:Link3 Title" content="links" />
  335. <meta name="text:Link4" content="links" />
  336. <meta name="text:Link4 Title" content="links" />
  337. <meta name="text:Link5" content="links" />
  338. <meta name="text:Link5 Title" content="links" />
  339. <meta name="text:Link6" content="links" />
  340. <meta name="text:Link6 Title" content="links" />
  341.  
  342.  
  343.  
  344. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  345. <title>{Title}</title>
  346. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  347. <link rel="shortcut icon" href="{Favicon}" />
  348. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  349. <style type="text/css">
  350.  
  351.  
  352. #container {background-color:transparent; width: 935px; text-align: center; margin: 0px auto 20px auto}
  353.  
  354. body {background-color: {color:background}; font-family: verdana; color: {color:text}; text-align: center; font-size: 11px; background-image:url('{image:background}'); background-attachment: fixed; }
  355.  
  356. a {color: {color:links}; text-decoration: none; text-transform: none;}
  357. a:hover {color: {color:links hover}; background-color: transparent; text-decoration: none;}
  358.  
  359. p {margin: 6px 0 0 0}
  360.  
  361. blockquote {margin: 5px 5px 5px 5px; border-left: 5px solid {color:background}; padding-left: 5px; }
  362. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 5px solid {color:background};}
  363. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  364. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  365.  
  366. blockquote img{max-width: 470px!important}
  367. blockquote blockquote img{max-width: 450px!important}
  368. blockquote blockquote blockquote img{max-width: 430px!important}
  369. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  370.  
  371.  
  372. #xright {float: left; margin-top: -10px;}
  373.  
  374. .postbox {width: 500px; margin-left: 408px; background-color: {color:entry}; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative;}
  375.  
  376. h1 {font-family: georgia; text-align: center; font-size: 19px; text-transform: tiny; color: {color:text}; font-weight: normal; line-height: 20px;}
  377. h1 a {text-align: center; font-size: 19px; text-transform: tiny; color: {color:text}; font-weight: normal; line-height: 20px;}
  378. h1 a:hover {text-align: center; font-size: 19px; text-transform: tiny; color: {color:text}; font-weight: normal; line-height: 20px;}
  379.  
  380. .image {text-align: center; border: 0px}
  381. .image img {max-width: 500px; margin-bottom: 2px }
  382.  
  383. .xquote {font-family: georgia; text-align: center; font-size: 14px; line-height: 15px; padding: 3px;}
  384. .xquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  385. .xquotesource a, a:hover{text-transform: none;}
  386.  
  387. .chat {line-height: 13px; list-style: none }
  388. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  389. .person1 {color: {color:text}; padding: 2px; }
  390. .person1 .label {font-weight: bold; color:{color:text}}
  391. .person2 {color: {color:text}; padding: 2px; }
  392. .person2 .label {font-weight: bold; color:{color:text}}
  393.  
  394. .player {background-color: #000; text-align: left; display:block;}
  395.  
  396. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  397. .answer {padding: 2px}
  398. .answer img {max-width: 470px;}
  399.  
  400.  
  401. #xdate {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  402. #xdate a {font-size: 9px;}
  403.  
  404. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase;}
  405. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase;}
  406.  
  407. #cap {width: 500px; margin-top: -2px;}
  408. .source {display: none;}
  409.  
  410. .notes {width: 521px; padding: 0px; margin-top: 1px; margin-left: 410px; margin-bottom: 1px; font-size: 9px; text-align: left}
  411. ol.notes {list-style: none; margin: 0 200px 0 0px; padding: 0px; z-index: 11;}
  412. ol.notes li {background-color: {color:entry}; margin-bottom: 1px; padding: 5px; }
  413. .notes img{display: none; border:0px}
  414.  
  415.  
  416. ::-webkit-scrollbar{width:6px;height:6px;}::-webkit-scrollbar-button:start:decrement::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}::-webkit-scrollbar-track-piece{background-color:{color:scrollback};}::-webkit-scrollbar-thumb:vertical{height:50px; background-color:{color:scroll};}::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:{color:scroll};}
  417.  
  418.  
  419.  
  420.  
  421. /*etc*/
  422.  
  423. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  424.  
  425.  
  426.  
  427.  
  428. .credit{background-color: {color:hover}; color: {color:text}; text-align: center; font-size: 8px; width:188px; height:12px; line-height: 14px; position: fixed; margin-left: 211px; margin-top:445px; padding: 4px; font-family: tinytots;position: fixed; }
  429.  
  430.  
  431.  
  432.  
  433. /*** hover ***/
  434.  
  435.  
  436. #foton {position: fixed; border: 5px solid {color:sbar}; margin-left: 211px; margin-top: 74px; width: 186px; height: 323px; background-color: {color:sbar}}
  437.  
  438. .foti {position: fixed; background-color: #ffffff; color: #000000; margin-top: 0px; margin-left: 0px;}
  439.  
  440. .foti img {position: fixed; background-color: #ffffff; color: #000000; width: 190px; height: 326px; margin-top: -2px; margin-left: -2px; opacity: 0.6;}
  441.  
  442. .foti img:hover{opacity: 0.1; -webkit-transition-duration: 1.0s; -moz-transition-duration: 1.0s; opacity: 1.7;}
  443.  
  444. .fj {font-size: 120px; font-family: arial; line-height: 95px; margin-left: 5px; color: {color: titulos posts}; opacity:0.15;-moz-opacity: 0.15; filter: alpha(opacity=15);}
  445. .jf {font-size: 16px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color: titulos posts}; margin-left: 25px; margin-top: -92px; }
  446.  
  447. #italics {font-size:10px; font-style:italic; color: {color:text}; text-align: center; margin-top: -10px;}
  448.  
  449. #title {font-size:20px; font-style: normal; text-align:center; font-family: 'Loved by the King', cursive; color: {color:text}; letter-spacing:1px;}
  450.  
  451. #forimgs {width:266px; height:auto;background-color:#trans!; left:100px; position:fixed;margin-top:30px;}
  452.  
  453. @font-face {
  454. font-family: 'Loved by the King';
  455. font-style: normal;
  456. font-weight: normal;
  457. src: local('Loved by the King'), local('LovedbytheKing'), url('http://themes.googleusercontent.com/static/fonts/lovedbytheking/v3/wg03xD4cWigj4YDufLBSr8SuHxUvEE05hEBp-kiqXZE.woff') format('woff');}
  458.  
  459. #descri {position:fixed; text-align: justify; font-size: 9px; font-family: verdana; margin-left: 0px; width: 174px; height:auto; background-color: transparent; color:{color:text}; padding: 1px; margin-top: 103px;
  460.  
  461. text-shadow:0px 2px 5px #000;
  462.  
  463. z-index:9999;}
  464.  
  465.  
  466.  
  467. #tay1 {width: 196px; height: 36px; float: left; margin-left:211px; margin-top: 408px; padding: 0px; text-align: center; position: absolute; -webkit-transition: all 2s ease-out; -moz-transition: all 2s ease-out; background-color: {color:link1}}
  468.  
  469. #tay1 a {float: left; margin-left: 1px; font-family: tinytots; font-size: 8px; text-align: center; margin-top: 2px; height: 15px; width: 64px; color:{color:link2}; line-height: 15px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; letter-spacing: 0px; text-transform: uppercase; background-color: {color:linkhover1};}
  470.  
  471. #tay1 a:hover{text-align: center; background-color: {color:bordas}; color:{color:linkhover2}; text-shadow:6px 5px 9px #000;}
  472.  
  473. #fl {width: 39px; position: fixed; padding: 8px; background-color: transparent; margin-left: 234px; margin-top: 44px; color: {color:sbar}; font-size: 48px; -webkit-transform: rotate(0deg);}
  474.  
  475.  
  476. #imagine {position: fixed; margin-left: 0px; margin-top: 0px; width: px; height: px; background-color: {color:sbar}}
  477.  
  478. /* titulo */
  479.  
  480.  
  481.  
  482.  
  483.  
  484. .titleui {text-align: justify; margin-top:38px; margin-left: 211px; overflow: hidden; -webkit-border-radius: 0px 0px 0px 0px; font-size: 18px; font-family: Agency FB; position: fixed; color: {color:text}; padding: 10px; background-attachment: fixed; width:176px; height: 15px; background-color: {color:sbar}; -webkit-border-radius: 50px 0px 0px 0px;}
  485.  
  486. .titleuiui{font-size: 21px; font-family: Agency FB; text-transform: none; line-height: 20px; letter-spacing: -1px; text-transform: uppercase;}
  487.  
  488. .bea {font-family: georgia; position: fixed; margin-left: 260px; margin-top: 450px; font-size: 38px; z-index: 0; -webkit-transform: rotate(-90deg);}
  489. .bea a {color: ; background-color: transparent;}
  490. .bea a:hover {color: ;}
  491.  
  492. .bea2 {font-family: georgia; position: fixed; margin-left: 300px; margin-top: 450px; font-size: 38px; z-index: 0; -webkit-transform: rotate(-90deg);}
  493. .bea a {color: ; background-color: transparent;}
  494. .bea a:hover {color: ;}
  495.  
  496.  
  497.  
  498. #tumblr_controls{position: fixed!important; z-index: 999999999;}
  499. #tumblr_controls{position: fixed!important; z-index: 999999999;}
  500. #tumblr_controls{position: fixed!important; z-index: 999999999;}
  501. #tumblr_controls{position: fixed!important; z-index: 999999999;}
  502.  
  503.  
  504. </style>
  505. <style type="text/css">{CustomCSS}</style>
  506. </head>
  507.  
  508. <body>
  509.  
  510. <div id="container">
  511.  
  512. </div>
  513. </div>
  514. </div>
  515.  
  516. <div id="xright">
  517.  
  518. {block:Posts}
  519. <div class="postbox">
  520.  
  521. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  522.  
  523. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  524.  
  525. {block:Photoset}{Photoset-500}{/block:Photoset}
  526.  
  527. {block:Quote}
  528. <o class="fj">“</o><div class="jf">{quote}</div>
  529. {block:Source}<div class="xquotesource"> — {Source}</div>
  530. {/block:Source}
  531. {/block:Quote}
  532.  
  533. {block:Link}
  534. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  535. {block:Description}{Description}{/block:Description}
  536. {/block:Link}
  537.  
  538. {block:Chat}
  539. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  540. <div class="chat"><ul>{block:Lines}
  541. <li class="person{UserNumber}">{block:Label}
  542. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  543. {/block:Chat}
  544.  
  545. {block:Audio}
  546. <div class="player">{AudioPlayerBlack}</div>
  547. {block:Caption}{Caption}{/block:Caption}
  548. {/block:Audio}
  549.  
  550. {block:Video}{Video-500}{/block:Video}
  551.  
  552.  
  553. {block:Answer}
  554. <div class="asker"><img src="{AskerPortraitURL-30}"> <b>{Asker}</b> perguntou-me: <i>{Question}</i></div>
  555. <div class="answer">{Answer}</div>
  556. {/block:Answer}
  557.  
  558.  
  559. <div id="cap">
  560. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  561. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  562. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  563.  
  564. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  565. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  566. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  567. {/block:ContentSource}</div></div>
  568. <br>
  569.  
  570.  
  571. <div id="xdate">
  572. {block:Date}<div class="tags"> {block:HasTags}<b>slap in the face:</b> {block:Tags}#<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  573. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} ∞ <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} - <a href="{ReblogUrl}" target="_blank">reblog this </a>{/block:IndexPage}
  574. {block:RebloggedFrom}<br>original de <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} ∞ via <a href="{ReblogParentURL}">{ReblogParentName}</a>
  575. {/block:RebloggedFrom}
  576. </div>
  577. </div>{/block:Date}
  578.  
  579.  
  580. {/block:Posts}
  581. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  582. </div>
  583. </div>
  584. </div>
  585. </div>
  586. </div>
  587. </div>
  588. </div>
  589.  
  590.  
  591.  
  592. </div>
  593.  
  594.  
  595.  
  596.  
  597. </div></div>
  598.  
  599. <div id="foton">
  600.  
  601. <div class="foti"><img src="{image:tbar}"/>
  602. <div id="descri"><center>{Description}
  603.  
  604. </div>
  605.  
  606. </div></div>
  607.  
  608.  
  609. </div>
  610. </div>
  611.  
  612. <div class="credit">THEME BY <a href="http://congelad0.tumblr.com/"><b>Congelad0 </b></a> <a href="http://hyliar.tumblr.com/">DETAILS. </a> </div>
  613.  
  614.  
  615.  
  616. <div id="fl">▼</div>
  617.  
  618.  
  619.  
  620.  
  621. <div class="titleui"><center></center><div class="titleuiui"><center><span id="wipe">{text:frase}</span></center></div></div>
  622.  
  623.  
  624. <div id="imagine">
  625. <div id="tay1">
  626.  
  627. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  628.  
  629. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a> {/block:ifLink2}
  630.  
  631. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a> {/block:ifLink3}
  632.  
  633. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a> {/block:ifLink4}
  634.  
  635. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a> {/block:ifLink5}
  636.  
  637. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a> {/block:ifLink6}
  638.  
  639. </div></div>
  640. <div class="bea2">{block:NextPage}<a href="{NextPage}">↓</a>{/block:NextPage}</div>
  641.  
  642. <div class="bea">{block:PreviousPage}<a href="{PreviousPage}">↑</a>{/block:PreviousPage}</div>
  643.  
  644. </body>
  645. </html>
Advertisement
Add Comment
Please, Sign In to add comment