umlugardocaralho

theme #48

Apr 12th, 2012
1,954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.95 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. <!-- (c) #48
  6. ____________________________________________________________________________
  7.  
  8. theme por Bianca (rocklessly)
  9. be original (c)
  10. não copie, não adapte e não redistribua.
  11. _______________________________________________________________________________
  12.  
  13. #48 (c) --!>
  14.  
  15.  
  16. <head> <!-- DEFAULT VARIABLES -->
  17. <meta name="color:background" content="#eee" />
  18. <meta name="color:text" content="#000" />
  19. <meta name="color:post" content="#fff" />
  20. <meta name="color:title" content="#000" />
  21. <meta name="color:link" content="#000" />
  22. <meta name="color:link s" content="#fff" />
  23. <meta name="color:bg link s" content="#000" />
  24. <meta name="color:link s hover" content="#000" />
  25. <meta name="color:bg link s hover" content="#fff" />
  26. <meta name="color:text sidebar" content="#000" />
  27. <meta name="color:bubble" content="#000" />
  28. <meta name="color:sidebar" content="#fff" />
  29.  
  30. <meta name="color:barra1" content="#ccc" />
  31. <meta name="color:barra2" content="#ddd" />
  32. <meta name="color:barra3" content="#eee" />
  33. <meta name="color:barra4" content="#aaa" />
  34.  
  35. <meta name="if:Enable endless scrolling" content="0"/>
  36. <meta name="if:Sombreado" content="0"/>
  37. <meta name="if:Selecao" content="1"/>
  38. <meta name="if:Font Feminina" content="1"/>
  39.  
  40. <meta name="image:background" content=""/>
  41. <meta name="image:sidebar" content=""/>
  42.  
  43. <meta name="text:subtitle" content="se nao gostar da font e so tirar o font feminina no appearance" />
  44.  
  45.  
  46. <meta name="text:Link1" content="/#" />
  47. <meta name="text:Link1 Title" content="LINK ONE" />
  48. <meta name="text:Link2" content="/" />
  49. <meta name="text:Link2 Title" content="LINK TWO" />
  50. <meta name="text:Link3" content="/#" />
  51. <meta name="text:Link3 Title" content="LINK THREE" />
  52. <meta name="text:Link4" content="/#" />
  53. <meta name="text:Link4 Title" content="LINK FOUR" />
  54. <meta name="text:Link5" content="/#" />
  55. <meta name="text:Link5 Title" content="LINK FIVE" />
  56. <meta name="text:Link6" content="/#" />
  57. <meta name="text:Link6 Title" content="LINK FIVE" />
  58.  
  59. <script type="text/javascript">
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. // <![CDATA[
  68.  
  69.  
  70.  
  71.  
  72.  
  73. var bgcolour="#ffffff"; // background colour
  74.  
  75.  
  76.  
  77.  
  78.  
  79. var fgcolour="#000000"; // foreground colour
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. var speed=100; // speed of bubbling, lower is faster
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95. var shades=10; // number of shades of bubble
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. /****************************
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119. * Bubbling Text Effect *
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127. *(c) 2003-6 mf2fm web-design*
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. * http://www.mf2fm.com/rv *
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143. * DON'T EDIT BELOW THIS BOX *
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151. ****************************/
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159. var bubbcol=new Array();
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167. var bubbler, bubbtxt;
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175. var bubbchr=new Array();
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183. window.onload=function() { if (document.getElementById) {
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191. for (bubbler=0; bubbler<=shades; bubbler++) {
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199. bubbtxt="#";
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207. for (var i=1; i<6; i+=2) {
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215. var bg=parseInt(bgcolour.substring(i,i+2),16);
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231. }
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239. bubbcol[bubbler+1]=bubbtxt;
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247. }
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255. bubbler=document.getElementById("bubble");
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263. bubbtxt=bubbler.firstChild.nodeValue;
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279. for (var i=0; i<bubbtxt.length; i++) {
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287. var bubbi=document.createElement("span");
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295. bubbi.setAttribute("id", "bubb"+i);
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311. bubbler.appendChild(bubbi);
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319. }
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327. bubbler=setInterval ("bubbling()", speed);
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335. }}
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351. function dechex(dec) {
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359. var hex=dec.toString(16);
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367. if (dec<16) return "0"+hex;
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375. else return hex;
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383. }
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399. function bubbling() {
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407. for (var i=0; i<bubbtxt.length; i++) {
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415. var bubbme=document.getElementById("bubb"+i);
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423. if (bubbchr[i]) {
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431. bubbme.style.color=bubbcol[bubbchr[i]];
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447. }
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463. }
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471. }
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478.  
  479. // ]]>
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487. </script>
  488.  
  489.  
  490. <title>{Title}</title>
  491. <link rel="shortcut icon" href="{Favicon}">
  492. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  493. {block:Description}
  494. <meta name="description" content="{MetaDescription}" />
  495. {/block:Description}
  496.  
  497. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  498.  
  499.  
  500. <style type="text/css">
  501.  
  502. body {background-color:{color:background}; color:{color:text}; font-family: tahoma, helvetica; font-size: 11px; text-align: justify; line-height:110%; background-image:url('{image:background}'); background-attachment: fixed; }
  503.  
  504. a {color:{color:link}; text-decoration:none; -moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  505.  
  506. a:hover {color:{color:text};}
  507.  
  508. p{margin-top: 1px}
  509.  
  510. blockquote
  511. {margin-left:0px; margin-right: 0px; margin-top: 4px;}
  512.  
  513. #tudo {width: 800px; text-align: center; background-color:
  514. transparent; color:{color:text}; margin-left: 408px;}
  515.  
  516. #bialinda {float: left; padding-top: 9px; background-color: transparent; text-align: center;}
  517. #all { {block:IfSombreado}box-shadow: 0px 10px 25px rgba(15,15,10,0.10);{/block:IfSombreado} width: 500px; padding: 8px; text-align: justify; background-color:{color:post}; margin-bottom:1px;}
  518. #all img{margin: 2px 0 2px 0}
  519.  
  520. h1{padding: 5px; font-family: Georgia; text-align: center; font-size: 14px; letter-spacing: -1px; font-weight: normal; line-height: 18px; -moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  521. h1 a{font-size: 14px; letter-spacing: -1px; line-height: 18px; letter-spacing: 0px; text-align:center;-moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  522.  
  523. .image img {width: 500px; -webkit-transition: all 0.5s ease-out; -moz-transition: all 0.5s ease-out;}
  524.  
  525. h2{font-size: 9px; display: block; width: 250px; color:{color:text}; background-color: {color:background}; text-align: center; margin: 0px 0px 3px 0px; padding: 3px 0 3px 0; text-transform: normal; text-decoration: none; font-weight: normal}
  526.  
  527. #postquote {font-family: georgia; text-align: center; font-size: 13px; line-height: 15px; padding: 2px; }
  528. #sourcequote {text-align: center; text-transform: none; margin-bottom: 3px;}
  529.  
  530. #chat{line-height: 12px; list-style: none }
  531. #chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  532. .person1 {color: {color:text} }
  533. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  534. .person2 {color: {color:text} }
  535. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color: text} }
  536. #audio{text-align: center; margin-bottom: 2px; width: 100%; background-color: {color:background};}
  537. #audio img{width: 180px; height: auto; padding: 20px 0 20px 0}
  538. #ssource{display:none}
  539. #capost {padding-top: 0px; width: 500px;}
  540.  
  541. #info { padding: 3px; font-size: 9px; font-family: verdana; text-align: left; -moz-transition: all .9s ease-in-out!important; -o-transition: all .9s ease-in-out!important; transition: all .9s ease-in-out!important; -webkit-transition: all .9s ease-in-out!important; border-right: 1px solid#fff;}
  542. {block:IfBorderLeft} #info:hover {font-size: 9px; font-family: verdana; border-right: 10px solid{color:text};} {/block:IfBorderLeft}
  543. #asker {font-size: 11px; font-family: verdana; text-align: justify; padding: 5px; }
  544. #asker a {font-size: 11px; font-family: verdana; text-align: justify;}
  545. #answer {padding: 5px; font-size: 11px; background-color:{color:background};}
  546.  
  547. #notes {width: 500px; padding: 5px; margin-left: 100px;font-size: 9px; text-align: left;}
  548. ol.notes {list-style: none; margin: 0 20px 0 0; padding: 0px}
  549. ol.notes li {margin: 0px; padding: 2px;}
  550. #notes img{border:0px}
  551.  
  552. #page{text-align: center; font-size:50px}
  553. #page a{font-size: 30px; text-decoratin: none; font-family: georgia;}
  554.  
  555. #clear{width: 500px; height: 30px}
  556.  
  557. ::-webkit-scrollbar-thumb:vertical { background-color: {color:text}; height: 50px;}
  558. ::-webkit-scrollbar-thumb:horizontal {background-color: {color:text}; height: 10px;}
  559. ::-webkit-scrollbar {height: 5px; width: 5px; background-color: {color:post};}
  560.  
  561.  
  562. #descr { width: 190px; padding: 5px; color:{color:text sidebar}; text-align: center; position: absolute; z-index: 999; font-family: verdana; letter-spacing: -1px; font-size: 9px; opacity: 1; -moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  563.  
  564. #baseimagem1 {width:200px; height:230px; overflow:hidden; margin-top: 55px; margin-left:200px; border:3px solid {color:sidebar}; position:fixed; background-color:{color:sidebar};}
  565.  
  566. #baseimagem1:hover #descr {margin-top:-230px; -moz-transition: all 1.3s ease-in-out!important; -o-transition: all 1.3s ease-in-out!important; transition: all 1.3s ease-in-out!important; -webkit-transition: all 1.3s ease-in-out!important;}
  567.  
  568. #baseimagem1 img {height:255px; -moz-transition: all .7s ease-in-out!important; -o-transition: all .7s ease-in-out!important; transition: all .7s ease-in-out!important; -webkit-transition: all .7s ease-in-out!important;}
  569. #baseimagem1 img:hover {margin-top: -25px; margin-left: -20px;}
  570.  
  571. #base1 {margin-top: 292px; margin-left:200px; width: 100px; position:fixed; padding: 5px; font-family: verdana; font-size: 8px; background-color:{color:sidebar};}
  572. #base1 a {padding: 2px 3px; font-size: 8px; font-family: verdana; text-align:center; background-color:{color:background}; color:{color:text sidebar};}
  573.  
  574.  
  575. #base2 {margin-top: 292px; margin-left:311px; width: 85px; position:fixed; padding: 5px; text-align:center; font-family: verdana; font-size: 9px; color:{color:text sidebar}; background-color:{color:sidebar};}
  576. #base2 a {font-family: verdana; font-size: 9px; color:{color:text sidebar};}
  577.  
  578. .ttle {margin-top: 4px; text-align: center; font-family: georgia; {block:IfFontFeminina}font-family: Give You Glory; {/block:IfFontFeminina} font-size: 16px; color: {color:title}; position: absolute; z-index: 3; width: 200px; {block:IfSombreado} text-shadow: 1px 0px 1px {color:title};{/block:IfSombreado}}
  579.  
  580.  
  581. #baselinks {background-color: {color:sidebar}; width: 207px; float: left; margin-left:210px; margin-top: -45px; padding: 1px; text-align: center; position: absolute; -moz-transition: all 1.5s ease-in-out!important; -o-transition: all 1.5s ease-in-out!important; transition: all 1.5s ease-in-out!important; -webkit-transition: all 1.5s ease-in-out!important; z-index: 999; -moz-transition: all 1.2s ease-in-out!important; -o-transition: all 1.2s ease-in-out!important; transition: all 1.2s ease-in-out!important; -webkit-transition: all 1.2s ease-in-out!important; }
  582.  
  583.  
  584. #baselinks a {float: left; margin-left: 1px; display: block; font-family: tahoma; font-size: 9px; text-align: center; width: 67px; background-color: {color:bg link s}; color:{color:link s}; line-height: 20px; overflow: hidden; margin-top: 0px; margin-bottom: 1px; }
  585.  
  586.  
  587. @font-face {
  588. font-family: 'Give You Glory';
  589. font-style: normal;
  590. font-weight: normal;
  591. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  592. }
  593.  
  594. #baselinks a:hover{text-align: center; background-color: {color:bg link s hover}; color:{color:link s hover};}
  595.  
  596.  
  597. #titulobarra {position: fixed; margin: 0px 0px 0px 1px; width: 200px; border: 3px solid {color:sidebar}; overflow: hidden; margin-left:200px; margin-top:9px;}
  598.  
  599. #titulobarra:hover #baselinks {margin-left:-1px; -moz-transition: all 1.5s ease-in-out!important; -o-transition: all 1.5s ease-in-out!important; transition: all 1.5s ease-in-out!important; -webkit-transition: all 1.5s ease-in-out!important; z-index: 999; }
  600.  
  601. #barra1 {width: 206px; height: 10px; background-color: {color:barra1}; position: relative;margin-top:0px;}
  602.  
  603. #barra2 {width: 206px; height:7px; background-color: {color:barra2}; position: relative; margin-top:0px;}
  604.  
  605. #barra3 {width: 206px; height: 5px; background-color: {color:barra3}; position: relative; margin-top:0px;}
  606.  
  607. #barra4 {width: 206px; height: 12px; background-color: {color:barra4}; position: relative;margin-top:0px;}
  608.  
  609. #barra5 {width: 206px; height: 6px; background-color: {color:barra2}; position: relative; margin-top:0px;}
  610.  
  611. #barra6 {width: 206px; height: 4px; background-color: {color:barra1}; position: relative; margin-top:0px;}
  612.  
  613.  
  614. #tumblr_controls{position: fixed!important}
  615.  {block:IfSelecao}
  616. ::-moz-selection {color: {color:hover}; background: {color:selecao};}
  617.  
  618. ::selection {color: {color:hover}; background: {color:barra1};}
  619.  {/block:IfSelecao}
  620.  
  621. {CustomCSS}
  622.  
  623. </style>
  624.  
  625. <style>
  626. div.treme img{position:relative}
  627. </style>
  628. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
  629. <script src="http://tumbletricks.webs.com/treme.js"></script>
  630. </head>
  631.  
  632. <body>
  633.  
  634.  
  635.  
  636. <div id="titulobarra">
  637. <div class="ttle"><span id="bubble">{Title}</span><br>
  638. <div style="font-size:9px; font-family: verdana; {block:IfFontFeminina}font-size:11px; font-family: Give You Glory;{/block:IfFontFeminina} margin-top: 3px; text-shadow: 0px 0px 0px ;"><span id="bubble">{text:subtitle}</span></div></div>
  639. <div id="barra1"></div>
  640.  
  641. <div id="barra2"></div>
  642.  
  643. <div id="barra3"></div>
  644.  
  645. <div id="barra4"></div>
  646.  
  647. <div id="barra5"></div>
  648.  
  649. <div id="barra6"></div>
  650.  
  651.  
  652.  
  653. <div id="baselinks">
  654.  
  655. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  656. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  657. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  658. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}
  659. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}
  660. {block:ifLink6}<a href="{text:Link6}">{text:Link6 Title}</a>{/block:ifLink6}
  661. </div>
  662.  
  663. </div>
  664.  
  665. <div id="baseimagem1">
  666. <div class="treme">
  667. <img src="{image:sidebar}" width="230px;"></div>
  668. <div id="descr">{Description}</div></div>
  669.  
  670. <div id="base2">&copy; <a href="http://rocklessly.tumblr.com">rocklessly </a><a href="http://wolfss.tumblr.com">+</a> <a href="http://luvtopia.tumblr.com">+</a></div>
  671. <div id="base1">
  672. <center>{block:Pagination}{/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:Pagination}</span></div></center>
  673.  
  674. <div id="tudo">
  675.  
  676. <div id="bialinda">
  677.  
  678. {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
  679. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
  680.  
  681. {block:Posts}
  682. <div id="all">
  683. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  684.  
  685. {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}" ></div>{LinkCloseTag}{/block:Photo}
  686.  
  687. {block:Photoset}{Photoset-500}{/block:Photoset}
  688.  
  689. {block:Quote}
  690. <div id="postquote">❝ {Quote}</div><br>
  691. {block:Source}<div id="sourcequote"> — {Source}</div>{/block:Source}
  692. {/block:Quote}
  693.  
  694. {block:Link}
  695. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  696. {block:Description}{Description}{/block:Description}
  697. {/block:Link}
  698.  
  699. {block:Chat}
  700. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  701. <div id="chat"><ul>{block:Lines}
  702. <li class="person{UserNumber}">{block:Label}
  703. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  704. {/block:Chat}
  705.  
  706. {block:Audio}
  707. <div id="audio">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  708. {AudioPlayerGrey}
  709. {block:Caption}{Caption}{/block:Caption}
  710. {/block:Audio}
  711.  
  712. {block:Video}{Video-500}{/block:Video}
  713.  
  714. {block:Answer}
  715. <div id="asker"><b>{Asker} disse:</b> "{Question}"</div>
  716. <div id="answer">{Answer}</div>
  717. {/block:Answer}
  718.  
  719. <div id="capost">
  720. {block:Photo}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  721. {block:Video}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  722. {block:Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  723.  
  724. <div id="ssource">{block:ContentSource}<a href="{SourceURL}">{lang:Source}:{block:SourceLogo}
  725. <img src="{BlackLogoURL}" width="{LogoWidth} height="{LogoHeight}" alt="{SourceTitle}" />
  726. {/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>
  727. {/block:ContentSource}</div></div>
  728.  
  729.  
  730. <div id="info">
  731. {block:HasTags}{block:Tags} <a href="{TagURL}"><b>#</b>{Tag}</a>&nbsp;{/block:Tags} <br>{/block:HasTags}
  732. {block:Date} {block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} {block:NoteCount} · <a href="{Permalink}">{NoteCount} notes</a>{/block:NoteCount} · <a href="{ReblogURL}" target="_blank">reblog</a><br>
  733. {block:RebloggedFrom}<b>→</b> <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}{block:RebloggedFrom} · (&copy; <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>)
  734. {/block:RebloggedFrom}<br>
  735.  
  736. </div></div>
  737.  
  738. {/block:Posts}
  739. {block:IfEnableEndlessScrolling}</div>{/block:IfEnableEndlessScrolling}
  740. {block:PostNotes}
  741. <div id="notes">{PostNotes}</div>
  742. {/block:PostNotes}
  743.  
  744. </div>
  745.  
  746. </div>
  747. </div>
  748. </div>
  749. </div>
  750. </div>
  751. </div>
  752. </div>
  753. </div>
  754.  
  755. </body>
  756. </html>
Advertisement
Add Comment
Please, Sign In to add comment