kamikies

02 - MORIYAMA THEME

Mar 8th, 2015
1,868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.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.  
  3. <!--
  4.  
  5. THEME BY kangjan.tumblr.com
  6.  
  7. DO NOT REDISTRIBUTE
  8. DO NOT REMOVE CREDIT
  9. ASK ME BEFORE MOVING CREDIT, PLEASE
  10. ASK ME BEFORE COPYING PARTS OF THE CODING, PLEASE
  11. i hope you enjoy this theme!!
  12. thank you for choosing it!
  13. ٩(^ᴗ^)۶
  14.  
  15.  
  16. -->
  17.  
  18. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  19. <link href="http://static.tumblr.com/tkhlwyc/jM0nkuni9/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  20. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  21. <script src="http://static.tumblr.com/tkhlwyc/PH1nkunkl/jquery.style-my-tooltips.js"></script><script>
  22. (function($){
  23. $(document).ready(function(){
  24. $("[title]").style_my_tooltips({
  25. tip_follows_cursor:true,
  26. tip_delay_time:100,
  27. tip_fade_speed:300,
  28. attribute:"title"
  29. });
  30. });
  31. })(jQuery);
  32. </script>
  33.  
  34. <head>
  35. {block:ifbubblecursor}
  36. <script type="text/javascript">
  37. // <![CDATA[
  38. var colours=new Array("{color:bubbles}", "{color:bubbles}f", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}");
  39. var bubbles=100; // maximum number of bubbles on screen
  40. var over_or_under="under"; // set to "over" for bubbles to always be on top, or "under" to allow them to float behind other objects
  41.  
  42. /****************************
  43. * JavaScript Bubble Cursor *
  44. *(c)2010-13 mf2fm web-design*
  45. * http://www.mf2fm.com/rv *
  46. * DON'T EDIT BELOW THIS BOX *
  47. ****************************/
  48. var x=ox=400;
  49. var y=oy=300;
  50. var swide=800;
  51. var shigh=600;
  52. var sleft=sdown=0;
  53. var bubb=new Array();
  54. var bubbx=new Array();
  55. var bubby=new Array();
  56. var bubbs=new Array();
  57. var sploosh=false;
  58.  
  59. function addLoadEvent(funky) {
  60. var oldonload=window.onload;
  61. if (typeof(oldonload)!='function') window.onload=funky;
  62. else window.onload=function() {
  63. if (oldonload) oldonload();
  64. funky();
  65. }
  66. }
  67.  
  68. addLoadEvent(buble);
  69.  
  70. function buble() { if (document.getElementById) {
  71. var i, rats, div;
  72. for (i=0; i<bubbles; i++) {
  73. rats=createDiv("3px", "3px");
  74. rats.style.visibility="hidden";
  75. rats.style.zIndex=(over_or_under=="over")?"1001":"0";
  76.  
  77. div=createDiv("auto", "auto");
  78. rats.appendChild(div);
  79. div=div.style;
  80. div.top="1px";
  81. div.left="0px";
  82. div.bottom="1px";
  83. div.right="0px";
  84. div.borderLeft="1px solid "+colours[3];
  85. div.borderRight="1px solid "+colours[1];
  86.  
  87. div=createDiv("auto", "auto");
  88. rats.appendChild(div);
  89. div=div.style;
  90. div.top="0px";
  91. div.left="1px";
  92. div.right="1px";
  93. div.bottom="0px"
  94. div.borderTop="1px solid "+colours[0];
  95. div.borderBottom="1px solid "+colours[2];
  96.  
  97. div=createDiv("auto", "auto");
  98. rats.appendChild(div);
  99. div=div.style;
  100. div.left="1px";
  101. div.right="1px";
  102. div.bottom="1px";
  103. div.top="1px";
  104. div.backgroundColor=colours[4];
  105. if (navigator.appName=="Microsoft Internet Explorer") div.filter="alpha(opacity=50)";
  106. else div.opacity=0.5;
  107. document.body.appendChild(rats);
  108. bubb[i]=rats.style;
  109. }
  110. set_scroll();
  111. set_width();
  112. bubble();
  113. }}
  114.  
  115. function bubble() {
  116. var c;
  117. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  118. ox=x;
  119. oy=y;
  120. for (c=0; c<bubbles; c++) if (!bubby[c]) {
  121. bubb[c].left=(bubbx[c]=x)+"px";
  122. bubb[c].top=(bubby[c]=y-3)+"px";
  123. bubb[c].width="3px";
  124. bubb[c].height="3px"
  125. bubb[c].visibility="visible";
  126. bubbs[c]=3;
  127. break;
  128. }
  129. }
  130. for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  131. setTimeout("bubble()", 40);
  132. }
  133.  
  134. document.onmousedown=splash;
  135. document.onmouseup=function(){clearTimeout(sploosh);};
  136.  
  137. function splash() {
  138. ox=-1;
  139. oy=-1;
  140. sploosh=setTimeout('splash()', 100);
  141. }
  142.  
  143. function update_bubb(i) {
  144. if (bubby[i]) {
  145. bubby[i]-=bubbs[i]/2+i%2;
  146. bubbx[i]+=(i%5-2)/5;
  147. if (bubby[i]>sdown && bubbx[i]>sleft && bubbx[i]<sleft+swide+bubbs[i]) {
  148. if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  149. bubb[i].width=bubbs[i]+"px";
  150. bubb[i].height=bubbs[i]+"px";
  151. }
  152. bubb[i].top=bubby[i]+"px";
  153. bubb[i].left=bubbx[i]+"px";
  154. }
  155. else {
  156. bubb[i].visibility="hidden";
  157. bubby[i]=0;
  158. return;
  159. }
  160. }
  161. }
  162.  
  163. document.onmousemove=mouse;
  164. function mouse(e) {
  165. if (e) {
  166. y=e.pageY;
  167. x=e.pageX;
  168. }
  169. else {
  170. set_scroll();
  171. y=event.y+sdown;
  172. x=event.x+sleft;
  173. }
  174. }
  175.  
  176. window.onresize=set_width;
  177. function set_width() {
  178. var sw_min=999999;
  179. var sh_min=999999;
  180. if (document.documentElement && document.documentElement.clientWidth) {
  181. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  182. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  183. }
  184. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  185. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  186. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  187. }
  188. if (document.body.clientWidth) {
  189. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  190. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  191. }
  192. if (sw_min==999999 || sh_min==999999) {
  193. sw_min=800;
  194. sh_min=600;
  195. }
  196. swide=sw_min;
  197. shigh=sh_min;
  198. }
  199.  
  200. window.onscroll=set_scroll;
  201. function set_scroll() {
  202. if (typeof(self.pageYOffset)=='number') {
  203. sdown=self.pageYOffset;
  204. sleft=self.pageXOffset;
  205. }
  206. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  207. sdown=document.body.scrollTop;
  208. sleft=document.body.scrollLeft;
  209. }
  210. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  211. sleft=document.documentElement.scrollLeft;
  212. sdown=document.documentElement.scrollTop;
  213. }
  214. else {
  215. sdown=0;
  216. sleft=0;
  217. }
  218. }
  219.  
  220. function createDiv(height, width) {
  221. var div=document.createElement("div");
  222. div.style.position="absolute";
  223. div.style.height=height;
  224. div.style.width=width;
  225. div.style.overflow="hidden";
  226. div.style.backgroundColor="transparent";
  227. return (div);
  228. }
  229. // ]]>
  230. </script>
  231. {/block:ifbubblecursor}
  232.  
  233. <style>body, a, a:hover { cursor:url({image:custom cursor}), auto; }</style>
  234.  
  235.  
  236. <meta name="color:link" content="#B8B8B8">
  237. <meta name="color:hover" content="#454545">
  238. <meta name="color:text" content="#9A9A9A">
  239. <meta name="color:bubbles" content="#8e66a8">
  240. <meta name="color:scrollbar" content="#D6D5D5">
  241. <meta name="color:background" content="#ffffff">
  242. <meta name="color:post background" content="ffffff">
  243.  
  244. <meta name="if:rounded corners" content="0">
  245. <meta name="if:shadow posts" content="0">
  246. <meta name="if:show captions" content="0">
  247. <meta name="if:show captions" content="0">
  248. <meta name="if:bubble cursor" content="0">
  249. <meta name="if:full background" content="0">
  250. <meta name="if:music player box" content="">
  251.  
  252.  
  253. <meta name="image:sidebar" content="http://media.tumblr.com/f051037e8b87ac57028131d73bf6c923/tumblr_inline_na5ttsTWBB1sig565.png"/>
  254. <meta name="image:custom cursor" content="http://i.imgur.com/ZOrzC.png"/>
  255. <meta name="image:favicon" content="http://i595.photobucket.com/albums/tt37/paravidatodazipnet/FAVICONS/FaviconsParaVidaToda31.gif"/>
  256. <meta name="image:corner image" content=""/>
  257. <meta name="image:background image" content=""/>
  258.  
  259. <meta name="text:ask text" content="whispered">
  260. <meta name="text:menu text" content="click!">
  261. <meta name="text:music player code" content="">
  262. <meta name="text:link1" content="home">
  263. <meta name="text:link1 url" content="/">
  264. <meta name="text:link2" content="ask">
  265. <meta name="text:link2 url" content="/ask">
  266. <meta name="text:link3" content="self">
  267. <meta name="text:link3 url" content="/">
  268. <meta name="text:link4" content="social">
  269. <meta name="text:link4 url" content="/">
  270. <meta name="text:corner img size" content="500">
  271.  
  272. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  273. <title>{Title}</title> {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  274. <link rel="shortcut icon" href="{image:favicon}" />
  275. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  276.  
  277.  
  278. <style type="text/css">
  279.  
  280.  
  281. a {
  282. color:{color:link};
  283. text-decoration:none;
  284. -moz-transition-duration:0.5s;
  285. -webkit-transition-duration:0.5s;
  286. -o-transition-duration:0.5s;
  287. }
  288.  
  289. a:hover {
  290. color:{color:hover};
  291. text-decoration:none;
  292. -moz-transition-duration:0.5s;
  293. -webkit-transition-duration:0.5s;
  294. -o-transition-duration:0.5s;
  295. }
  296.  
  297.  
  298. ::-webkit-scrollbar {background-color:{color:infobg}; height:8px; width:4px}
  299. ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:50px}
  300. ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar}; height:8px!important}
  301.  
  302. body {
  303. background-color:{color:background};
  304. background-image:url({image:background image});
  305. background-attachment:fixed;
  306. font-family:times;
  307. font-weight:normal;
  308. }
  309.  
  310.  
  311.  
  312.  
  313. h1 {
  314. font-weight:normal;
  315. font-size:10px;
  316. text-align:center;
  317. font-style:normal;
  318. line-height:80%;
  319. letter-spacing:1px;
  320. text-transform:uppercase;
  321. color:{color:text};
  322. }
  323.  
  324. h2 {
  325. font-size:15px;
  326. text-align:center;
  327. line-height:100%;
  328. letter-spacing:-0.5px;
  329. color:{color:text};
  330. font-weight:normal;
  331. padding:5px;
  332. padding-bottom:2px;
  333. }
  334.  
  335. {block:iffullbackground}
  336. #bg img {
  337. z-index:-2;
  338. position:fixed;
  339. top:0;
  340. left:0;
  341. height:100%;
  342. width:100%;
  343. }
  344. {/block:iffullbackground}
  345.  
  346.  
  347. blockquote {
  348. border-left:2px solid {color:text};
  349. padding-left:5px;
  350. margin:5px;
  351. }
  352.  
  353. #theme {
  354. background-color:{color:bg};
  355. width:700px;
  356. margin: 0 auto -12px auto;
  357. text-align: center;
  358. }
  359.  
  360. {block:ifmusicplayerbox}
  361. #music {
  362. background-color:{color:post background};
  363. padding:12px;
  364. margin-top:50px;
  365. margin-left:-20px;
  366. width:125px;
  367. font:times;
  368. height:auto;
  369. font-size:10px;
  370. position:fixed;
  371. {block:ifroundedcorners}
  372. border-radius:10px;
  373. {/block:ifroundedcorners}
  374. {block:ifshadowposts}
  375. -moz-box-shadow: 5px 5px 5px #888;
  376. -webkit-box-shadow: 5px 5px 5px #888;
  377. box-shadow: 5px 5px 5px #888;
  378. {/block:ifshadowposts}
  379.  
  380. }
  381. {/block:ifmusicplayerbox}
  382.  
  383. #sidebar {
  384. color:{color:text};
  385. position:fixed;
  386. width:110px;
  387. height:auto;
  388. margin-top:190px;
  389. text-align:left;
  390. margin-left:-95px;
  391. background:{color:post background};
  392. padding:20px;
  393. {block:ifroundedcorners}
  394. border-radius:10px;
  395. {/block:ifroundedcorners}
  396. {block:ifshadowposts}
  397. -moz-box-shadow: 5px 5px 5px #888;
  398. -webkit-box-shadow: 5px 5px 5px #888;
  399. box-shadow: 5px 5px 5px #888;
  400. {/block:ifshadowposts}
  401. }
  402.  
  403. #sidebar img {
  404. width:110px;
  405. height:110px;
  406. border-radius: 50%;
  407. margin-bottom:10px;
  408. }
  409.  
  410.  
  411. .links {
  412. margin-bottom:10px;
  413. font-size:9px;
  414. text-transform:lowercase;
  415. text-align:center;
  416. letter-spacing:2px;
  417. margin-top:-8px;
  418. line-height:200%;
  419. }
  420.  
  421. .links a{
  422. padding:3px;
  423. color:{color:link};
  424. letter-spacing:0px;
  425. text-decoration:none;
  426. -moz-transition-duration:1s;
  427. -webkit-transition-duration:1s;
  428. -o-transition-duration:1s;
  429. }
  430.  
  431. .links a:hover{
  432. color:{color:hover};
  433. -moz-transition-duration:1s;
  434. -webkit-transition-duration:1s;
  435. -o-transition-duration:1s;
  436. }
  437.  
  438. .desc {
  439. font-family:times;
  440. font-style:none;
  441. margin-bottom:10px;
  442. text-align:center;
  443. font-size:9px;
  444. color:{color:text};
  445. letter-spacing:0px;
  446. line-height:150%;
  447. }
  448.  
  449. .desc a {
  450. color:{color:link};
  451. }
  452.  
  453.  
  454. #postcontainer {
  455. float:left;
  456. margin-left:200px;
  457. margin-top:95px;
  458. text-align:justify;
  459. background-color:{color:bg};
  460. color:{color:text};
  461. margin-bottom: 35px;
  462. }
  463.  
  464.  
  465. #posts {
  466. width:250px;
  467. margin-bottom:50px;
  468. padding:20px;
  469. text-align:justify;
  470. background:{color:post background};
  471. font-size:9.5px;
  472. line-height:90%;
  473. letter-spacing:0x;
  474. color:{color:text};
  475. {block:ifroundedcorners}
  476. border-radius:10px;
  477. {/block:ifroundedcorners}
  478. {block:ifshadowposts}
  479. -moz-box-shadow: 5px 5px 5px #888;
  480. -webkit-box-shadow: 5px 5px 5px #888;
  481. box-shadow: 5px 5px 5px #888;
  482. {/block:ifshadowposts}
  483. }
  484.  
  485. {block:ifshowcaptions}
  486. .caption {
  487. width:250px;
  488. text-align:justify;
  489. line-height:120%;
  490. }
  491. {/block:ifshowcaptions}
  492.  
  493.  
  494.  
  495. .audio {
  496. width:500px;
  497. padding-bottom:10px;
  498. }
  499.  
  500. .albumart {
  501. float:left;
  502. padding:0px 10px 10px 0px;
  503. }
  504.  
  505. .albumart img {
  506. width:55px;
  507. height:55px;
  508. border-radius:50%;
  509. }
  510.  
  511. .playercontainer {
  512. text-align:left;
  513. padding:1px;
  514. background-color:#ffffff;
  515. width:50px;
  516. }
  517.  
  518. .audioinfo {
  519. padding:10px;
  520. color:{color:text};
  521. }
  522.  
  523. #postinfo {
  524. color:{color:text};
  525. text-align:center;
  526. font-family:times;
  527. font-size: 9px;
  528. letter-spacing:1px;
  529. font-style: normal;
  530. margin-top:10px;
  531. border-top: 1px;
  532. background:{color:post background};
  533. padding:3px;
  534. text-transform:lowercase;
  535. }
  536.  
  537. #postinfo a {
  538. color:{color:text};
  539. text-align:center;
  540. letter-spacing:0px;
  541. font-style:normal;
  542. }
  543.  
  544. #postinfo a:hover {
  545. color:{color:hover};
  546. }
  547.  
  548.  
  549. .note {
  550. text-transform:lowercase;
  551. font-style:normal;
  552. letter-spacing:0px;
  553. font-size: 9px;
  554. text-align:left;
  555. line-height:90%;
  556. margin-left:-40px;
  557. }
  558.  
  559. .note li {
  560. list-style-type:none;
  561. border-bottom:1px solid {color:border};
  562. padding:10px 25px 10px 25px;
  563. text-align:left;
  564. margin:0px;
  565. -moz-transition-duration:0.5s;
  566. -webkit-transition-duration:0.5s;
  567. -o-transition-duration:0.5s;
  568. }
  569.  
  570. .tags {
  571. margin-top:-5px;
  572. font-family:times;
  573. font-style:normal;
  574. width:250px;
  575. text-transform:lowercase;
  576. color:{color:text};
  577. letter-spacing:0px;
  578. line-height:120%;
  579. font-size:8px;
  580. text-align:center;
  581. padding:2px;
  582. -moz-transition-duration:0.5s;
  583. -webkit-transition-duration:0.5s;
  584. -o-transition-duration:0.5s;
  585. }
  586.  
  587. .tags a {
  588. color:{color:text};
  589. letter-spacing:0px;
  590. padding:1px;
  591. }
  592. ul.chat, .chat ol, .chat li {
  593. list-style:none;
  594. margin:0px;
  595. padding:2px;
  596. }
  597.  
  598. #note ava {
  599. border-radius:50%;
  600. }
  601.  
  602. .label {
  603. text-decoration:underline;
  604. font-weight:700;
  605. background-color:{color:infobg};
  606. margin-right:5px;
  607. }
  608.  
  609. .avatar img {
  610. padding:5px;
  611. }
  612.  
  613.  
  614.  
  615. #cred {
  616. position:fixed;
  617. font-size:8px;
  618. font-style:none;
  619. line-height:150%;
  620. left:5px;
  621. bottom:10px;
  622. }
  623.  
  624. #cred a {
  625. padding:3px;
  626. color:{color:link};
  627. -moz-transition-duration:0.5s;
  628. -webkit-transition-duration:0.5s;
  629. -o-transition-duration:0.5s;
  630. }
  631.  
  632. #s-m-t-tooltip {
  633. z-index: 9999;
  634. background: {color:post background};
  635. font-size: 9px;
  636. line-height: 11px;
  637. font-family:times;
  638. letter-spacing: 1px;
  639. color: {color:text};
  640. word-wrap: break-word;
  641. padding: 2px 5px 2px 6px;
  642. display: block;
  643. margin: 24px 14px 7px 12px;
  644. }
  645.  
  646.  
  647. {CustomCSS}
  648.  
  649. </style>
  650. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  651.  
  652. </head>
  653.  
  654. <body>
  655. {block:iffullbackground}<div id="bg"><img src="{image:background image}"></div>{/block:iffullbackground}
  656. <div id="theme">
  657. <div id="sidebar">
  658. <a href="/" title="{Title}"><img src="{image:sidebar}"></a>
  659. <div class="desc">
  660. {Description}<br><br>
  661. <select onchange='location=this.options[this.selectedIndex].value;' style="font-family:arial; font-size:10px; color:#000; background:#fff;"></p>
  662. <p><option>{text:menu text}</option></p>
  663. <p><option value="{text:link1 url}">{text:link1}</option></p>
  664. <p><option value="{text:link2 url}">{text:link2}</option></p>
  665. <p><option value="{text:link3 url}">{text:link3}</option></p>
  666. <p><option value="{text:link4 url}">{text:link4}</option></p>
  667. <p></select></p>
  668. </div>
  669. {block:ifmusicplayerbox}<div id="music">{text:music player code}</div>{/block:ifmusicplayerbox}
  670. </div>
  671.  
  672. <div id="postcontainer">
  673.  
  674. <div class= "autopagerize_page_element">
  675. {block:Posts}
  676.  
  677. <div id="posts">
  678.  
  679. {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{/block:Text}
  680.  
  681. {block:Quote}<h2>“{Quote}”</h2><h1>{Source}</h1>{/block:Quote}
  682.  
  683. {block:Link}<a href="{URL}"><h2>{Name}</h2></a>
  684. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  685.  
  686. {block:Photo}<center><img src="{PhotoURL-250}"/></center>{block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}{/block:Caption}{/block:ifshowcaptions}{/block:Photo}
  687.  
  688. {block:Photoset}<center>{Photoset-250}</center>
  689. {block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifshowcaptions}{/block:Photoset}
  690.  
  691. {block:Chat}<ul class="chat">{block:Title}<h2>{Title}</h2>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  692.  
  693. {block:Video}{Video-250}
  694. {block:ifshowcaptions}
  695. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  696. {block:ifshowcaptions}{/block:Video}
  697.  
  698. {block:Answer}
  699. <div class="posts"><br>
  700. <div class="avatar"><img style="border-radius:50px;" src="{AskerPortraitURL-40}" align="left"/></div><div class="asker"><b>{Asker} {text:ask text}:</b> <div class="question">{Question}</div></div><br>
  701. {Answer}
  702. </div>
  703. {/block:Answer}
  704.  
  705. {block:Audio}<div class="audio">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
  706. <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  707. {/block:ExternalAudio}</div>
  708. <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
  709. {block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifshowcaptions}<br>{/block:Audio}
  710.  
  711.  
  712.  
  713. {block:Date}<div id="postinfo"><a href="{Permalink}">{TimeAgo}</a>{block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br>{block:RebloggedFrom} <a href="{ReblogParentURL}" title={ReblogParentName}>via</a> • {/block:RebloggedFrom}
  714. {block:ContentSource} <a href="{SourceURL}" title={SourceTitle}>src</a>{/block:ContentSource}</div>{/block:Date}
  715. {block:HasTags}
  716. <div class="tags">
  717. {block:Tags}<a href="{TagURL}">#{Tag}</a>{/block:Tags}</div>
  718. {/block:HasTags}
  719. <div class="note">
  720. {block:PostNotes}
  721. {block:PostNotes}<div id="note ava">{PostNotes-16}</div>{PostNotes}{/block:PostNotes}
  722. </div>
  723. </div>
  724. {/block:Posts}
  725. </div>
  726.  
  727. </div>
  728.  
  729. <div id="cred"><a href="http://kangjan.tumblr.com/" title="theme by ava"><img src="http://i.imgur.com/zUcQI19.gif"></a></div>
  730.  
  731. </div>
  732. </div>
  733. </div>
  734. </body>
  735. </html>
  736. <div style="position:fixed;
  737.  
  738. bottom:10px;right:10px;">
  739.  
  740. <img src="{image:corner image}" width={text:corner img size}px>
  741.  
  742. </div>
Advertisement
Add Comment
Please, Sign In to add comment