cadu

c4fajeste for twan

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