Advertisement
realjunko

Hentai Theme

Mar 3rd, 2014
2,250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.53 KB | None | 0 0
  1. <!--
  2. HENTAI THEME BY REALJUNKO
  3. i dont mind if you move the credit just credit me somewhere because i will find out if you dont
  4. -->
  5.  
  6. <html lang="en">
  7. <head>
  8. <link href='http://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
  9. {block:ifbubbles}
  10. <script type="text/javascript">
  11. // <![CDATA[
  12. var colours=new Array("#a6f", "#60f", "#60f", "#a6f", "#ccc"); // colours for top, right, bottom and left borders and background of bubbles
  13. var bubbles=66; // maximum number of bubbles on screen
  14.  
  15. /****************************
  16. * JavaScript Bubble Cursor *
  17. * (c) 2010 mf2fm web-design *
  18. * http://www.mf2fm.com/rv *
  19. * DON'T EDIT BELOW THIS BOX *
  20. ****************************/
  21. var x=ox=400;
  22. var y=oy=300;
  23. var swide=800;
  24. var shigh=600;
  25. var sleft=sdown=0;
  26. var bubb=new Array();
  27. var bubbx=new Array();
  28. var bubby=new Array();
  29. var bubbs=new Array();
  30.  
  31. window.onload=function() { if (document.getElementById) {
  32. var rats, div;
  33. for (var i=0; i<bubbles; i++) {
  34. rats=createDiv("3px", "3px");
  35. rats.style.visibility="hidden";
  36.  
  37. div=createDiv("auto", "auto");
  38. rats.appendChild(div);
  39. div=div.style;
  40. div.top="1px";
  41. div.left="0px";
  42. div.bottom="1px";
  43. div.right="0px";
  44. div.borderLeft="1px solid "+colours[3];
  45. div.borderRight="1px solid "+colours[1];
  46.  
  47. div=createDiv("auto", "auto");
  48. rats.appendChild(div);
  49. div=div.style;
  50. div.top="0px";
  51. div.left="1px";
  52. div.right="1px";
  53. div.bottom="0px"
  54. div.borderTop="1px solid "+colours[0];
  55. div.borderBottom="1px solid "+colours[2];
  56.  
  57. div=createDiv("auto", "auto");
  58. rats.appendChild(div);
  59. div=div.style;
  60. div.left="1px";
  61. div.right="1px";
  62. div.bottom="1px";
  63. div.top="1px";
  64. div.backgroundColor=colours[4];
  65. div.opacity=0.5;
  66. if (document.all) div.filter="alpha(opacity=50)";
  67.  
  68. document.body.appendChild(rats);
  69. bubb[i]=rats.style;
  70. }
  71. set_scroll();
  72. set_width();
  73. bubble();
  74. }}
  75.  
  76. function bubble() {
  77. var c;
  78. if (x!=ox || y!=oy) {
  79. ox=x;
  80. oy=y;
  81. for (c=0; c<bubbles; c++) if (!bubby[c]) {
  82. bubb[c].left=(bubbx[c]=x)+"px";
  83. bubb[c].top=(bubby[c]=y)+"px";
  84. bubb[c].width="3px";
  85. bubb[c].height="3px"
  86. bubb[c].visibility="visible";
  87. bubbs[c]=3;
  88. break;
  89. }
  90. }
  91. for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  92. setTimeout("bubble()", 40);
  93. }
  94.  
  95. function update_bubb(i) {
  96. if (bubby[i]) {
  97. bubby[i]-=bubbs[i]/2+i%2;
  98. bubbx[i]+=(i%5-2)/5;
  99. if (bubby[i]>sdown && bubbx[i]>0) {
  100. if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  101. bubb[i].width=bubbs[i]+"px";
  102. bubb[i].height=bubbs[i]+"px";
  103. }
  104. bubb[i].top=bubby[i]+"px";
  105. bubb[i].left=bubbx[i]+"px";
  106. }
  107. else {
  108. bubb[i].visibility="hidden";
  109. bubby[i]=0;
  110. return;
  111. }
  112. }
  113. }
  114.  
  115. document.onmousemove=mouse;
  116. function mouse(e) {
  117. set_scroll();
  118. y=(e)?e.pageY:event.y+sleft;
  119. x=(e)?e.pageX:event.x+sdown; }
  120.  
  121. window.onresize=set_width;
  122. function set_width() {
  123. if (document.documentElement && document.documentElement.clientWidth) {
  124. swide=document.documentElement.clientWidth;
  125. shigh=document.documentElement.clientHeight;
  126. }
  127. else if (typeof(self.innerHeight)=="number") {
  128. swide=self.innerWidth;
  129. shigh=self.innerHeight;
  130. }
  131. else if (document.body.clientWidth) {
  132. swide=document.body.clientWidth;
  133. shigh=document.body.clientHeight;
  134. }
  135. else {
  136. swide=800;
  137. shigh=600;
  138. }
  139. }
  140.  
  141. window.onscroll=set_scroll;
  142. function set_scroll() {
  143. if (typeof(self.pageYOffset)=="number") {
  144. sdown=self.pageYOffset;
  145. sleft=self.pageXOffset;
  146. }
  147. else if (document.body.scrollTop || document.body.scrollLeft) {
  148. sdown=document.body.scrollTop;
  149. sleft=document.body.scrollLeft;
  150. }
  151. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  152. sleft=document.documentElement.scrollLeft;
  153. sdown=document.documentElement.scrollTop;
  154. }
  155. else {
  156. sdown=0;
  157. sleft=0;
  158. }
  159. }
  160.  
  161. function createDiv(height, width) {
  162. var div=document.createElement("div");
  163. div.style.position="absolute";
  164. div.style.height=height;
  165. div.style.width=width;
  166. div.style.overflow="hidden";
  167. return (div);
  168. }
  169. // ]]>
  170. </script>
  171. {/block:ifbubbles}
  172.  
  173. <meta name="image:Background" content=""/>
  174. <meta name="color:Background" content="#FFFFFF"/>
  175. <meta name="color:Title" content="#999999"/>
  176. <meta name="color:Blog Title" content="#999999"/>
  177. <meta name="color:Link" content="#555555"/>
  178. <meta name="color:Hover" content="#999999"/>
  179. <meta name="color:Text" content="#777777"/>
  180. <meta name="text:Link 1" content="" />
  181.  
  182. <meta name="text:Link 2" content="" />
  183.  
  184. <meta name="text:Link 3" content="" />
  185. <meta name="if:Show Link 1" content="1" />
  186. <meta name="if:Show Link 2" content="1" />
  187. <meta name="if:Show Link 3" content="1" />
  188. <meta name="if:Bubbles" content="1" />
  189. <meta name="if:Network and Updates" content="1" />
  190. <meta name="text:Annoucements" content="" />
  191. <meta name="text:Networks" content="" />
  192. <meta name="text:music" content="" />
  193.  
  194.  
  195.  
  196. <title>{Title}</title>
  197. {block:Description}
  198. <meta name="description" content="{MetaDescription}" />
  199. {/block:Description}
  200. <link rel="shortcut icon" href="{Favicon}">
  201.  
  202. <!---------------DO NOT REMOVE THESE SCRIPTS--------------->
  203.  
  204. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  205.  
  206. <script src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  207. <script>
  208. (function($){$(document)
  209. .ready(function(){$("[title]")
  210. .style_my_tooltips();});})
  211. (jQuery);
  212. </script>
  213.  
  214. {block:IndexPage}
  215. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  216. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  217.  
  218. <script type="text/javascript">
  219. $(window).load(function(){
  220. var $wall = $('#entries');
  221. $wall.imagesLoaded(function(){
  222. $wall.masonry({
  223. itemSelector: '#post, #post_photo',
  224. isAnimated : false
  225. });
  226. });
  227.  
  228. $wall.infinitescroll({
  229. navSelector : '#pagination',
  230. nextSelector : '#pagination a',
  231. itemSelector : '#post, #post_photo',
  232. bufferPx : 2000,
  233. debug : false,
  234. errorCallback: function() {
  235. $('#scroll').fadeOut('normal');
  236. }},
  237. function( newElements ) {
  238. var $newElems = $( newElements );
  239. $newElems.hide();
  240. $newElems.imagesLoaded(function(){
  241. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  242. });
  243. }); $('#entries').show(500);
  244. });
  245. </script>
  246. {/block:IndexPage}
  247.  
  248. <!---------------END SCRIPTS--------------->
  249.  
  250. <style type="text/css">
  251. {block:ifnetworkandupdates}/* tutorial made by sppice */
  252. #homura {
  253. text-align: center;
  254. font-size: 11px;
  255. position:fixed;
  256. left:5px;
  257. top:-81px;
  258. -webkit-transition: all .5s ease-in-out;
  259. -moz-transition: all .5s ease-in-out;
  260. -o-transition: all .5s ease-in-out;
  261. z-index:999;
  262. }
  263.  
  264. #homura:hover {top:0px;}
  265.  
  266. #kyouko {
  267. background: # F7DCE7;
  268.  
  269. border-top:none;
  270. padding:5px 0 5px 0;
  271. width:100px;
  272. height:70px;
  273. z-index: 9999;
  274. }
  275.  
  276. #kyoukotab {
  277. background:# F7DCE7;
  278.  
  279. border-top:none;
  280. text-align: center;
  281. height:11px;
  282. padding:2px 0 8px 0;
  283. width:100px;
  284. }
  285.  
  286. #purple {
  287. text-align: center;
  288. font-size: 11px;
  289. position:fixed;
  290. left:112px;
  291. top:-211px;
  292. -webkit-transition: all .5s ease-in-out;
  293. -moz-transition: all .5s ease-in-out;
  294. -o-transition: all .5s ease-in-out;
  295. z-index:999;
  296. }
  297.  
  298. #purple:hover {top:0px;}
  299.  
  300. #red {
  301. background: # F7DCE7;
  302.  
  303. border-top:none;
  304. padding:5px 0 5px 0;
  305. width:100px;
  306. height:200px;
  307. z-index: 9999;
  308. }
  309.  
  310. #redtab {
  311. background:# F7DCE7;
  312.  
  313. border-top:none;
  314. text-align: center;
  315. height:11px;
  316. padding:2px 0 8px 0;
  317. width:100px;
  318. }
  319.  
  320.  
  321.  
  322.  
  323. #orange {
  324. text-align: center;
  325. font-size: 11px;
  326. position:fixed;
  327. left:219px;
  328. top:-111px;
  329. -webkit-transition: all .5s ease-in-out;
  330. -moz-transition: all .5s ease-in-out;
  331. -o-transition: all .5s ease-in-out;
  332. z-index:999;
  333. }
  334.  
  335. #orange:hover {top:0px;}
  336.  
  337. #green {
  338. background: # F7DCE7;
  339.  
  340. border-top:none;
  341. border-color:# 000;
  342. padding:5px 0 5px 0;
  343. width:200px; /* to make the announcements tab wider, make this 200 something bigger like 220 or 240 */
  344. height:100px;
  345. z-index: 9999;
  346. }
  347.  
  348. #greentab {
  349. background: # F7DCE7;
  350.  
  351. border-top:none;
  352. border-width:1px;
  353. text-align: center;
  354. height:11px;
  355. padding:2px 0 8px 0;
  356. width: 100px;
  357. }
  358.  
  359. /* tutorial made by sppice */
  360. {/block:ifnetworkandupdates}
  361.  
  362.  
  363. /************EDIT BODY HERE************/
  364.  
  365. body{
  366. margin:0px;
  367. background-color: {color:Background};
  368. background-image:url({image:Background});
  369. background-attachment:fixed;
  370. background-repeat:100%;
  371. background-position:bottom-right;
  372. font-family: Press Start 2P;
  373. font-size:8px;
  374. letter-spacing:1px;
  375. text-transform:uppercase;
  376. text-align:left;
  377. line-height:11px;
  378. color: {color:Text};}
  379.  
  380.  
  381. a:link, a:active, a:visited{
  382. text-decoration: none;
  383. color: {color:Link};}
  384.  
  385. a:hover {
  386. color:{color:Link};
  387. text-decoration:none;}
  388.  
  389. /************EDIT TOOLTIP HERE************/
  390.  
  391.  
  392. #s-m-t-tooltip {
  393. padding: 3px;
  394. height:auto;
  395. display: none;
  396. font-family: consolas;
  397. font-size: 8px;
  398. text-transform:uppercase;
  399. text-align: center;
  400. letter-spacing:1px;
  401. margin-top:10px;
  402. margin-left: 15px;
  403. line-height: 8px;
  404. z-index: 999999999999;
  405. border-radius:3px;
  406. border: 1px solid #f5f5f5;
  407. background:#ffffff;
  408. color: #888;}
  409.  
  410. /************EDIT POST POSITION/WIDTH HERE************/
  411.  
  412. /*To increase the amount of columns, increase the width. To decrease the amount of columns, decrease the width.*/
  413.  
  414. #entries{
  415. text-align:left;
  416. width:480px;
  417. margin-left:70px;
  418. margin-top:10px;
  419. position:relative;
  420. overflow: hidden;
  421. {block:PermalinkPage}
  422. width:550px;
  423. {/block:PermalinkPage}}
  424.  
  425. /************EDIT OVERALL POSTS HERE************/
  426.  
  427. /*When increasing the amount of columns, you may have to decrease the #post width. Otherwise, to get larger posts, increase the width.*/
  428.  
  429. #post{
  430. text-align:left;
  431. margin:20px;
  432. background:#ffffff;
  433. max-width: 100%;
  434. display:block;
  435. overflow:hidden;
  436. width:180px;
  437. {block:PermalinkPage}
  438. width:500px;
  439. {/block:PermalinkPage}}
  440.  
  441. /*Do not delete #post img.*/
  442.  
  443. #post img{
  444. max-width:100%;}
  445.  
  446. /*Edit the permalinks all posts.*/
  447.  
  448. .permalink{
  449. border-top:1px solid #f5f5f5;
  450. text-align:right;}
  451. .permalink a{
  452. text-transform:uppercase;
  453. line-height:15px;}
  454.  
  455. /*Edit the titles on any text-based post.*/
  456.  
  457. .posttitle{
  458. font-size:10px;
  459. text-align:center;
  460. color:{color:Link};}
  461.  
  462. .posttitle a{
  463. color:{color:Link};}
  464.  
  465. /************EDIT QUOTE POSTS HERE************/
  466.  
  467. .quote{
  468. margin-right: 5px;}
  469.  
  470. .source{
  471. padding-top:5px;
  472. display:block;
  473. text-align:right;}
  474.  
  475.  
  476. /************EDIT ANSWER POSTS HERE************/
  477.  
  478. .ask{
  479. padding:4px;
  480. background:#f9f9f9;}
  481. .asker{
  482. color:{color:Link};}
  483. .answer{
  484. margin-top:10px;}
  485.  
  486. /************EDIT AUDIO POSTS HERE************/
  487.  
  488. .audio{
  489. {block:IndexPage}width:180px;{/block:IndexPage}
  490. {block:PermalinkPage}width:239px;{/block:PermalinkPage};}
  491. .info{
  492. padding:2px 0px 1px 57px;}
  493. .i {
  494. text-transform:uppercase;
  495. letter-spacing:1px;
  496. font-size:8px;}
  497. .pl b,strong{
  498. text-transform:lowercase;
  499. font-size:9px;}
  500. .player{
  501. position:absolute;
  502. overflow:hidden;
  503. margin-top:0px;
  504. margin-left:15px;
  505. background:#ffffff;
  506. width:24px;
  507. height:23px;}
  508.  
  509. /************EDIT VIDEO POSTS HERE************/
  510. /***********DO NOT DELETE THIS CODE************/
  511.  
  512. .video-container {
  513. position:relative;
  514. padding-bottom:56.25%;
  515. padding-top: 30px;
  516. height:0;
  517. overflow:hidden;}
  518.  
  519. .video-container iframe,
  520. .video-container object,
  521. .video-container embed {
  522. position: absolute;
  523. top: 0;
  524. left: 0;
  525. width: 100%;
  526. height: 100%;}
  527.  
  528. /************EDIT CHAT POSTS HERE************/
  529.  
  530. .chat{
  531. line-height:12px;
  532. list-style:none;}
  533. .chat ul{
  534. list-style:none;
  535. padding:0px 5px;
  536. line-height:15px;}
  537. .label{
  538. color:{color:Link};}
  539.  
  540. /************EDIT SIDEBAR HERE************/
  541.  
  542. #sidebar{
  543. background:#fff;
  544. border:1px #f5f5f5 solid;
  545. margin-left:-200px;
  546. margin-top:250px;
  547. width:150px;
  548. position:fixed;
  549. text-align:center;}
  550.  
  551. .blogtitle{
  552. padding:5px;
  553. padding-bottom:0px;
  554. text-align:center;
  555. font-size:12px;}
  556.  
  557. .blogtitle a{
  558. color:{color:Blog Title};}
  559.  
  560. .description{
  561. padding:5px;}
  562.  
  563. .links{
  564. margin-left:-15px;
  565. padding:0px 10px 5px 10px;
  566. margin-top:5px;}
  567.  
  568. .links a{
  569. margin-left:15px;}
  570.  
  571. .links a:hover{
  572. color:{color:Hover};}
  573.  
  574. /************EDIT TEXT SETTINGS HERE************/
  575.  
  576. i, em{
  577. color:{color:Link};}
  578. b, strong{
  579. font-weight:normal;
  580. text-transform:uppercase;
  581. color:{color:Link};}
  582. ul,ol{
  583. margin:0px;
  584. margin-left:-5px;}
  585. p{
  586. padding:0px;
  587. margin:2px;}
  588. u{
  589. text-decoration:none;
  590. color:{color:Title};}
  591.  
  592. blockquote {
  593. margin:0px;
  594. padding:4px;
  595. background:#f7f7f7;}
  596.  
  597. /************DO NOT DELETE #SCROLL************/
  598.  
  599. #scroll{
  600. bottom:-20px;
  601. position: absolute;
  602. left: 50%;
  603. width:10px;
  604. height:5px;
  605. overflow:hidden;
  606. margin-bottom:80px;}
  607.  
  608. /************EDIT CREDIT HERE************/
  609.  
  610. #credit{
  611. position:fixed;
  612. right:10px;
  613. bottom:10px;
  614. text-transform:uppercase;
  615.  
  616.  
  617. #credit a{
  618. color:#aaaaaa;}
  619.  
  620.  
  621.  
  622. </style>
  623. </head>
  624.  
  625. <body>
  626. {block:ifnetworkandupdates}
  627. <!-- tutorial made by sppice -->
  628.  
  629. <div id="purple">
  630. <div id="red">
  631. <center>
  632.  
  633. <!-- below is where your networks go, make sure to fill in the url network and icon -->
  634.  
  635. {text:networks}
  636.  
  637. </center></div>
  638.  
  639.  
  640. <div id="redtab"><img src='http://media.tumblr.com/tumblr_lt1741b5Fm1ql555e.png'</a></div></div></div>
  641.  
  642.  
  643.  
  644. <div id="homura">
  645. <div id="kyouko">
  646. <center>
  647.  
  648. <!-- below is where your music gos -->
  649. {text:music}
  650.  
  651. </center></div>
  652.  
  653.  
  654. <div id="kyoukotab"><img src="http://media.tumblr.com/tumblr_lt175zJwWj1ql555e.png"/></div></div>
  655.  
  656.  
  657. <div id="orange">
  658. <div id="green">
  659. <center>
  660.  
  661. <!-- below is where your updates will go -->
  662.  
  663. {text:annoucements}
  664.  
  665. </center></div>
  666. <div id="greentab"><img src='http://media.tumblr.com/tumblr_lst6x1z4Mj1ql555e.gif'</a></div>
  667. </div>
  668.  
  669. <!-- tutorial made by sppice -->
  670. {/block:ifnetworkandupdates}
  671.  
  672. <center>
  673.  
  674. <div id="entries">
  675.  
  676. <!---------------EDIT SIDEBAR CONTENT HERE--------------->
  677.  
  678. <div id="sidebar">
  679. <div class="blogtitle"><a href="/">{Title}</a></div>
  680. <div class="description">{Description}</div>
  681. <div class="links">
  682. <a href="/"><img src=http://i57.tinypic.com/292xjx0.gif </a></a>
  683. <a href="/ask"><img src=http://i61.tinypic.com/14c8uao.gif </a></a>
  684.  
  685. {block:IfShowLink1}<a href="{text:Link 1}"><img src=http://i62.tinypic.com/98hiiq.gif</a>{/block:IfShowLink1}
  686. {block:IfShowLink2}<a href="{text:Link 2}"><img src=http://i58.tinypic.com/2ps5e8p.gif</a>{/block:IfShowLink2}
  687. {block:IfShowLink3}<a href="{text:Link 3}"><img src=http://i58.tinypic.com/sp9qx0.gif</a>{/block:IfShowLink3}
  688.  
  689. </div>
  690. </div>
  691.  
  692.  
  693. {block:Posts}
  694.  
  695. <!---------------DO NOT DELETE block:ContentSource--------------->
  696.  
  697. {block:ContentSource}
  698. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  699. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  700. {/block:SourceLogo}
  701. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  702. {/block:ContentSource}
  703.  
  704. <div id="post">
  705.  
  706. <!---------------EDIT TEXT POSTS HERE--------------->
  707.  
  708. {block:Text}
  709. <div class="text">
  710. <div class="posttitle">{block:Title}{Title}{/block:Title}</div>
  711. {Body}{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a>
  712. </div>{/block:IndexPage}</div>
  713. {/block:Text}
  714.  
  715. <!---------------EDIT LINK POSTS HERE--------------->
  716.  
  717. {block:Link}
  718. <a href="{URL}"><div class="posttitle">{Name}</div></a>
  719. {block:Description}{Description}{/block:Description}
  720. {block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a>
  721. </div>{/block:IndexPage}
  722. {/block:Link}
  723.  
  724. <!---------------EDIT PHOTO POSTS HERE--------------->
  725.  
  726. {block:Photo}
  727. {block:IndexPage}
  728. <img src="{PhotoURL-250}" alt="{PhotoAlt}" width="200px"/>{/block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a>
  729. </div>{block:PermalinkPage}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{/block:PermalinkPage}</a>
  730. {/block:Photo}
  731.  
  732. <!---------------EDIT PHOTOSET POSTS HERE--------------->
  733.  
  734. {block:Photoset}
  735. {block:IndexPage}{block:Photos}<a href="{Permalink}"><img src="{PhotoURL-500}" /></a>{/block:Photos}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a>
  736. </div>{/block:IndexPage}
  737. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  738. {/block:Photoset}
  739.  
  740. <!---------------EDIT QUOTE POSTS HERE--------------->
  741.  
  742. {block:Quote}
  743. {Quote}{block:Source}
  744. <div class="source">{Source}</div>{/block:Source}
  745. {block:IndexPage}
  746. <div class="permalink"><a href="{ReblogURL}">Reblog</a> /
  747. <a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</div>
  748. {/block:Quote}
  749.  
  750. <!---------------EDIT ANSWER POSTS HERE--------------->
  751.  
  752. {block:Answer}
  753. <div class="ask"><span class="asker">{Asker}:</span> {Question}</div>
  754. <div class="answer">{Answer}</div>
  755. {block:IndexPage}
  756. <div class="permalink"><a href="{ReblogURL}">Reblog</a> /
  757. <a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}
  758. {/block:Answer}
  759.  
  760. <!---------------EDIT CHAT POSTS HERE--------------->
  761.  
  762. {block:Chat}
  763. {block:Title}<div class="posttitle">{Title}</div>{/block:Title}
  764. <div class="chat"><ul>{block:Lines}
  765. <li class="person{UserNumber}">{block:Label}
  766. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> /<a href="{Permalink}">{NoteCount}</a></div>
  767. {/block:IndexPage}
  768. {/block:Chat}
  769.  
  770. <!---------------EDIT AUDIO POSTS HERE--------------->
  771.  
  772. {block:Audio}<div class="player">{AudioPlayerWhite}</div>
  773. <div class="info"><div class="i"><span{block:TrackName} style="display: none;"{block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}</div><div class="i">by<span{block:Artist} style="display: none;"{block:Artist}>Unknown</span> {block:Artist}{Artist}{/block:Artist}</div></div>{block:IndexPage}<div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>
  774. {/block:IndexPage}
  775. {/block:Audio}
  776.  
  777. <!---------------EDIT VIDEO POSTS HERE--------------->
  778.  
  779. {block:Video}
  780. {block:IndexPage}<div class="video-container">{Video-250}</div>
  781. <div class="permalink"><a href="{ReblogURL}">Reblog</a> / <a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}
  782. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  783. {/block:Video}
  784.  
  785. <!---------------EDIT PERMALINK PAGE HERE--------------->
  786.  
  787. {block:PermalinkPage}
  788. {block:Caption}{Caption}{/block:Caption}
  789. <p>{block:Date} {Month} {DayofMonthWithSuffix}, {Year}{/block:Date} {block:NoteCount}, {NoteCountWithLabel}{/block:NoteCount} {block:RebloggedFrom} , (via <a href="{ReblogParentURL}">{ReblogParentName}</a>){/block:RebloggedFrom}
  790. <div class="permapage">
  791. <div style="margin-top:10px; margin-left:-10px;">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>{/block:PermalinkPage}
  792. </div>
  793. {/block:Posts}
  794. </div>
  795.  
  796. <!---------------DO NOT DELETE THIS--------------->
  797.  
  798. {block:IndexPage}
  799. {block:Pagination}
  800. <div id="pagination">
  801. {block:NextPage}
  802. <a id="nextPage" href="{NextPage}"></a>
  803. {/block:NextPage}
  804. {block:PreviousPage}
  805. <a href="{PreviousPage}"></a>
  806. {/block:PreviousPage}
  807. </div>
  808. {/block:Pagination}
  809. {/block:IndexPage}
  810. </center>
  811. </body>
  812.  
  813. <!---------------EDIT CREDIT CONTENT HERE--------------->
  814.  
  815. <div id="credit"><a href="http://jolyene.tumblr.com/"><img src='http://stephanielouie.comule.com/material/usadot1.gif'</a></div>
  816.  
  817. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement