Advertisement
Guest User

pinkie pie theme

a guest
Sep 17th, 2012
4,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 18.58 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. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <!--
  5. ~ pinky pie by grace (http://essensa.tumblr.com) ~
  6.  
  7. This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.5 Canada License.
  8.  
  9. if you remove any of the credit or use this as a base code without crediting me you are liable to be reported and deactivated :o
  10. be original!
  11. -->
  12.  
  13. <head>
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17.  
  18. <title>{title}</title>
  19. <link rel=”shortcut icon” href={Favicon}/>
  20. <link rel="alternate" type="application/rss+xml" href="http://rebecaxo.com/rss">
  21. <link href='http://static.tumblr.com/blpgwiz/uvsm405h8/flip.css' rel='stylesheet' type='text/css'>
  22. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  23.  
  24. <meta name="color:Background" content="#ffffff"/>
  25. <meta name="color:Text" content="#000000"/>
  26. <meta name="color:Link" content="#000000"/>
  27. <meta name="color:Hover" content="#000000"/>
  28. <meta name="image:Background" content="0"/>
  29. <meta name="image:Banner" content="0"/>
  30. <meta name="if:banner" content="0"/>
  31. <meta name="if:link 1" content="0"/>
  32. <meta name="if:link 2" content="0"/>
  33. <meta name="if:link 3" content="0"/>
  34. <meta name="if:link 4" content="0"/>
  35. <meta name="text:reblog" content="/"/>
  36. <meta name="text:stats" content="stats go here"/>
  37. <meta name="text:network" content="network codes go here"/>
  38. <meta name="text:notifs" content="notifs go here"/>
  39. <meta name="text:link 1" content="/"/>
  40. <meta name="text:link 1 title" content="link one"/>
  41. <meta name="text:link 2" content="/"/>
  42. <meta name="text:link 2 title" content="link two"/>
  43. <meta name="text:link 3" content="/"/>
  44. <meta name="text:link 3 title" content="link three"/>
  45. <meta name="text:link 4" content="/"/>
  46. <meta name="text:link 4 title" content="link 4"/>
  47.  
  48. <link href='http://fonts.googleapis.com/css?family=Happy+Monkey|Codystar' rel='stylesheet' type='text/css'>
  49. <link href='http://static.tumblr.com/blpgwiz/uvsm405h8/flip.css' rel='stylesheet' type='text/css'>
  50.  
  51. <script type="text/javascript">
  52. // <![CDATA[
  53. var speed=100; // speed of wobbling, lower is faster
  54. var height=3; // height of wobbling in pixels
  55. var alink="http://heyidc.tumblr.com"; // page to link text to (set to ="" for no link)
  56.  
  57. /****************************
  58. * Wobbly Text Effect *
  59. *(c) 2003-6 mf2fm web-design*
  60. * http://www.mf2fm.com/rv *
  61. * DON'T EDIT BELOW THIS BOX *
  62. ****************************/
  63. var wobtxt, wobble, wobcnt=0;
  64. window.onload=function() { if (document.getElementById) {
  65. var i, wobli;
  66. wobble=document.getElementById("wobble");
  67. wobtxt=wobble.firstChild.nodeValue;
  68. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  69. for (i=0; i<wobtxt.length; i++) {
  70. wobli=document.createElement("span");
  71. wobli.setAttribute("id", "wobb"+i);
  72. wobli.style.position="relative";
  73. wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  74. if (alink) {
  75. wobli.style.cursor="pointer";
  76. wobli.onclick=function() { top.location.href=alink; }
  77. }
  78. wobble.appendChild(wobli);
  79. }
  80. setInterval("wobbler()", speed);
  81. }}
  82.  
  83. function wobbler() {
  84. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  85. wobcnt++;
  86. }
  87. // ]]>
  88. </script>
  89. <script type="text/javascript"
  90.  
  91. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  92.  
  93. <script>
  94.  
  95. $(document).ready(function() {
  96. //
  97. $('a.poplight[href^=#]').click(function() {
  98. var popID = $(this).attr('rel'); //Get Popup Name
  99. var popURL = $(this).attr('href'); //Get Popup href to define size
  100. var query= popURL.split('?');
  101. var dim= query[1].split('&');
  102. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  103. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close" alt="Close" /></a>');
  104. var popMargTop = ($('#' + popID).height() + 80) / 2;
  105. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  106. //Apply Margin to Popup
  107. $('#' + popID).css({
  108. 'margin-top' : -popMargTop,
  109. 'margin-left' : -popMargLeft
  110. });
  111. $('body').append('<div id="fade"></div>');
  112. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  113. return false;
  114.  
  115. });
  116.  
  117. $('a.close, #fade').live('click', function() {
  118.  
  119. $('#fade , .popup_block').fadeOut(function() {
  120.  
  121. $('#fade, a.close').remove(); //fade them both out
  122.  
  123. });
  124.  
  125. return false;
  126.  
  127. });
  128.  
  129. });
  130.  
  131. </script>
  132. <style type="text/css">
  133. #tumblr_controls{
  134. position:fixed !important;
  135. }
  136.  
  137. a:link, a:active, a:visited{
  138. color:{color:link};
  139. text-decoration: none;
  140. -webkit-transition: color 0.4s ease-out;
  141. -moz-transition: color 0.4s ease-out;
  142. }
  143.  
  144. a:hover{
  145. text-decoration:underline;
  146. color:{color:hover};
  147. }
  148.  
  149. body{
  150. color:#000;
  151. font-family:happy monkey;
  152. font-size:13px;
  153. line-height:100%;
  154. background-color:{color:background};
  155. background:{image:background};
  156. }
  157.  
  158. #blogtitle{
  159. font-size:30px;
  160. line-height:75%;
  161. text-align:center;
  162. font-family:Codystar;
  163. }
  164.  
  165. #blogtitle a:link, a:active, a:visited{
  166. color:{color:link};
  167. text-decoration: none;
  168. -webkit-transition: color 0.4s ease-out;
  169. -moz-transition: color 0.4s ease-out;
  170. }
  171.  
  172. #blogtitle a:hover{
  173. text-decoration:none;
  174. color:{color:link};
  175. }
  176.  
  177. .title{
  178. font-size:20px;
  179. font-family:Codystar;
  180. }
  181.  
  182. .title a:link, a:active, a:visited{
  183. color:{color:link};
  184. text-decoration: none;
  185. -webkit-transition: color 0.4s ease-out;
  186. -moz-transition: color 0.4s ease-out;
  187. }
  188.  
  189. #sidebar{
  190. z-index:999999999999999;
  191. position:fixed !important;
  192. font-size: 12px;
  193. line-height:12px;
  194. font-family:'happy monkey';
  195. width:250px;;
  196. margin-left:25px;
  197. margin-top:105px;
  198. height:auto;
  199. padding:7px;
  200. z-index:10;
  201. overflow:hidden;
  202. text-align:center;
  203.  
  204. }
  205.  
  206.  
  207. #wrap{
  208. width: 900px;
  209. float:center;
  210. margin-left:285px;
  211. background-color:{color:background};
  212. position:absolute;
  213. padding:5px;
  214. }
  215.  
  216. #about{
  217. position:fixed !important;
  218. font-family:happy monkey;
  219. font-size:15px;
  220. padding-top:7px;
  221. padding-bottom:9px;
  222. padding-left:47px;
  223. padding-right:48px;
  224. text-align:center;
  225. height:10px;
  226. width:55px;
  227. overflow:hidden;
  228. -webkit-transition: opacity 0.7s linear;
  229. -webkit-transition: all 0.7s ease-in-out;
  230. -moz-transition: all 0.7s ease-in-out;
  231. -o-transition: all 0.7s ease-in-out;
  232. background:white;
  233. z-index:9999;
  234. opacity:0.7;
  235. }
  236.  
  237. #about:hover{
  238. background: white;
  239. border:1px dashed #000;
  240. padding:7px;
  241. height:182px;
  242. width:250px;
  243. z-index:999999999;
  244. opacity:0.9;
  245. }
  246.  
  247. #networks{
  248. position:fixed !important;
  249. font-family:happy monkey;
  250. font-size:15px;
  251. padding-top:7px;
  252. padding-bottom:9px;
  253. padding-left:38px;
  254. padding-right:58px;
  255. text-align:center;
  256. height:10px;
  257. width:55px;
  258. overflow:hidden;
  259. -webkit-transition: opacity 0.7s linear;
  260. -webkit-transition: all 0.7s ease-in-out;
  261. -moz-transition: all 0.7s ease-in-out;
  262. -o-transition: all 0.7s ease-in-out;
  263. background:white;
  264. z-index:9999;
  265. opacity:0.7;
  266. }
  267.  
  268. #networks:hover{
  269. background: white;
  270. border:1px dashed #000;
  271. padding:7px;
  272. height:100px;
  273. width:400px;
  274. z-index:999999999;
  275. opacity:0.9;
  276. }
  277.  
  278. #stats{
  279. position:fixed !important;
  280. font-family:happy monkey;
  281. font-size:15px;
  282. padding-top:7px;
  283. padding-bottom:9px;
  284. padding-left:47px;
  285. padding-right:48px;
  286. text-align:center;
  287. height:10px;
  288. width:55px;
  289. overflow:hidden;
  290. -webkit-transition: opacity 0.7s linear;
  291. -webkit-transition: all 0.7s ease-in-out;
  292. -moz-transition: all 0.7s ease-in-out;
  293. -o-transition: all 0.7s ease-in-out;
  294. background:white;
  295. z-index:9999;
  296. opacity:0.7;
  297. }
  298.  
  299. #stats:hover{
  300. background: white;
  301. border:1px dashed #000;
  302. padding:7px;
  303. height:50px;
  304. width:350px;
  305. z-index:999999999;
  306. opacity:0.9;
  307. }
  308.  
  309. #title {
  310. text-align:center;
  311. color: {color:link};
  312. font-weight:bold;
  313. font-family: 'Codystar';
  314. padding:0px;
  315. padding-top: 0px;
  316. font-size:20px;
  317. line-height:95%;
  318. }
  319.  
  320. #fade { /*--Transparent background layer--*/
  321. display: none; /*--hidden by default--*/
  322. background: ;
  323. position: fixed; left: 0; top: 0;
  324. width: 100%; height: 100%;
  325. opacity: .00;
  326. z-index: 9999;
  327. }
  328. .popup_block{
  329. display: none; /*--hidden by default--*/
  330. background: #fff;
  331. padding: 10px;
  332. opacity:0.9;
  333. border: 1px solid #ddd;
  334. float: left;
  335. font-size:11px;
  336. position: fixed;
  337. top: 50%; left: 50%;
  338. z-index: 99999;
  339. -webkit-animation: fly 1s linear  normal ;
  340.     -webkit-animation-duration: 1s;
  341.     -moz-animation: fly 1s linear  normal ;
  342.     -moz-animation-duration: 1s;
  343.     animation: fly 1s linear  normal ;
  344.     animation-duration: 1s;
  345.  
  346. }
  347. img.btn_close {
  348. float: right;
  349. margin: -5px -5px 0 0;
  350. }
  351. /*--Making IE6 Understand Fixed Positioning--*/
  352. *html #fade {
  353. position: absolute;
  354. }
  355. *html .popup_block {
  356. position: absolute;
  357. }
  358.  
  359. ::-webkit-scrollbar {width: 5px; height: 4px; background: white; }
  360.  
  361. ::-webkit-scrollbar-thumb { background-color:black; }
  362.  
  363. .entry{
  364. padding:10px;
  365. float:left;
  366. -webkit-animation: flip  1.5s;
  367.      -moz-animation:   flip 1.5s;
  368.      -ms-animation:     flip 1.5s;
  369.  
  370. {block:IndexPage}
  371. width:250px;
  372. {/block:IndexPage}
  373. {block:PermalinkPage}
  374. width:600px;
  375. {/block:PermalinkPage}
  376.  
  377. }
  378.  
  379. .entry img{
  380. display: block;
  381. max-width: 100%;
  382. }
  383.  
  384. .entry .perma a{
  385. color: #000;
  386. }
  387.  
  388. .entry .perma{
  389. position:absolute;
  390. margin-top: 7px;
  391. margin-left:7px;
  392. width:175px;
  393. padding:0px;
  394. height:15px;
  395. padding-top:15px;
  396. padding-right: 5px;
  397. padding-left: 5px;
  398. padding-bottom:10px;
  399. background: #fff;
  400. overflow:hidden;
  401. font-size:12px;
  402. line-height:10px;
  403. text-align:center;
  404. font-family: 'happy monkey';
  405. opacity:0.0;
  406. color:#000;
  407. -webkit-transition: all 0.4s ease-in-out;
  408. -moz-transition: all 0.4s ease-in-out;
  409. transition: all 0.4s ease-in-out;
  410. }
  411.  
  412. .entry:hover .perma{
  413. width:175px;
  414. opacity:0.6;
  415. -webkit-transition: all 0.5s ease-in-out;
  416. -moz-transition: all 0.5s ease-in-out;
  417. transition: all 0.5s ease-in-out;
  418. z-index: 1;
  419. }
  420.  
  421. .entry:hover .perma:hover{
  422. opacity: 0.9;
  423. width:175px;
  424. z-index: 1;
  425. }
  426.  
  427. .textperma{
  428. display: block;
  429. max-width: 100%;
  430. font-size: 12px;
  431. line-height:14px;
  432. text-align: right;
  433. background-color: white;
  434. padding: 0px;
  435. opacity:0.7;
  436. -webkit-transition: all 0.4s ease-in-out;
  437. -moz-transition: all 0.4s ease-in-out;
  438. transition: all 0.4s ease-in-out;
  439. }
  440.  
  441. .textperma:hover{
  442. opacity:1;
  443. }
  444.  
  445. #network{
  446. position:fixed !important;
  447. padding-bottom:12px;
  448. left:150px;
  449. text-align:center;
  450. height:1px;
  451. width:70px;
  452. overflow:hidden;
  453. -webkit-transition: opacity 0.7s linear;
  454. -webkit-transition: all 0.7s ease-in-out;
  455. -moz-transition: all 0.7s ease-in-out;
  456. -o-transition: all 0.7s ease-in-out;
  457. background:transparent;
  458. z-index:9999;
  459. }
  460.  
  461. #network:hover{
  462. background: {color:background};
  463. border:1px dashed #000;
  464. padding:2px;
  465. height:75px;
  466. width:200px;
  467. z-index:999999999;
  468. }
  469. #statistics{
  470. position:fixed !important;
  471. padding-bottom:12px;
  472. left:90px;
  473. text-align:center;
  474. height:1px;
  475. width:70px;
  476. overflow:hidden;
  477. -webkit-transition: opacity 0.7s linear;
  478. -webkit-transition: all 0.7s ease-in-out;
  479. -moz-transition: all 0.7s ease-in-out;
  480. -o-transition: all 0.7s ease-in-out;
  481. background:transparent;
  482. z-index:9999;
  483. }
  484.  
  485. #statistics:hover{
  486. background: {color:background};
  487. border:1px dashed #000;
  488. padding:5px;
  489. height:75px;
  490. width:120px;
  491. z-index:999999999;
  492. }
  493.  
  494. #description{
  495. position:fixed !important;
  496. padding-bottom:12px;
  497. text-align:center;
  498. height:10px;
  499. width:55px;
  500. overflow:hidden;
  501. -webkit-transition: opacity 0.7s linear;
  502. -webkit-transition: all 0.7s ease-in-out;
  503. -moz-transition: all 0.7s ease-in-out;
  504. -o-transition: all 0.7s ease-in-out;
  505. background:transparent;
  506. z-index:9999;
  507. }
  508.  
  509. #description:hover{
  510. background: {color:background};
  511. border:1px dashed #000;
  512. padding:2px;
  513. height:150px;
  514. width:250px;
  515. z-index:999999999;
  516. }
  517.  
  518. #notification{
  519. position:fixed !important;
  520. padding-bottom:12px;
  521. text-align:center;
  522. left: 225px;
  523. height:10px;
  524. width:55px;
  525. overflow:hidden;
  526. -webkit-transition: opacity 0.7s linear;
  527. -webkit-transition: all 0.7s ease-in-out;
  528. -moz-transition: all 0.7s ease-in-out;
  529. -o-transition: all 0.7s ease-in-out;
  530. background:transparent;
  531. z-index:9999;
  532. }
  533.  
  534. #notification:hover{
  535. background: {color:background};
  536. border:1px dashed #000;
  537. padding:2px;
  538. height:125px;
  539. width:200px;
  540. z-index:999999999;
  541. }
  542. {CustomCSS]
  543. </style>
  544.  
  545. </head>
  546. {block:IndexPage}
  547. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  548. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  549.  
  550. <script type="text/javascript">
  551. $(window).load(function () {
  552. var $content = $('#wrap');
  553. $content.masonry({itemSelector: '.entry'}),
  554. $content.infinitescroll({
  555. navSelector : 'div#pagination',
  556. nextSelector : 'div#pagination a#nextPage',
  557. itemSelector : '.entry',
  558. loading: {
  559. finishedMsg: '',
  560. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  561. },
  562. bufferPx : 600,
  563. debug : false,
  564. },
  565. // call masonry as a callback.
  566. function( newElements ) {
  567. var $newElems = $( newElements );
  568. $newElems.hide();
  569. // ensure that images load before adding to masonry layout
  570. $newElems.imagesLoaded(function(){
  571. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  572.  
  573.  
  574. });
  575. });
  576. });
  577. </script>
  578. {/block:IndexPage}
  579. <body>
  580.  
  581. <div id="sidebar">
  582. <center>{block:ifbanner}<a title="/" href="/"><img src="{image:banner}" width=250px height=auto></a>{/block:ifbanner}
  583. {block:ifnotbanner}<div style="padding-bottom:10px;border-bottom:2px dashed #ccc;"><div id="title"><a href="/"><div id="wobble">{Title}</div></a></div></div>{/block:ifnotbanner}
  584.  
  585. <div style="padding-top:10px;">
  586.  
  587. <div id="description">about<br><br>
  588. {Description}
  589. </div></div>
  590.  
  591. <div id="statistics"><b>stats</b><br>
  592. {text:stats}
  593. </div>
  594.  
  595. <div id="network"><caviar><em>networks</em></caviar><br>
  596. {text:network}
  597. </div>
  598.  
  599. <div id="notification"><u>notifs</u><br><br>
  600. {text:notifs}
  601. </div> <br/>
  602.  
  603. <div style="margin-top:10px;padding-top:1px;border-top:2px dashed #ccc;">
  604. <p><center><u>links</u>:
  605. <a href="#?w=450" rel="02" class="poplight">ask</a>,
  606. {block:iflink1}<a href="{text:link 1}">{text:link 1 title}</a>,{/block:iflink1}
  607. {block:iflink2}<a href="{text:link 2}">{text:link 2 title}</a>,{/block:iflink2}
  608. {block:iflink3}<a href="{text:link 3}">{text:link 3 title}</a>,{/block:iflink3}
  609. {block:iflink4}<a href="{text:link 4}">{text:link 4 title}</a>,{/block:iflink4}
  610. <a href="http://essensa.tumblr.com/">credit</a>
  611. </div>
  612. </div>
  613. </div>
  614. </div>
  615.  
  616.  
  617. <div id="wrap">
  618. {block:Posts}
  619. <div class="entry">
  620. {block:Title}<div class="title">{Title}</div>{/block:Title}
  621.  
  622. {block:Text}{Body}
  623. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  624. {/block:Text}
  625.  
  626. {block:Photo}
  627. {block:IndexPage}
  628. <div class="perma">{TimeAgo}, <a href="{Permalink}">{Notecount}</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>
  629. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="250"/></a></div>{LinkCloseTag}{/block:IndexPage}
  630. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="600"/></a>{LinkCloseTag}{/block:PermalinkPage}
  631. {/block:Photo}
  632.  
  633. {block:Photoset}
  634. {Photoset-400}
  635. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  636. {/block:Photoset}
  637.  
  638.  
  639. {block:Quote}
  640. {Quote}
  641. <div align="right">
  642. {block:Source}<div class="title">{Source}</div>{/block:Source}
  643. </div>
  644. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  645. {/block:Quote}
  646.  
  647.  
  648. {block:Video}
  649. {Video-400}<br>
  650. {PlayCountWithLabel}
  651. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  652. {/block:Video}
  653.  
  654.  
  655. {block:Link}
  656. <div class="title"><a href="{URL}" class="link" {Target}>{Name}</a></div><BR>
  657. {block:Description}{Description}{/block:Description}
  658. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  659. {/block:Link}
  660.  
  661. {block:Chat}
  662. {block:Lines}
  663. {block:Label}
  664. <br>{Label}
  665. {/block:Label}
  666. &nbsp;{Line}
  667. {/block:Lines}
  668. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  669. {/block:Chat}
  670.  
  671. {block:Audio}
  672. {AudioPlayerWhite}
  673. <br><div align="right">{block:Artist}
  674. Artist: {Artist}</div>
  675. {/block:Artist}<br>
  676. {block:Caption}{Caption}{/block:Caption}
  677. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  678. {/block:Audio}
  679.  
  680.  
  681. {block:Answer}
  682. {Asker} inquired: <b>{Question}</b><Br>
  683.  {Answer}
  684. {block:IndexPage}<div class="textperma">Posted: {TimeAgo}, <a href="{Permalink}">{Notecount} notes</a>, <a href="{permalink}"><a href="{ReblogURL}" target="_blank">{text:reblog}</a></div>{/block:IndexPage}
  685. {/block:Answer}
  686.  
  687. {block:PermalinkPage}
  688. {block:Caption}
  689. {Caption}
  690. {/block:Caption}
  691. <br>
  692.  
  693. {NoteCount} notes
  694. <Br>
  695. {block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  696. {/block:PermalinkPage}
  697. </div>
  698.  
  699. {/block:Posts}
  700.  
  701. {block:IndexPage}
  702. {block:Pagination}
  703. <div id="pagination">
  704. {block:NextPage}
  705. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  706. {/block:NextPage}
  707. {block:PreviousPage}
  708. <a href="{PreviousPage}">&larr;&nbsp;</a>
  709. {/block:PreviousPage}
  710. </div>
  711. {/block:Pagination}
  712. {/block:IndexPage}
  713. </div>
  714.  
  715. <div id="02" class="popup_block">
  716. <Center>
  717. <iframe frameborder="0" scrolling="no" width="100%" height="auto" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com"
  718. style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe></center>
  719. </div>
  720.  
  721. </div></div></div></div></div></div></div></div></div></div>
  722. <!--
  723. lol remove this and i will hurt you <3
  724. -->
  725. <div style="display:block;bottom:5px;right:5px;font-size:15px;font-color:black;position:fixed;font-family:codystar;background-color:#ffffff;z-index:1500"><a href="http://essensa.tumblr.com/">essence themes</a></div>
  726. </body>
  727. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement