Advertisement
my-foolishlove

52

Jul 5th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.32 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.  
  4. . .o8 oooo
  5. .o8 "888 `888
  6. .o888oo oooo oooo ooo. .oo. .oo. 888oooo. 888 oooo d8b
  7. 888 `888 `888 `888P"Y88bP"Y88b d88' `88b 888 `888""8P
  8. 888 888 888 888 888 888 888 888 888 888
  9. 888 . 888 888 888 888 888 888 888 888 888 .o.
  10. "888" `V88V"V8P' o888o o888o o888o `Y8bod8P' o888o d888b Y8P
  11.  
  12. -->
  13. <head>
  14. <script type='text/javascript'>
  15.  
  16. //<![CDATA[
  17.  
  18. var rate = 20;
  19.  
  20. if (document.getElementById)
  21.  
  22. window.onerror=new Function("return true")
  23.  
  24. var objActive; // The object which event occured in
  25.  
  26. var act = 0; // Flag during the action
  27.  
  28. var elmH = 0; // Hue
  29.  
  30. var elmS = 128; // Saturation
  31.  
  32. var elmV = 255; // Value
  33.  
  34. var clrOrg; // A color before the change
  35.  
  36. var TimerID; // Timer ID
  37.  
  38. if (document.all) {
  39.  
  40. document.onmouseover = doRainbowAnchor;
  41.  
  42. document.onmouseout = stopRainbowAnchor;
  43.  
  44. }
  45.  
  46. else if (document.getElementById) {
  47.  
  48. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  49.  
  50. document.onmouseover = Mozilla_doRainbowAnchor;
  51.  
  52. document.onmouseout = Mozilla_stopRainbowAnchor;
  53.  
  54. }
  55.  
  56. function doRainbow(obj)
  57.  
  58. {
  59.  
  60. if (act == 0) {
  61.  
  62. act = 1;
  63.  
  64. if (obj)
  65.  
  66. objActive = obj;
  67.  
  68. else
  69.  
  70. objActive = event.srcElement;
  71.  
  72. clrOrg = objActive.style.color;
  73.  
  74. TimerID = setInterval("ChangeColor()",100);
  75.  
  76. }
  77.  
  78. }
  79.  
  80.  
  81.  
  82. function stopRainbow()
  83.  
  84. {
  85.  
  86. if (act) {
  87.  
  88. objActive.style.color = clrOrg;
  89.  
  90. clearInterval(TimerID);
  91.  
  92. act = 0;
  93.  
  94. }
  95.  
  96. }
  97.  
  98.  
  99.  
  100. function doRainbowAnchor()
  101.  
  102. {
  103.  
  104. if (act == 0) {
  105.  
  106. var obj = event.srcElement;
  107.  
  108. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  109.  
  110. obj = obj.parentElement;
  111.  
  112. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  113.  
  114. break;
  115.  
  116. }
  117.  
  118. if (obj.tagName == 'A' && obj.href != '') {
  119.  
  120. objActive = obj;
  121.  
  122. act = 1;
  123.  
  124. clrOrg = objActive.style.color;
  125.  
  126. TimerID = setInterval("ChangeColor()",100);
  127.  
  128. }
  129.  
  130. }
  131.  
  132. }
  133.  
  134.  
  135.  
  136. function stopRainbowAnchor()
  137.  
  138. {
  139.  
  140. if (act) {
  141.  
  142. if (objActive.tagName == 'A') {
  143.  
  144. objActive.style.color = clrOrg;
  145.  
  146. clearInterval(TimerID);
  147.  
  148. act = 0;
  149.  
  150. }
  151.  
  152. }
  153.  
  154. }
  155.  
  156.  
  157.  
  158. function Mozilla_doRainbowAnchor(e)
  159.  
  160. {
  161.  
  162. if (act == 0) {
  163.  
  164. obj = e.target;
  165.  
  166. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  167.  
  168. obj = obj.parentNode;
  169.  
  170. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  171.  
  172. break;
  173.  
  174. }
  175.  
  176. if (obj.nodeName == 'A' && obj.href != '') {
  177.  
  178. objActive = obj;
  179.  
  180. act = 1;
  181.  
  182. clrOrg = obj.style.color;
  183.  
  184. TimerID = setInterval("ChangeColor()",100);
  185.  
  186. }
  187.  
  188. }
  189.  
  190. }
  191.  
  192.  
  193.  
  194. function Mozilla_stopRainbowAnchor(e)
  195.  
  196. {
  197.  
  198. if (act) {
  199.  
  200. if (objActive.nodeName == 'A') {
  201.  
  202. objActive.style.color = clrOrg;
  203.  
  204. clearInterval(TimerID);
  205.  
  206. act = 0;
  207.  
  208. }
  209.  
  210. }
  211.  
  212. }
  213.  
  214.  
  215.  
  216. function ChangeColor()
  217.  
  218. {
  219.  
  220. objActive.style.color = makeColor();
  221.  
  222. }
  223.  
  224.  
  225.  
  226. function makeColor()
  227.  
  228. {
  229.  
  230. // Don't you think Color Gamut to look like Rainbow?
  231.  
  232. // HSVtoRGB
  233.  
  234. if (elmS == 0) {
  235.  
  236. elmR = elmV; elmG = elmV; elmB = elmV;
  237.  
  238. }
  239.  
  240. else {
  241.  
  242. t1 = elmV;
  243.  
  244. t2 = (255 - elmS) * elmV / 255;
  245.  
  246. t3 = elmH % 60;
  247.  
  248. t3 = (t1 - t2) * t3 / 60;
  249.  
  250. if (elmH < 60) {
  251.  
  252. elmR = t1; elmB = t2; elmG = t2 + t3;
  253.  
  254. }
  255.  
  256. else if (elmH < 120) {
  257.  
  258. elmG = t1; elmB = t2; elmR = t1 - t3;
  259.  
  260. }
  261.  
  262. else if (elmH < 180) {
  263.  
  264. elmG = t1; elmR = t2; elmB = t2 + t3;
  265.  
  266. }
  267.  
  268. else if (elmH < 240) {
  269.  
  270. elmB = t1; elmR = t2; elmG = t1 - t3;
  271.  
  272. }
  273.  
  274. else if (elmH < 300) {
  275.  
  276. elmB = t1; elmG = t2; elmR = t2 + t3;
  277.  
  278. }
  279.  
  280. else if (elmH < 360) {
  281.  
  282. elmR = t1; elmG = t2; elmB = t1 - t3;
  283.  
  284. }
  285.  
  286. else {
  287.  
  288. elmR = 0; elmG = 0; elmB = 0;
  289.  
  290. }
  291.  
  292. }
  293.  
  294. elmR = Math.floor(elmR).toString(16);
  295.  
  296. elmG = Math.floor(elmG).toString(16);
  297.  
  298. elmB = Math.floor(elmB).toString(16);
  299.  
  300. if (elmR.length == 1) elmR = "0" + elmR;
  301.  
  302. if (elmG.length == 1) elmG = "0" + elmG;
  303.  
  304. if (elmB.length == 1) elmB = "0" + elmB;
  305.  
  306. elmH = elmH + rate;
  307.  
  308. if (elmH >= 360)
  309.  
  310. elmH = 0;
  311.  
  312. return '#' + elmR + elmG + elmB;
  313.  
  314. }
  315.  
  316. //]]>
  317.  
  318. </script>
  319.  
  320.  
  321. <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
  322.  
  323. <meta name="color:background" content="#eeeeee">
  324. <meta name="color:text" content="#000000">
  325. <meta name="color:link" content="#0000000">
  326. <meta name="color:link hover" content="#888888">
  327. <meta name="font:text" content="#000000">
  328. <meta name="color:post" content="#ffffff">
  329. <title>{title}</title>
  330. <link rel="shortcut icon" href="{favicon}">
  331.  
  332. <style type="text/css">
  333. a {color: {color:link}; text-decoration: none; text-transform: none;}
  334. a:hover {color: {color:link hover}; background-color: transparent; text-decoration: none;}
  335.  
  336. body {background: {color:background};color:{color:text};font-family:{font:text};}
  337. ::-webkit-transition { -webkit-transition:all 0.3s ease-out; -moz-transition:all 0.3s ease-out;}
  338.  
  339. p {margin: 6px 0 0 0}
  340.  
  341. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 4px; }
  342. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  343. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  344. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 3px solid {color:background}; }
  345.  
  346. blockquote img{max-width: 470px!important}
  347. blockquote blockquote img{max-width: 450px!important}
  348. blockquote blockquote blockquote img{max-width: 430px!important}
  349. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  350.  
  351. #tudo {text-align: center; margin: 50px auto 20px auto; z-index: 1; width: 935px; position:fixed; }
  352.  
  353. #entries{float: left; margin-left:430px; margin-top: 22px; position: relative; border-left: 1px solid {color:background}}
  354.  
  355. #msd {width: 350px; height: 350px;margin-top: 30px; position:fixed; overflow:hidden; padding:3px; background-color: {color:sidebar};}
  356.  
  357.  
  358.  
  359. .danpost {width: 500px; background-color: {color:post}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: tahoma; font-size: 11px;}
  360.  
  361. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  362. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link}; font-weight: normal; line-height: 18px;}
  363. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:link hover}; font-weight: normal; line-height: 18px;}
  364.  
  365. .image {text-align: center; border: 0px}
  366. .image img {max-width: 500px; margin-bottom: 2px }
  367.  
  368. .oiqqtt {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  369. .oiqqtts {text-align: center; text-transform: none; margin-bottom: 5px;}
  370. .oiqqtts a, a:hover{text-transform: none;}
  371.  
  372. .chat {line-height: 13px; list-style: none }
  373. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  374. .person1 {color: {color:text}; padding: 2px; }
  375. .person1 .label {font-weight: bold; color:{color:text}}
  376. .person2 {color: {color:text}; padding: 2px; }
  377. .person2 .label {font-weight: bold; color:{color:text}}
  378.  
  379. .player {background-color: #000; text-align: left; display:block;}
  380.  
  381. /* asker */
  382.  
  383. .asker {width: 480px; background-color: transparent; color:#969696; padding: 5px;}
  384. .asker img{float: left; padding: 0px 5px 0px 0px}
  385. .asker a{font-size: 11px; font-weight: bold; color:#969696; text-transform: lowercase; line-height: 11px; padding: 0; margin: 0}
  386. .asker a:hover{font-size: 11px; font-weight: bold; color:#969696; background-color: transparent; text-transform: uppercase; line-height:11px; padding: 0; margin: 0}
  387. .question {font-size: 10px;}
  388. .answer {padding: 4px}
  389. .answer img {max-width: 470px;}
  390.  
  391. #oidata {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11;}
  392. #oidata a {font-size: 9px;}
  393.  
  394. .tags {color: {color:text}; font-size: 9px; font-family: {font:text}; display: inline; list-style: none; text-transform: lowercase;}
  395. .tags a {font-size: 9px; color: {color:links}; display: inline; list-style: none; text-transform: lowercase;}
  396.  
  397. #cap {width: 500px; margin-top: -2px;}
  398. .source {display: none;}
  399.  
  400. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  401. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  402. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  403. .notes img{display: none; border:0px}
  404.  
  405. .question {
  406. color: {color:text};
  407. font-size: 9px;
  408. font-weight: normal;
  409. font-family: {font:body};
  410. line-height:95%;
  411. background: {color:ask};
  412. margin: 0 0 10px 0;
  413. padding: 10px 15px;
  414. position: relative;}
  415.  
  416. .questionarrow {
  417. width: 13px;
  418. height: 7px;
  419. font-size:30px;
  420. font-family: verdana;
  421. position: absolute;
  422. color: {color:ask};
  423. bottom: -3.5px;
  424. left: 240px;}
  425.  
  426.  
  427.  
  428.  
  429.  
  430. .fj {font-size: 130px; font-family: arial; line-height: 95px; margin-left: 5px; color: {color: text}; opacity:0.15; -moz-opacity: 0.15; filter: alpha(opacity=15);}
  431. .jf {font-size: 17px; font-family: Euphemia; letter-spacing: -1px; line-height: 20px; color: {color:text}; margin-left: 35px; margin-top: -92px; }
  432.  
  433. .qsource{margin-top: -13px; margin-right: 15px;text-align: right}
  434.  
  435. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  436.  
  437. ::-webkit-scrollbar {background:{color:bg scroll};width:5px;}
  438. ::-webkit-scrollbar-thumb {background:{color:scroll};}
  439.  
  440.  
  441. @font-face {font-family:megrim; src: url('http://static.tumblr.com/l65fqwv/Rmpm4i1q0/megrim.ttf');}
  442.  
  443.  
  444. #tumblr_controls{position: fixed!important}
  445. #tumblr_controls{position: fixed!important}
  446. #tumblr_controls{position: fixed!important}
  447. #tumblr_controls{position: fixed!important}
  448.  
  449. @font-face { font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  450.  
  451. @font-face {
  452.  
  453. font-family: 'vv';
  454.  
  455. font-style: normal;
  456.  
  457. font-weight: normal;
  458.  
  459. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  460.  
  461. }
  462.  
  463. /*** Paginação by madlyluv.com ***/
  464. #paginacaoml {text-align:center;font-size: 10px; font-weight: bold; line-height: 21px;background:{color:sidebar};height:18px;position:fixed;width:190px;padding:1px;margin-left:192px;margin-top:277px;line-height:16px;}
  465. #paginacaoml a {-webkit-transition-duration:0.7s;background: {color:bg links hover}; margin: 0 0px 0 0; padding: 2px 4px; color: {color:cor links hover}; text-decoration: none;line-height:0px;font-size:8px;font-family:verdana;font-weight:bold;}
  466. #paginacaoml a:hover {background: {color:sidebar}; border: none;color:{color:sidebar text};}
  467. #paginacaoml span.pagina_atual {background: {color:bg links}; margin: 0 1px 0 0; padding: 0px 4px 0px; color: {color:cor links}; text-decoration: none;}
  468. #paginacaoml span.info {background: {color:bg links}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:cor links}; text-decoration: none;}
  469.  
  470. .© {position:fixed;font-family:verdana;font-size:12px;margin-top:100px;margin-left:238px;background:{color:sidebar};text-align:center;line-height:13px;padding:3px;margin-top:55px;font-weight:bold;padding:1px;height:18px;margin-top:277px;margin-left:385px;width:39px;}
  471. .© a {color:{color:sidebar text}}
  472. .© a:hover {font-weight:bold;}
  473.  
  474. .photo {position:fixed; width:160px; padding:0px; background-color:{color:sidebar bgs}; overflow: hidden;-webkit-transition: all 1.6s ease; margin-top:110px; margin-left:260px;-webkit-transition-duration:2.0s;margin-top:110px;border:3px solid {color:sidebar};height:160px;}
  475. .photo:hover {-webkit-transition: all 0.5s ease;}
  476. .photo img {display: block;width:160px; height:160px;-webkit-transition-duration: 0.2s;}
  477. .photo:hover{border:3px solid {color:bg links hover};}
  478.  
  479. .photo2 {position:fixed; width:120px; padding:0px; background-color:{color:sidebar bgs}; overflow: hidden;-webkit-transition: all 1.6s ease; margin-top:0px;margin-left:200px;-webkit-transition-duration:2.0s;border: 3px solid {color:sidebar bgs};top:52px;height:150px; }
  480. .photo2:hover {opacity:0.8;-webkit-transition: all 1.6s ease;}
  481. .photo2 img {display: block;width:120px; height:150px;}
  482. .photo2 img:hover {-webkit-transform: rotate(360deg);opacity:0.1;}
  483.  
  484.  
  485. .sc {text-align:center;font-family:verdana;font-size:9px;height:50px;overflow:hidden;}
  486. .sc2 {font-family:georgia;font-size:13px;height:50px;overflow:hidden;width:150px;}
  487. .scr {position:fixed;text-align:center;width:154px;padding:1px;background:transparente;height:70px;margin-left:200px;margin-top:200px;font-family:georgia;font-size:10px;}
  488.  
  489. .rs {position:fixed;width:100px;margin-top:10px;margin-left:370px;}
  490. .rs img {display:block;background:{color:sidebar bgs};margin-bottom:1px;padding:5px 5px 4px;opacity:.3;-webkit-transition:all .5s ease-out;border-radius:190px;}
  491. .rs img:hover {opacity:.4;-webkit-transform: rotate(-360deg);font-family:georgia;font-size:10px;}
  492. .scr a {font-family:georgia;font-size:10px;font-style:italic;}
  493. .scr a:hover {opacity:.5;}
  494.  
  495. .l {width:230px;position:fixed;margin-left:210px;margin-top:230px;}
  496. .l a {font-family:verdana;display:block;float:left;background:{color:bg links sidebar};color:{color:bg links sidebar};margin-bottom:1px;width:11px;padding:3px;height:11px;overflow:hidden;margin-left:1px;font-size:9px;text-transform:lowercase;border-radius:90px;line-height:15px;-webkit-transition-duration:1.0s;}
  497. .l a:hover {font-weight:bold;height:100px;background:{color:bg links sidebar hover};color:{color:cor links sidebar hover}}
  498.  
  499. .d {font-size:120px;text-align:center;position:fixed; width:240px; padding:0px; background-color:{color:sidebar bgs}; overflow: hidden; margin-top:0px; margin-left:147px;border-left: 3px solid {color:sidebar bgs};border-bottom: 3px solid {color:sidebar bgs};border-top: 3px solid {color:sidebar bgs};height:150px;opacity:0;color:{color:cor texto sidebar com bgs};font-family:tinytots;line-height:150px;top:52px;}
  500. .d a {color:{color:cor texto sidebar com bgs};font-family:verdana;font-size:9px;letter-spacing:0px;font-weight:bold;}
  501. .d a:hover {font-weight:bold;}
  502. .d:hover {opacity:0.3;}
  503.  
  504. .links {position:fixed;width:autopx;margin-left:192px;margin-top:131px;top:52px;}
  505. .links a {display:block;margin-bottom:1px;background:{color:bg links};color:{color:cor links};font-family:homenaje;font-size:12px;padding:3px;height:10px;width:60px;text-align:center;text-transform:uppercase;-webkit-transition-duration:0.3s;border-left:1px solid transparent;line-height:9px;font-family:homenaje;font-size:12px;}
  506. .links a:hover {background:{color:bg links hover}
  507. ;color:{color:cor links hover}; -webkit-transform: rotateX(180deg);}
  508.  
  509. .desc {font-family:verdana;font-size:9px;text-align:center;position:fixed; width:95px; padding:0px; background-color:{color:sidebar bgs}; overflow: hidden;-webkit-transition: all 1.6s ease; margin-top:0px; margin-left:394px;-webkit-transition-duration:2.0s;margin-top:314px; border-top:5px solid {color:sidebar}; border-left:5px solid {color:sidebar}; border-right:5px solid {color:sidebar}; border-bottom:5px solid {color:sidebar};height:96px;background:{color:sidebar};color:{color:sidebar text};}
  510.  
  511. @font-face { font-family: 'Loved by the King'; font-style: normal; font-weight: normal; src: local('Loved by the King'), local('LovedbytheKing'), url('http://themes.googleusercontent.com/static/fonts/lovedbytheking/v3/wg03xD4cWigj4YDufLBSr8SuHxUvEE05hEBp-kiqXZE.woff') format('woff'); }
  512. @font-face {font-family: "buymore";src: url('http://static.tumblr.com/ygkexbz/mpZm51k9i/buy_more.ttf');}
  513.  
  514. .f {width: 500px;; padding: 10px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: fixed; color:{color:cor texto sidebar com bgs}; margin-left:394px;top:52px; background-color: {color:sidebar bgs};text-align:left;font-family:Loved by the king;font-size:15px;border-bottom:1px solid {color:bg};}
  515.  
  516. #prfl img {position:fixed;width:61px;height:58px;border:3px solid {color:sidebar};-webkit-transition-duration:0.8s;margin-left:192px;margin-top:110px;}
  517. #prfl img:hover {-webkit-transform: rotateY(180deg); border:3px solid {color:bg links hover};}
  518. </style>
  519. <meta name="color:scroll" content="#eeeeee">
  520. <meta name="color:bg scroll" content="#ffffff">
  521. <meta name="color:sidebar text" content="#000000">
  522. <meta name="color:bg links" content="#ffffff">
  523. <meta name="color:cor links" content="#000000">
  524. <meta name="color:bg links hover" content="#000000">
  525. <meta name="color:cor links hover" content="#ffffff">
  526. <meta name="color:sidebar" content="#ffffff">
  527.  
  528. <meta name="text:link1" content="/">
  529. <meta name="text:link1 title" content="um">
  530.  
  531. <meta name="text:link2" content="/">
  532. <meta name="text:link2 title" content="dois">
  533.  
  534. <meta name="text:link3" content="/">
  535. <meta name="text:link3 title" content="tres">
  536.  
  537. <meta name="text:link4" content="/">
  538. <meta name="text:link4 title" content="quatro">
  539.  
  540. <meta name="text:link5" content="/">
  541. <meta name="text:link5 title" content="cinco">
  542.  
  543. <meta name="text:link6" content="/">
  544. <meta name="text:link6 title" content="seis">
  545.  
  546. <meta name="image:sidebar" content="http://static.tumblr.com/dtlaqkt/tAkm605si/6.jpg">
  547. </head>
  548.  
  549. <body>
  550.  
  551. <div id="paginacaoml">
  552. {block:JumpPagination length="8"}
  553. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  554. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  555. {/block:JumpPagination}
  556. </div>
  557.  
  558. <div class="photo">
  559. <img src="{image:sidebar}">
  560. </div>
  561. <div id="prfl">
  562. <img src="{PortraitUrl-48}">
  563. </div>
  564. <div class="links">
  565. <a href="{text:link1}">{text:link1 title}</a>
  566. <a href="{text:link2}">{text:link2 title}</a>
  567. <a href="{text:link3}">{text:link3 title}</a>
  568. <a href="{text:link4}">{text:link4 title}</a>
  569. <a href="{text:link5}">{text:link5 title}</a>
  570. <a href="{text:link6}">{text:link6 title}</a>
  571. </div>
  572.  
  573. <div class="©">
  574. <a href="http://interceptada.tumblr.com" title="theme by interceptada with details from i-ngenuidade">©</a>
  575. </div>
  576. <div id="entries">
  577. {block:Posts}
  578. <div class="danpost">
  579.  
  580. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  581.  
  582. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  583.  
  584. {block:Photoset}{Photoset-500}{/block:Photoset}
  585.  
  586. {block:quote}
  587.  
  588. <o class="fj">“</o><div class="jf">{quote}</div><br>
  589. {block:Source}<div class="qsource"alt="" title="via" ><font color="{color:xizinhodoslinks}">~ {Source}</font> ♡ </div>{/block:Source}
  590. {/block:Quote}
  591.  
  592. {/block:quote}
  593.  
  594. {block:Link}
  595. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  596. {block:Description}{Description}{/block:Description}
  597. {/block:Link}
  598.  
  599. {block:Chat}
  600. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  601. <div class="chat"><ul>{block:Lines}
  602. <li class="person{UserNumber}">{block:Label}
  603. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  604. {/block:Chat}
  605.  
  606. {block:Audio}
  607. <div class="player">{AudioPlayerBlack}</div>
  608. {block:Caption}{Caption}{/block:Caption}
  609. {/block:Audio}
  610.  
  611. {block:Video}{Video-500}{/block:Video}
  612.  
  613.  
  614. {block:Answer}
  615. <div id="asker"alt="" title="this asked" >{Asker}<b>said to me:</b> {Question}</div>
  616. <div class="answer"alt="" title="" >{Answer}</div>
  617. {/block:Answer}
  618.  
  619. <div id="cap">
  620. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  621. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  622. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  623.  
  624. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  625. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  626. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  627. {/block:ContentSource}</div></div>
  628. <br>
  629.  
  630.  
  631. <div id="oidata">
  632. {block:Date}<div class="tags">{block:HasTags}<b>in(direct):</b> {block:Tags}<font color="{color:xizinhodoslinks}"># </font><a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  633. <a href="{Permalink}">{TimeAgo}</a> {block:NoteCount} • <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount} {block:IndexPage} <font color="{color:xizinhodoslinks}">♥</font> •
  634. <a href="{ReblogURL}" target="_blank"><img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png"class="" title=""> Reblog, baby </a>{/block:IndexPage}
  635. {block:RebloggedFrom}<br>source: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} • via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  636. {/block:RebloggedFrom}
  637. </div>
  638. </div>{/block:Date}
  639.  
  640.  
  641. {/block:Posts}
  642. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651. </div>
  652. </div>
  653. </div>
  654. </div>
  655. </div>
  656. </div>
  657. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement