Advertisement
ramisaaaaa

Untitled

Oct 30th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.01 KB | None | 0 0
  1. <!--
  2. theme by s0pas
  3. dont remove the credit because ill find out and i will report you and cut you (don't steal create you own themes bye)
  4. -->
  5.  
  6. <script type="text/javascript">
  7. <!--
  8.  
  9. // Disable Right Click Script
  10.  
  11. function IE(e)
  12. {
  13. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  14. {
  15. return false;
  16. }
  17. }
  18. function NS(e)
  19. {
  20. if (document.layers || (document.getElementById && !document.all))
  21. {
  22. if (e.which == "2" || e.which == "3")
  23. {
  24. return false;
  25. }
  26. }
  27. }
  28. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  29.  
  30. //-->
  31. </script>
  32.  
  33. <head>
  34. <script type="text/javascript">
  35. // <![CDATA[
  36. var colour="{color:sparkle}"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  37. var sparkles=50;
  38.  
  39. /****************************
  40. * Tinkerbell Magic Sparkle *
  41. *(c)2005-12 mf2fm web-design*
  42. * http://www.mf2fm.com/rv *
  43. * DON'T EDIT BELOW THIS BOX *
  44. ****************************/
  45. var x=ox=400;
  46. var y=oy=300;
  47. var swide=800;
  48. var shigh=600;
  49. var sleft=sdown=0;
  50. var tiny=new Array();
  51. var star=new Array();
  52. var starv=new Array();
  53. var starx=new Array();
  54. var stary=new Array();
  55. var tinyx=new Array();
  56. var tinyy=new Array();
  57. var tinyv=new Array();
  58.  
  59. window.onload=function() { if (document.getElementById) {
  60. var i, rats, rlef, rdow;
  61. for (var i=0; i<sparkles; i++) {
  62. var rats=createDiv(3, 3);
  63. rats.style.visibility="hidden";
  64. document.body.appendChild(tiny[i]=rats);
  65. starv[i]=0;
  66. tinyv[i]=0;
  67. var rats=createDiv(5, 5);
  68. rats.style.backgroundColor="transparent";
  69. rats.style.visibility="hidden";
  70. var rlef=createDiv(1, 5);
  71. var rdow=createDiv(5, 1);
  72. rats.appendChild(rlef);
  73. rats.appendChild(rdow);
  74. rlef.style.top="2px";
  75. rlef.style.left="0px";
  76. rdow.style.top="0px";
  77. rdow.style.left="2px";
  78. document.body.appendChild(star[i]=rats);
  79. }
  80. set_width();
  81. sparkle();
  82. }}
  83.  
  84. function sparkle() {
  85. var c;
  86. if (x!=ox || y!=oy) {
  87. ox=x;
  88. oy=y;
  89. for (c=0; c<sparkles; c++) if (!starv[c]) {
  90. star[c].style.left=(starx[c]=x)+"px";
  91. star[c].style.top=(stary[c]=y)+"px";
  92. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  93. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  94. star[c].style.visibility="visible";
  95. starv[c]=50;
  96. break;
  97. }
  98. }
  99. for (c=0; c<sparkles; c++) {
  100. if (starv[c]) update_star(c);
  101. if (tinyv[c]) update_tiny(c);
  102. }
  103. setTimeout("sparkle()", 40);
  104. }
  105.  
  106. function update_star(i) {
  107. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  108. if (starv[i]) {
  109. stary[i]+=1+Math.random()*3;
  110. starx[i]+=(i%5-2)/5;
  111. if (stary[i]<shigh+sdown) {
  112. star[i].style.top=stary[i]+"px";
  113. star[i].style.left=starx[i]+"px";
  114. }
  115. else {
  116. star[i].style.visibility="hidden";
  117. starv[i]=0;
  118. return;
  119. }
  120. }
  121. else {
  122. tinyv[i]=50;
  123. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  124. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  125. tiny[i].style.width="2px";
  126. tiny[i].style.height="2px";
  127. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  128. star[i].style.visibility="hidden";
  129. tiny[i].style.visibility="visible"
  130. }
  131. }
  132.  
  133. function update_tiny(i) {
  134. if (--tinyv[i]==25) {
  135. tiny[i].style.width="1px";
  136. tiny[i].style.height="1px";
  137. }
  138. if (tinyv[i]) {
  139. tinyy[i]+=1+Math.random()*3;
  140. tinyx[i]+=(i%5-2)/5;
  141. if (tinyy[i]<shigh+sdown) {
  142. tiny[i].style.top=tinyy[i]+"px";
  143. tiny[i].style.left=tinyx[i]+"px";
  144. }
  145. else {
  146. tiny[i].style.visibility="hidden";
  147. tinyv[i]=0;
  148. return;
  149. }
  150. }
  151. else tiny[i].style.visibility="hidden";
  152. }
  153.  
  154. document.onmousemove=mouse;
  155. function mouse(e) {
  156. if (e) {
  157. y=e.pageY;
  158. x=e.pageX;
  159. }
  160. else {
  161. set_scroll();
  162. y=event.y+sdown;
  163. x=event.x+sleft;
  164. }
  165. }
  166.  
  167. window.onscroll=set_scroll;
  168. function set_scroll() {
  169. if (typeof(self.pageYOffset)=='number') {
  170. sdown=self.pageYOffset;
  171. sleft=self.pageXOffset;
  172. }
  173. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  174. sdown=document.body.scrollTop;
  175. sleft=document.body.scrollLeft;
  176. }
  177. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  178. sleft=document.documentElement.scrollLeft;
  179. sdown=document.documentElement.scrollTop;
  180. }
  181. else {
  182. sdown=0;
  183. sleft=0;
  184. }
  185. }
  186.  
  187. window.onresize=set_width;
  188. function set_width() {
  189. var sw_min=999999;
  190. var sh_min=999999;
  191. if (document.documentElement && document.documentElement.clientWidth) {
  192. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  193. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  194. }
  195. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  196. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  197. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  198. }
  199. if (document.body.clientWidth) {
  200. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  201. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  202. }
  203. if (sw_min==999999 || sh_min==999999) {
  204. sw_min=800;
  205. sh_min=600;
  206. }
  207. swide=sw_min;
  208. shigh=sh_min;
  209. }
  210.  
  211. function createDiv(height, width) {
  212. var div=document.createElement("div");
  213. div.style.position="absolute";
  214. div.style.height=height+"px";
  215. div.style.width=width+"px";
  216. div.style.overflow="hidden";
  217. return (div);
  218. }
  219.  
  220. function newColour() {
  221. var c=new Array();
  222. c[0]=255;
  223. c[1]=Math.floor(Math.random()*256);
  224. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  225. c.sort(function(){return (0.5 - Math.random());});
  226. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  227. }
  228. // ]]>
  229. </script>
  230.  
  231. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  232.  
  233. <!-- DEFAULT VARIABLES -->
  234. <meta name="color:background" content="#FFFFFF"/>
  235. <meta name="color:title" content="#000000"/>
  236. <meta name="color:text" content="#000000"/>
  237. <meta name="color:link" content="#8294c5"/>
  238. <meta name="color:letter" content="#8294c5"/>
  239. <meta name="color:Hover" content="#000000"/>
  240. <meta name="image:Sidebar" content=""/>
  241. <meta name="image:Background" content=""/>
  242. <meta name="if:solid border" content="1"/>
  243. <meta name="color:sparkle" content="#8294c5"/>
  244. <meta name="if:dotted border" content="1"/>
  245. <meta name="if:tiny scrollbar" content="1"/>
  246. <meta name="if:dixel font" content="1"/>
  247. <meta name="if:pixel font" content="1"/>
  248. <meta name="if:show blog title" content="1"/>
  249. <meta name="if:handy00 font" content="1"/>
  250. <meta name="text:title" content="Die in your arms" />
  251. <meta name="text:Link One Title" content="link 1" />
  252. <meta name="text:Link One" content="" />
  253. <meta name="text:Link Two Title" content="link 2"/>
  254. <meta name="text:Link Two" content="" />
  255. <meta name="text:Link Three Title" content="link 3"/>
  256. <meta name="text:Link Three" content="" />
  257.  
  258. <style type="text/css">
  259.  
  260. body, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress !important;}
  261.  
  262.  
  263. {block:iftinyscrollbar}
  264. ::-webkit-scrollbar {width: 4px; height: 4px; background: #FFFFFF; }
  265.  
  266. ::-webkit-scrollbar-thumb { background-color: {color:sparkle}; border: 1px solid #aaaaaa;}
  267. {/block:iftinyscrollbar}
  268.  
  269.  
  270. @font-face {font-family: "handy00";src: url('http://static.tumblr.com/8ls1oxv/AfJlyd5ev/handy00.ttf');}
  271.  
  272.  
  273. body {
  274. margin:0px;
  275. background-color: {color:Background};
  276. background-image:url({image:Background});
  277. background-attachment: fixed;
  278. background-repeat: repeat;
  279. {block:ifhandy00font}
  280. font-family: handy00;
  281. {/block:ifhandy00font}
  282. {block:ifdixelfont}
  283. font-family: dixel;
  284. {/block:ifdixelfont}
  285. {block:ifpixelfont}
  286. font-family: pixel;
  287. {/block:ifpixelfont}
  288. font-size: 8px;
  289. line-height:10px;
  290. color:{color:Text};
  291. }
  292.  
  293. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  294.  
  295. p {
  296. margin:0px;
  297. margin-top:1px;
  298. }
  299.  
  300. a:link, a:active, a:visited{
  301. color: {color:Link};
  302. text-decoration: none;
  303. }
  304.  
  305. a:hover {
  306. color:{color:hover};
  307. text-decoration: none;
  308. font-style: underline;
  309. }
  310.  
  311. div#cage{
  312. margin-top: 0px;
  313. margin-bottom: 2px;
  314. position: relative;
  315. width: 650px;
  316. overflow: hidden;
  317. color: {color:Title};
  318. _margin-left: 10%;
  319. padding-right: 500px;
  320. }
  321.  
  322. div#content{
  323. float:right;
  324. width:500px;
  325. padding:2px;
  326. margin-left: -00px;
  327. }
  328.  
  329.  
  330. #sidebar{
  331. position:fixed !important;
  332. width:104px;
  333. height:auto;
  334. padding:3px;
  335. font-size:8px;
  336. font-family:dixel;
  337. margin-top: 150px;
  338. margin-left:696px;
  339. border: 1px solid #ddd;
  340. }
  341.  
  342. {block:ifshowblogtitle}
  343. #gfdffd{
  344. position: fixed;
  345. background-color: transparent;
  346. font-family:dixel;
  347. text-transform: lowercase;
  348. font-size: 8px;
  349. line-height: 8px;
  350. letter-spacing:1px;
  351. text-shadow: 0px 0px 5px #ddd;
  352. margin-top:-18px;
  353. margin-left: 6px;
  354. width: auto;
  355. height: auto;
  356. }
  357.  
  358. #gfdffd:first-letter{
  359. position: fixed;
  360. font-family:dawning;
  361. color: {color:letter};
  362. background-color: transparent;
  363. font-size: 23px;
  364. letter-spacing:1px;
  365. }
  366. {block:ifshowblogtitle}
  367.  
  368. div#sidebar2{
  369. position:fixed !important;
  370. margin-left: 809px;
  371. margin-top: 167px;
  372. width: 60px;
  373. height: 70px;
  374. padding: 0px;
  375. line-height:10px;
  376. font-size: 8px;
  377. font-family: pixel;
  378. letter-spacing:0px;
  379. margin-bottom: 0px;
  380. background-color:{color:background};
  381. background-image:url({image:Background});
  382. }
  383.  
  384. .link1 a {
  385. padding-left:11px;
  386. padding-right:7px;
  387. margin-bottom: 3px;
  388. line-height:7px;
  389. width: 30px;
  390. height: 8px;
  391. margin-top:1px;
  392. border:1px solid #ddd;
  393. margin-left:0px;
  394. display:block;
  395. font-family: pixel;
  396. font-size:8px;
  397. text-align: right;
  398. color: #000;
  399. background-color:white;
  400. -webkit-transition: all 0.8s ease-out;
  401. -moz-transition: all 0.8s ease-out;
  402. transition: all 0.8s ease-out;
  403. }
  404.  
  405. .link1 a:hover{
  406. padding-right:7px;
  407. margin-bottom: 3px;
  408. width: 62px;
  409. height: 8px;
  410. color: #000;
  411. background-color:white;
  412. -webkit-transition: all 0.3s ease-out;
  413. -moz-transition: all 0.3s ease-out;
  414. border-left:0px solid #e1e1e1;
  415. transition: all 0.3s ease-out;
  416. text-align:right;
  417. }
  418.  
  419. .link2 a {
  420. padding-right:7px;
  421. margin-bottom: 3px;
  422. line-height:7px;
  423. border:1px solid #ddd;
  424. width: 30px;
  425. height: 8px;
  426. margin-top:1px;
  427. margin-left:0px;
  428. display:block;
  429. font-family: pixel;
  430. font-size:8px;
  431. text-align: right;
  432. color: #000;
  433. background-color:white;
  434. -webkit-transition: all 0.8s ease-out;
  435. -moz-transition: all 0.8s ease-out;
  436. transition: all 0.8s ease-out;
  437. }
  438.  
  439. .link2 a:hover{
  440. padding-right:7px;
  441. margin-bottom: 3px;
  442. width: 56px;
  443. height: 8px;
  444. color: #000;
  445. background-color:white;
  446. -webkit-transition: all 0.3s ease-out;
  447. -moz-transition: all 0.3s ease-out;
  448. border-left:0px solid #e1e1e1;
  449. transition: all 0.3s ease-out;
  450. text-align:right;
  451. }
  452.  
  453. .link3 a {
  454. padding-right:7px;
  455. margin-bottom: 3px;
  456. line-height:7px;
  457. width: 42px;
  458. height: 8px;
  459. margin-top:1px;
  460. margin-left:0px;
  461. display:block;
  462. font-family:pixel;
  463. border:1px solid #ddd;
  464. font-size:8px;
  465. text-align: right;
  466. color: #000;
  467. background-color:white;
  468. -webkit-transition: all 0.8s ease-out;
  469. -moz-transition: all 0.8s ease-out;
  470. transition: all 0.8s ease-out;
  471. }
  472.  
  473. .link3 a:hover{
  474. padding-right:7px;
  475. margin-bottom: 3px;
  476. width: 67px;
  477. height: 8px;
  478. color: #000;
  479. background-color:white;
  480. -webkit-transition: all 0.3s ease-out;
  481. -moz-transition: all 0.3s ease-out;
  482. border-left:0px solid #e1e1e1;
  483. transition: all 0.3s ease-out;
  484. text-align:right;
  485. }
  486.  
  487. .link4 a {
  488. padding-right:7px;
  489. margin-bottom: 3px;
  490. line-height:7px;
  491. width: 38px;
  492. height: 8px;
  493. border:1px solid #ddd;
  494. margin-top:1px;
  495. margin-left:0px;
  496. display:block;
  497. font-family: pixel;
  498. font-size:8px;
  499. text-align:right;
  500. color: #000;
  501. background-color:white;
  502. -webkit-transition: all 0.8s ease-out;
  503. -moz-transition: all 0.8s ease-out;
  504. transition: all 0.8s ease-out;
  505. }
  506.  
  507. .link4 a:hover{
  508. padding-right:7px;
  509. margin-bottom: 3px;
  510. width: 72px;
  511. height: 8px;
  512. color: #000;
  513. background-color:white;
  514. -webkit-transition: all 0.3s ease-out;
  515. -moz-transition: all 0.3s ease-out;
  516. border-left:0px solid #e1e1e1;
  517. transition: all 0.3s ease-out;
  518. text-align:right;
  519. }
  520.  
  521. .link5 a {
  522. padding-right:7px;
  523. border:1px solid #ddd;
  524. margin-bottom: 3px;
  525. line-height:7px;
  526. width: 28px;
  527. height: 8px;
  528. margin-top:1px;
  529. margin-left:0px;
  530. display:block;
  531. font-family: pixel;
  532. font-size:8px;
  533. text-align: right;
  534. text-decoration:none;
  535. color: #000;
  536. background-color:white;
  537. -webkit-transition: all 0.8s ease-out;
  538. -moz-transition: all 0.8s ease-out;
  539. transition: all 0.8s ease-out;
  540. }
  541.  
  542. .link5 a:hover{
  543. padding-right:7px;
  544. margin-bottom: 3px;
  545. width: 55px;
  546. height: 8px;
  547. color: #000;
  548. background-color:white;
  549. -webkit-transition: all 0.3s ease-out;
  550. -moz-transition: all 0.3s ease-out;
  551. border-left:0px solid #e1e1e1;
  552. transition: all 0.3s ease-out;
  553. text-align:right;
  554. }
  555.  
  556.  
  557. div#entry{
  558. margin-top: 2px;
  559. padding: 4px;
  560. padding-bottom: 3px;
  561. {block:ifsolidborder}
  562. border: 1px solid #ddd;
  563. {/block:ifsolidborder}
  564. {block:ifdottedborder}
  565. border: 1px dotted #aaa;
  566. {/block:ifdottedborder}
  567. width: 500px;
  568. background: white;
  569. }
  570.  
  571.  
  572. div#stopstealingmycodeshoe{
  573. padding: 2px;
  574. height: 8px;
  575. background: white;
  576. float:left;
  577. font-size: 8px;
  578. font-family: handy00;
  579. position:fixed;
  580. margin-left: -6px;
  581. top: 285px;
  582. border-bottom-right-radius:40px;
  583. border-bottom-left-radius:40px;
  584. width: 115px;
  585. -webkit-transition: opacity 0.2s linear; opacity: 0.8;
  586. -webkit-transition: all 0.2s linear;
  587. -moz-transition: all 0.2s linear;
  588. transition: all 0.2s linear;
  589. }
  590.  
  591.  
  592. #entry .perma{
  593. margin-right: -10px;
  594. margin-top: 4px;
  595. width:200px;
  596. position: absolute;
  597. font-family: pixel;
  598. text-transform:uppercase;
  599. font-size: 8px;
  600. text-align: center;
  601. overflow:hidden;
  602. opacity: 0.0;
  603. background-color:#fff;
  604. }
  605.  
  606. #entry:hover .perma{
  607. margin-right: 250px;
  608. overflow:visible;
  609. -webkit-transition: opacity 0.2s linear; opacity: 0.8;
  610. -webkit-transition: all 0.2s linear;
  611. -moz-transition: all 0.2s linear;
  612. transition: all 0.2s linear;
  613. }
  614.  
  615. @font-face{
  616. font-family: 'pixel';
  617. font-style: normal;
  618. font-weight: normal;
  619. src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf') format('woff');}
  620.  
  621.  
  622. @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  623.  
  624.  
  625. @font-face {
  626. font-family: "dawning";
  627. src: url('http://static.tumblr.com/viiafci/Hyzlxws2r/dawningofanewday.ttf');
  628. }
  629.  
  630. #postnotes{
  631. text-align: left;}
  632.  
  633.  
  634. #postnotes blockquote{
  635. border: 0px;}
  636.  
  637.  
  638. .title{
  639. font-family: dawning ;
  640. font-size: 23px;
  641. line-height: 23px;
  642. color: {color:Title};
  643. letter-spacing: 0px;
  644. font-weight: normal;
  645. padding:0px 0px 0px 0px;
  646. }
  647.  
  648.  
  649. blockquote{
  650. padding: 0px 0px 2px 5px;
  651. margin: 0px 0px 2px 1px;
  652. border-left: 1px solid #ddd;
  653. }
  654.  
  655. blockquote p, ul{
  656. margin: 0px;
  657. padding: 0px;
  658. }
  659.  
  660. {CustomCSS}
  661.  
  662. </style>
  663.  
  664. <title>{title}</title>
  665.  
  666. <link rel="shortcut icon"href="{favicon}">
  667. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  668. <meta name="viewport" content="width=820" />
  669.  
  670. </head>
  671. <body>
  672.  
  673.  
  674. <div id="cage">
  675. <div id="center"><div id="sidebar">
  676. {block:ifshowblogtitle}<div id="gfdffd">{text:title}</div>{/block:ifshowblogtitle}
  677. <img src="{image:sidebar}" width=104px>
  678. <center>{Description}<br>
  679. </div>
  680.  
  681. <div id="sidebar2">
  682. <span class="link1"><a href="/">home</a></span>
  683. <span class="link2"><a href="/ask">msg</a></span>
  684. <span class="link3"><a href="{text:Link One}">{text:Link One Title}</a> </span>
  685. <span class="link4"><a href="{text:Link Two}">{text:Link Two Title}</a> </span>
  686. <span class="link5"><a href="{text:Link Three}">{text:Link Three Title}</a></span></div>
  687.  
  688. <div id="content">
  689. {block:Posts}
  690. <div id="entry">
  691.  
  692. {block:Text}
  693. {block:Title}<span class="title">{Title}</span>{/block:Title}
  694. <span class="entrytext">{Body}</span>
  695. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>{/block:Text}
  696.  
  697. {block:Link}
  698. <a href="{URL}" class="title">{Name}</a>
  699. {block:Description}{Description}{/block:Description}
  700. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
  701. {block:Link}
  702.  
  703. {block:Photo}
  704. <div class="perma">
  705. <center>{timeago} = {DayOfMonth} {ShortMonth} {Year}</center>
  706. <a href="{permalink}"> {NoteCountWithLabel}</a> = <a href="{ReblogURL}" target="_blank"> reblog </a> </span></div>
  707. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{LinkCloseTag}
  708. {/block:Photo}
  709.  
  710. {block:Quote}
  711. <span class="entrytext">{Quote}</span>
  712. {block:Source}<b><a href="{Permalink}">{Source}</a></b>{/block:Source}
  713. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
  714. {/block:Quote}
  715.  
  716. {block:Chat}
  717. {block:Title}<span class="title">{Title}</span>{/block:Title}
  718. <ul class="chat">
  719. {block:Lines}
  720. <li class="user_{UserNumber}">
  721. {block:Label}
  722. <span class="label">{Label}</span>
  723. {/block:Label}
  724.  
  725. {Line}
  726. </li>
  727. {/block:Lines}
  728. </ul>
  729. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></div>
  730. {/block:Chat}
  731.  
  732.  
  733. {block:Audio}
  734. <div style="width:300px; height:20px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px; float:right;"><small>
  735. {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}</small></div></div></centeR><BR>
  736. {block:Caption}{Caption}{/block:Caption}
  737. <div align="right"><a href="{Permalink}">{notecountwithlabel}</a></span></div>
  738.  
  739. {/block:Audio}
  740.  
  741. {block:Video}<center><div class="perma">
  742. <a href="{permalink}">{NoteCountWithLabel}</a> / <a href="{permalink}">{TimeAgo}</a> / <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  743. <div class="video">{Video-250}</div>
  744. {block:Caption}<a href="{Permalink}">{Caption}</a>{/block:Caption}</center>
  745. {block:Video}
  746.  
  747.  
  748. {block:PermalinkPage}
  749. {block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel} {/block:NoteCount}{block:HasTags}{block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}
  750.  
  751. </span>
  752. <br>
  753. <div id="postnotes">{PostNotes}</div><br>
  754.  
  755. {block:ContentSource}
  756. <br><a href="{SourceURL}">
  757. {lang:Source}:
  758. {block:SourceLogo}
  759. <img src="{BlackLogoURL}" width="{LogoWidth}"
  760. height="{LogoHeight}" alt="{SourceTitle}" />
  761. {/block:SourceLogo}
  762. {block:NoSourceLogo}
  763. {SourceLink}
  764. {/block:NoSourceLogo}
  765. </a>
  766. {/block:ContentSource}</div>{/block:PermalinkPage}
  767.  
  768. </div>
  769.  
  770. {/block:Posts}
  771.  
  772.  
  773. </center>
  774. </div></div>
  775. </div>
  776. </center>
  777. </body>
  778. <div style="position:fixed; bottom:10px; right:10px;">
  779. <a href="http://s0pas.tumblr.com">theme by paula</a>
  780. </div>
  781. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement