Advertisement
princefoolish

Theme 05

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