umlugardocaralho

theme #47

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