babirdgs

Theme Twenty Two

May 3rd, 2012
1,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 17.24 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <!-- THEME BY DEFECTSS, DO NOT COPY --!>
  6.  
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8.  
  9. <head> <!-- DEFAULT VARIABLES -->
  10. <meta name="color:background" content="#ffffff" />
  11. <meta name="color:text" content="#3d3d3d" />
  12. <meta name="color:border" content="#3d3d3d" />
  13. <meta name="color:entry" content="#F7F7F5" />
  14. <meta name="color:descricao" content="#F7F7F5" />
  15. <meta name="color:linkx" content="#F7F7F5" />
  16. <meta name="color:linkss" content="#3d3d3d" />
  17. <meta name="color:pt1" content="#000000" />
  18. <meta name="color:pt2" content="#FFFFFF" />
  19. <meta name="color:pt3" content="#F8F8F8" />
  20. <meta name="color:pt4" content="#656565" />
  21. <meta name="color:subtitulo" content="#000000" />
  22. <meta name="color:bgtitulo" content="#ffffff" />
  23. <meta name="color:info" content="#000000" />
  24. <meta name="color:linksin" content="#ffffff" />
  25. <meta name="color:link" content="#470E1A" />
  26. <meta name="image:sidebar" content=""/>
  27. <meta name="image:background" content=""/>
  28. <meta name="text:subtitulo" content="nobody can take that from me" />
  29. <meta name="text:titulo" content="like a skyscraper" />
  30. <meta name="text:titulo2" content="seja voce, mesmo que seja estranho" />
  31. <meta name="text:Link1" content="" />
  32. <meta name="text:Link1 Title" content="" />
  33. <meta name="text:Link2" content="" />
  34. <meta name="text:Link2 Title" content="" />
  35. <meta name="text:Link3" content="" />
  36. <meta name="text:Link3 Title" content="" />
  37.  
  38.  
  39. <script type="text/javascript">
  40.  
  41.  
  42.  
  43. // <![CDATA[
  44.  
  45.  
  46.  
  47. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  48.  
  49.  
  50.  
  51. var fgcolour="{color:pt1}"; // foreground colour
  52.  
  53.  
  54.  
  55. var hlcolour="{color:pt2}"; // highlight colour
  56.  
  57.  
  58.  
  59. var bgcolour="{color:pt3}"; // background colour
  60.  
  61.  
  62.  
  63. var glcolour="{color:pt4}"; // colour of glow around letters
  64.  
  65.  
  66.  
  67. var speed=66; // speed colours change, 1 second = 1000
  68.  
  69.  
  70.  
  71. var delay=50; // how long to wait between wipes
  72.  
  73.  
  74.  
  75. var alink="/"; // page to link text to (set to ="" for no link)
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83. /****************************
  84.  
  85.  
  86.  
  87. *Multi-Wipe Neon Text Effect*
  88.  
  89.  
  90.  
  91. *(c)2003-12 mf2fm web-design*
  92.  
  93.  
  94.  
  95. *  http://www.mf2fm.com/rv  *
  96.  
  97.  
  98.  
  99. * DON'T EDIT BELOW THIS BOX *
  100.  
  101.  
  102.  
  103. ****************************/
  104.  
  105.  
  106.  
  107. var w_txt, w_txl;
  108.  
  109.  
  110.  
  111. var w_flp=bgcolour;
  112.  
  113.  
  114.  
  115. var w_sty=Math.floor(Math.random()*8);
  116.  
  117.  
  118.  
  119. var w_cnt=-1;
  120.  
  121.  
  122.  
  123. var wipes=new Array();
  124.  
  125.  
  126.  
  127. var wrand=new Array();
  128.  
  129.  
  130.  
  131. window.onload=function() { if (document.getElementById) {
  132.  
  133.  
  134.  
  135. var i, wiper, wipei;
  136.  
  137.  
  138.  
  139. wiper=document.getElementById("wipe");
  140.  
  141.  
  142.  
  143. w_txt=wiper.firstChild.nodeValue;
  144.  
  145.  
  146.  
  147. w_txl=w_txt.length;
  148.  
  149.  
  150.  
  151. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  152.  
  153.  
  154.  
  155. for (i=0; i<w_txl; i++) {
  156.  
  157.  
  158.  
  159.   wipei=document.createElement("span");
  160.  
  161.  
  162.  
  163.   wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  164.  
  165.  
  166.  
  167.   wipes[i]=wipei.style;
  168.  
  169.  
  170.  
  171.   wipes[i].textShadow=glcolour+" 0px 0px 5px";
  172.  
  173.  
  174.  
  175.   wipes[i].color=fgcolour;
  176.  
  177.  
  178.  
  179.   wiper.appendChild(wipei);
  180.  
  181.  
  182.  
  183. }
  184.  
  185.  
  186.  
  187. if (alink) {
  188.  
  189.  
  190.  
  191.   wiper.style.cursor="pointer";
  192.  
  193.  
  194.  
  195.   wiper.onclick=function() { top.location.href=alink; }
  196.  
  197.  
  198.  
  199. }
  200.  
  201.  
  202.  
  203. for (i=0; i<w_txl; i++) wrand[i]=i;
  204.  
  205.  
  206.  
  207. wiper=setInterval("randwipe()", speed);
  208.  
  209.  
  210.  
  211. }}
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219. function c(i, shade) {
  220.  
  221.  
  222.  
  223. if (shade==bgcolour) wipes[i].textShadow="none";
  224.  
  225.  
  226.  
  227. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  228.  
  229.  
  230.  
  231. wipes[i].color=shade;
  232.  
  233.  
  234.  
  235. }
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243. function randwipe() {
  244.  
  245.  
  246.  
  247. var w_old;
  248.  
  249.  
  250.  
  251. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  252.  
  253.  
  254.  
  255. else {
  256.  
  257.  
  258.  
  259.   w_cnt=-1;
  260.  
  261.  
  262.  
  263.   w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  264.  
  265.  
  266.  
  267.   w_old=w_sty;
  268.  
  269.  
  270.  
  271.   while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  272.  
  273.  
  274.  
  275. }
  276.  
  277.  
  278.  
  279. }
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295. function wipe0() { // curtains
  296.  
  297.  
  298.  
  299. if (w_cnt<Math.floor(w_txl/2)) {
  300.  
  301.  
  302.  
  303.   c(w_cnt, hlcolour);
  304.  
  305.  
  306.  
  307.   c(w_txl-w_cnt-1, hlcolour);
  308.  
  309.  
  310.  
  311. }
  312.  
  313.  
  314.  
  315. else if (w_cnt<w_txl) {
  316.  
  317.  
  318.  
  319.   c(w_cnt, w_flp);
  320.  
  321.  
  322.  
  323.   c(w_txl-w_cnt-1, w_flp);
  324.  
  325.  
  326.  
  327. }
  328.  
  329.  
  330.  
  331. }
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339. function wipe1() { // random
  340.  
  341.  
  342.  
  343. var i, rand, temp;
  344.  
  345.  
  346.  
  347. if (w_cnt==0) {
  348.  
  349.  
  350.  
  351.   for (i=0; i<w_txl; i++) {
  352.  
  353.  
  354.  
  355.     rand=Math.floor(Math.random()*w_txl);
  356.  
  357.  
  358.  
  359.     temp=wrand[i];
  360.  
  361.  
  362.  
  363.     wrand[i]=wrand[rand];
  364.  
  365.  
  366.  
  367.     wrand[rand]=temp;
  368.  
  369.  
  370.  
  371.   }
  372.  
  373.  
  374.  
  375. }
  376.  
  377.  
  378.  
  379. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  380.  
  381.  
  382.  
  383. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  384.  
  385.  
  386.  
  387. }
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395. function wipe2() { // forwards
  396.  
  397.  
  398.  
  399. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  400.  
  401.  
  402.  
  403. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  404.  
  405.  
  406.  
  407. }
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415. function wipe3() { // backwards
  416.  
  417.  
  418.  
  419. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  420.  
  421.  
  422.  
  423. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  424.  
  425.  
  426.  
  427. }
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435. function wipe4() { // searchlight
  436.  
  437.  
  438.  
  439. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  440.  
  441.  
  442.  
  443. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  444.  
  445.  
  446.  
  447. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  448.  
  449.  
  450.  
  451. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  452.  
  453.  
  454.  
  455. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  456.  
  457.  
  458.  
  459. }
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467. function wipe5() { // fade
  468.  
  469.  
  470.  
  471. var i;
  472.  
  473.  
  474.  
  475. if (w_cnt<w_txl+3) {
  476.  
  477.  
  478.  
  479.   var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  480.  
  481.  
  482.  
  483.   var temp="#";
  484.  
  485.  
  486.  
  487.   for (i=1; i<6; i+=2) {
  488.  
  489.  
  490.  
  491.     var hex1=parseInt(start.substring(i,i+2),16);
  492.  
  493.  
  494.  
  495.     var hex2=parseInt(w_flp.substring(i,i+2),16);
  496.  
  497.  
  498.  
  499.     temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  500.  
  501.  
  502.  
  503.   }
  504.  
  505.  
  506.  
  507.   for (i=0; i<w_txl; i++) c(i, temp);
  508.  
  509.  
  510.  
  511. }
  512.  
  513.  
  514.  
  515. }
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523. function wipe6() { // flash
  524.  
  525.  
  526.  
  527. var i;
  528.  
  529.  
  530.  
  531. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  532.  
  533.  
  534.  
  535.   if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  536.  
  537.  
  538.  
  539.   else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  540.  
  541.  
  542.  
  543.   else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  544.  
  545.  
  546.  
  547. }
  548.  
  549.  
  550.  
  551. }
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559. function wipe7() { // checkerboard
  560.  
  561.  
  562.  
  563. var qtr=Math.floor(w_txl/4);
  564.  
  565.  
  566.  
  567. if (w_cnt<qtr) {
  568.  
  569.  
  570.  
  571.   c(w_cnt, hlcolour);
  572.  
  573.  
  574.  
  575.   c(w_cnt+2*qtr, hlcolour);
  576.  
  577.  
  578.  
  579. }
  580.  
  581.  
  582.  
  583. else if (w_cnt<2*qtr) {
  584.  
  585.  
  586.  
  587.   c(w_cnt-qtr, w_flp);
  588.  
  589.  
  590.  
  591.   c(w_cnt+qtr, w_flp);
  592.  
  593.  
  594.  
  595. }
  596.  
  597.  
  598.  
  599. else if (w_cnt<3*qtr) {
  600.  
  601.  
  602.  
  603.   c(w_cnt-qtr, hlcolour);
  604.  
  605.  
  606.  
  607.   c(w_cnt+qtr, hlcolour);
  608.  
  609.  
  610.  
  611. }
  612.  
  613.  
  614.  
  615. else if (w_cnt<w_txl) {
  616.  
  617.  
  618.  
  619.   c(w_cnt-2*qtr, w_flp);
  620.  
  621.  
  622.  
  623.   c(w_cnt, w_flp);
  624.  
  625.  
  626.  
  627. }
  628.  
  629.  
  630.  
  631. }
  632.  
  633.  
  634.  
  635. // ]]>
  636.  
  637.  
  638.  
  639. </script>
  640.         <title>{Title}</title>
  641.         <link rel="shortcut icon" href="{Favicon}">
  642.         <link rel="alternate" type="application/rss+xml" href="{RSS}">
  643.         {block:Description}
  644.             <meta name="description" content="{MetaDescription}" />
  645.         {/block:Description}
  646.  
  647. {block:IfEnableEndlessScrolling}
  648. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  649. {/block:IfEnableEndlessScrolling}
  650.  
  651.  
  652.     <style type="text/css">
  653.  
  654. body {background-color:{color:background}; color:{color:text}; font-family: verdana; font-size:11px; line-height:110%; margin:0px; background-image:url('{image:background}'); background-attachment: fixed}
  655.  
  656. a {color:{color:link}; text-decoration: none; font-size: 9px}
  657. a:hover {color:{color:text}; text-decoration: none}
  658. p{margin: 1px 0 0 0}
  659. blockquote{margin: 1px 0 0 5px; border-left: 3px solid; color:#000000; padding:0 0 0 5px;}
  660.  
  661.  
  662. #ttl {float: left; margin-top:270px; margin-left:120px; width: 188px; background-color: {color:bgtitulo}; color: #000; padding: 8px; 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: 26px; border: 0px solid #FFF; }
  663.  
  664. #ttl a{font-size: 12px; color: ; }
  665.  
  666. #sidebarimage{margin:14px auto 16px auto; margin-left: 120px;text-align:center; position: fixed; }
  667.  
  668. #sidebarimage img{width:200px; height:246px; margin-top:5px; text-align:center; border: 2px solid {color:border};}
  669.  
  670. #links {width: 210px; float: left; margin-left:120px; margin-top: 227px; padding: 0px; text-align: center; position: absolute; padding: 2px; z-index: 999; -webkit-transition: 1s ease-in; -moz-transition: 1s ease-in; transition: 1s ease-in; opacity: 0.8;}
  671.  
  672.  
  673.  
  674. #links a {float: left; margin-left: 0px; display: block; letter-spacing: 0px; font-family: calibri; font-size: 10px; text-align: center; width: 67px; background-color: {color:linkx}; color:{color:linkss}; text-decoration: none; line-height: 20px; height: 19px; overflow: hidden;  margin-top: 0px; margin-bottom: 100px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; text-transform: uppercase;}
  675.  
  676.  
  677.  
  678. #links  a:hover{text-align: center; background-color: #838383; color:#FFFFFF; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  679.  
  680.  
  681.  
  682. .erro a{border-right: 0px solid #F0F0F0;}
  683.  
  684. .erro a:hover {border-right:0px solid #838383;}
  685.  
  686.  
  687. .doix {margin-top: 19px; position: fixed;}
  688.  
  689.  
  690.  
  691. .aumente a{text-align:center; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  692.  
  693. .aumente a:hover {padding-top: 20px; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  694.  
  695.  
  696. #creditt {font-family: calibri; margin-top:0px; margin-left:120px; height:12px; border-bottom: 0px solid #E4CBB7; background-color:transparent;  padding: 0px; width: 200px; color: {color:text}; padding: 4px; text-align: justify; font-size:10px; position:fixed;}
  697.  
  698.  
  699. blockquote {margin: 5px 5px 5px 5px; border-left: 4px solid {color:background}; padding-left: 5px; }
  700. blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:post};}
  701. blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  702. blockquote blockquote blockquote blockquote {margin: 0px 5px 0px 5px; border-left: 4px solid {color:background}; }
  703.  
  704. blockquote img{max-width: 470px!important}
  705. blockquote blockquote img{max-width: 450px!important}
  706. blockquote blockquote blockquote img{max-width: 430px!important}
  707. blockquote blockquote blockquote blockquote img{max-width: 410px!important}
  708.  
  709. #xp {text-align: center; width: 935px; margin: 50px auto 50px auto; padding: 0px; z-index: 1}
  710.  
  711. #xright {float: left; margin-left: 325px; margin-top: 19px; }
  712.  
  713. .postbox {width: 490px; background-color: {color:entry}; padding: 15px; margin-bottom: 1px; text-align: justify; font-family: verdana; font-size: 11px; position: relative;}
  714.  
  715. h1 {font-family: georgia; text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  716. h1 a {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  717. h1 a:hover {text-align: center; font-size: 16px; text-transform: uppercase; color: {color:text}; font-weight: normal; line-height: 18px;}
  718.  
  719. .image {text-align: center; border: 0px}
  720. .image img {max-width: 500px; margin-bottom: 2px }
  721.  
  722. .xquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 3px;}
  723. .xquotesource {text-align: center; text-transform: none; margin-bottom: 5px;}
  724. .xquotesource a, a:hover{text-transform: none;}
  725.  
  726. .chat {line-height: 13px; list-style: none }
  727. .chat ul {line-height: 13px; list-style: none; padding: 5px; line-height:14px;}
  728. .person1 {color: {color:text}; padding: 2px; }
  729. .person1 .label {font-weight: bold; color:{color:text}}
  730. .person2 {color: {color:text}; padding: 2px; }
  731. .person2 .label {font-weight: bold; color:{color:text}}
  732.  
  733. .player {background-color: #000; text-align: left; display:block;}
  734.  
  735. #asker {font-size: 11px; font-family: {font:text}; text-align: justify;}
  736. .answer {padding: 2px}
  737. .answer img {max-width: 470px;}
  738.  
  739.  
  740. #xdate {text-align: left; font-size: 9px; font-family: verdana; text-transform: lowercase; z-index: 11; }
  741. #xdate a {font-size: 9px; margin-left: 0px;}
  742.  
  743. .tags {color: {color:text}; font-size: 9px; font-family: verdana; display: inline; list-style: none; text-transform: lowercase; margin-left: 0px;}
  744. .tags a {font-size: 9px; color: verdana; display: inline; list-style: none; text-transform: lowercase; margin-left: 1px;}
  745.  
  746. #cap {width: 500px; margin-top: -2px;}
  747. .source {display: none;}
  748.  
  749. .notes {width: 530px; padding: 0px; margin-top: 5px; margin-bottom: 10px; font-size: 9px; text-align: left}
  750. ol.notes {list-style: none; margin: 0 20px 0 0px; padding: 0px; z-index: 11;}
  751. ol.notes li {background-color: {color:post}; margin-bottom: 5px; padding: 5px; }
  752. .notes img{display: none; border:0px}
  753.  
  754. ::-webkit-scrollbar{width:5px;height:5px;}
  755. ::-webkit-scrollbar-button:start:decrement
  756. ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color: #616161;}
  757. ::-webkit-scrollbar-track-piece{background-color: #ffffff; -webkit-border-radius:0;-webkit-border-bottom-right-radius:0px;-webkit-border-bottom-left-radius:0px;}
  758. ::-webkit-scrollbar-thumb:vertical{height:50px; background-color: #000000;-webkit-border-radius:px;}
  759. ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color: #616161;-webkit-border-radius:px;}
  760. #tumblr_controls{position: fixed!important}
  761. #tumblr_controls{position: fixed!important}
  762. #tumblr_controls{position: fixed!important}
  763. #tumblr_controls{position: fixed!important}
  764. </style>
  765.  
  766.     </head>
  767.    
  768.  
  769.     <body>
  770.  
  771. <div id="ttl"><span id="wipe">{text:titulo}</span><br><small><small><small><small><font color="{color:subtitulo}">{text:subtitulo}</font></small></small></small></small></br></div>
  772.  
  773. <div id="sidebarimage"><a href="/"><img src="{image:sidebar}"/></a></div>
  774.  
  775. <div class="doix"><div id="links">
  776.  
  777. <a href="{text:Link1}">{text:Link1 Title}</a>
  778.  
  779. <a href="{text:Link2}">{text:Link2 Title}</a>
  780.  
  781. <div class="erro"><a href="{text:Link3}">{text:Link3 Title}</a></div></div>
  782.  
  783.  
  784.  
  785. </div>
  786.  
  787.  
  788. <div id="creditt"><center>theme by <b>defectss</b>, dtls <a href="http://wolfss.tumblr.com">+</a> <a href="http://luvtopia.tumblr.com">+</a> ©</center></div></div></div></div>
  789.  
  790. <div id="paginacaoml"><div class="pagination"><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"></a>{/block:PreviousPage}{/block:Pagination}{block:JumpPagination length="5"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:Pagination}{block:NextPage}<a href="{NextPage}"></a>{/block:NextPage}{/block:Pagination}</center></div></div>
  791. <div id="entry">
  792.  
  793.  
  794. <div id="xright">
  795.  
  796. {block:Posts}
  797. <div class="postbox">
  798.  
  799. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  800.  
  801. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{/block:Photo}
  802.  
  803. {block:Photoset}{Photoset-500}{/block:Photoset}
  804.  
  805. {block:Quote}
  806. <div class="xquote">“{Quote}”</div>
  807. {block:Source}<div class="xquotesource"> — {Source}</div>
  808. {/block:Source}
  809. {/block:Quote}
  810.  
  811. {block:Link}
  812. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  813. {block:Description}{Description}{/block:Description}
  814. {/block:Link}
  815.  
  816. {block:Chat}
  817. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  818. <div class="chat"><ul>{block:Lines}
  819. <li class="person{UserNumber}">{block:Label}
  820. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  821. {/block:Chat}
  822.  
  823. {block:Audio}
  824. <div class="player">{AudioPlayerBlack}</div>
  825. {block:Caption}{Caption}{/block:Caption}
  826. {/block:Audio}
  827.  
  828. {block:Video}{Video-500}{/block:Video}
  829.  
  830.  
  831. {block:Answer}
  832. <div id="asker"><b>{Asker} <small>moaned:</small></b> {Question}</div>
  833. <div class="answer">{Answer}</div>
  834. {/block:Answer}
  835.  
  836.  
  837. <div id="cap">
  838. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  839. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  840. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  841.  
  842. <div class="source">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  843. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  844. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  845. {/block:ContentSource}</div></div>
  846. <br>
  847.  
  848.  
  849. <div id="xdate">
  850. {block:Date}<div class="tags">{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>&nbsp;&nbsp;{/block:Tags}<br>{/block:HasTags}</div>
  851. <a href="{Permalink}">{TimeAgo}</a>{block:NoteCount}, <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:IndexPage}, <a href="{ReblogUrl}" target="_blank">→ click to <b>orgasms</b></a>{/block:IndexPage}
  852. {block:RebloggedFrom}<br>posted by: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:RebloggedFrom}, reblogged by: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  853. {/block:RebloggedFrom}
  854. </div>
  855. </div>{/block:Date}
  856.  
  857.  
  858. {/block:Posts}
  859. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  860.  
  861. </div>
  862. </div>
  863. </div>
  864. </div>
  865.  
  866. </body>
  867. </html>
Advertisement
Add Comment
Please, Sign In to add comment