Advertisement
ramisaaaaa

Untitled

Jan 17th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.01 KB | None | 0 0
  1. <!--
  2. theme by cyrusnigga dont remove credit tysm :)
  3. if you do i'll find you
  4. -->
  5. <html>
  6.  
  7. <script type="text/javascript">
  8. // <![CDATA[
  9. var colour="{color:sparkles}"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  10. var sparkles=50;
  11.  
  12. /****************************
  13. * Tinkerbell Magic Sparkle *
  14. *(c)2005-12 mf2fm web-design*
  15. * http://www.mf2fm.com/rv *
  16. * DON'T EDIT BELOW THIS BOX *
  17. ****************************/
  18. var x=ox=400;
  19. var y=oy=300;
  20. var swide=800;
  21. var shigh=600;
  22. var sleft=sdown=0;
  23. var tiny=new Array();
  24. var star=new Array();
  25. var starv=new Array();
  26. var starx=new Array();
  27. var stary=new Array();
  28. var tinyx=new Array();
  29. var tinyy=new Array();
  30. var tinyv=new Array();
  31.  
  32. window.onload=function() { if (document.getElementById) {
  33. var i, rats, rlef, rdow;
  34. for (var i=0; i<sparkles; i++) {
  35. var rats=createDiv(3, 3);
  36. rats.style.visibility="hidden";
  37. rats.style.zIndex="999";
  38. document.body.appendChild(tiny[i]=rats);
  39. starv[i]=0;
  40. tinyv[i]=0;
  41. var rats=createDiv(5, 5);
  42. rats.style.backgroundColor="transparent";
  43. rats.style.visibility="hidden";
  44. rats.style.zIndex="999";
  45. var rlef=createDiv(1, 5);
  46. var rdow=createDiv(5, 1);
  47. rats.appendChild(rlef);
  48. rats.appendChild(rdow);
  49. rlef.style.top="2px";
  50. rlef.style.left="0px";
  51. rdow.style.top="0px";
  52. rdow.style.left="2px";
  53. document.body.appendChild(star[i]=rats);
  54. }
  55. set_width();
  56. sparkle();
  57. }}
  58.  
  59. function sparkle() {
  60. var c;
  61. if (x!=ox || y!=oy) {
  62. ox=x;
  63. oy=y;
  64. for (c=0; c<sparkles; c++) if (!starv[c]) {
  65. star[c].style.left=(starx[c]=x)+"px";
  66. star[c].style.top=(stary[c]=y)+"px";
  67. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  68. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  69. star[c].style.visibility="visible";
  70. starv[c]=50;
  71. break;
  72. }
  73. }
  74. for (c=0; c<sparkles; c++) {
  75. if (starv[c]) update_star(c);
  76. if (tinyv[c]) update_tiny(c);
  77. }
  78. setTimeout("sparkle()", 40);
  79. }
  80.  
  81. function update_star(i) {
  82. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  83. if (starv[i]) {
  84. stary[i]+=1+Math.random()*3;
  85. starx[i]+=(i%5-2)/5;
  86. if (stary[i]<shigh+sdown) {
  87. star[i].style.top=stary[i]+"px";
  88. star[i].style.left=starx[i]+"px";
  89. }
  90. else {
  91. star[i].style.visibility="hidden";
  92. starv[i]=0;
  93. return;
  94. }
  95. }
  96. else {
  97. tinyv[i]=50;
  98. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  99. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  100. tiny[i].style.width="2px";
  101. tiny[i].style.height="2px";
  102. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  103. star[i].style.visibility="hidden";
  104. tiny[i].style.visibility="visible"
  105. }
  106. }
  107.  
  108. function update_tiny(i) {
  109. if (--tinyv[i]==25) {
  110. tiny[i].style.width="1px";
  111. tiny[i].style.height="1px";
  112. }
  113. if (tinyv[i]) {
  114. tinyy[i]+=1+Math.random()*3;
  115. tinyx[i]+=(i%5-2)/5;
  116. if (tinyy[i]<shigh+sdown) {
  117. tiny[i].style.top=tinyy[i]+"px";
  118. tiny[i].style.left=tinyx[i]+"px";
  119. }
  120. else {
  121. tiny[i].style.visibility="hidden";
  122. tinyv[i]=0;
  123. return;
  124. }
  125. }
  126. else tiny[i].style.visibility="hidden";
  127. }
  128.  
  129. document.onmousemove=mouse;
  130. function mouse(e) {
  131. if (e) {
  132. y=e.pageY;
  133. x=e.pageX;
  134. }
  135. else {
  136. set_scroll();
  137. y=event.y+sdown;
  138. x=event.x+sleft;
  139. }
  140. }
  141.  
  142. window.onscroll=set_scroll;
  143. function set_scroll() {
  144. if (typeof(self.pageYOffset)=='number') {
  145. sdown=self.pageYOffset;
  146. sleft=self.pageXOffset;
  147. }
  148. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  149. sdown=document.body.scrollTop;
  150. sleft=document.body.scrollLeft;
  151. }
  152. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  153. sleft=document.documentElement.scrollLeft;
  154. sdown=document.documentElement.scrollTop;
  155. }
  156. else {
  157. sdown=0;
  158. sleft=0;
  159. }
  160. }
  161.  
  162. window.onresize=set_width;
  163. function set_width() {
  164. var sw_min=999999;
  165. var sh_min=999999;
  166. if (document.documentElement && document.documentElement.clientWidth) {
  167. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  168. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  169. }
  170. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  171. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  172. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  173. }
  174. if (document.body.clientWidth) {
  175. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  176. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  177. }
  178. if (sw_min==999999 || sh_min==999999) {
  179. sw_min=800;
  180. sh_min=600;
  181. }
  182. swide=sw_min;
  183. shigh=sh_min;
  184. }
  185.  
  186. function createDiv(height, width) {
  187. var div=document.createElement("div");
  188. div.style.position="absolute";
  189. div.style.height=height+"px";
  190. div.style.width=width+"px";
  191. div.style.overflow="hidden";
  192. return (div);
  193. }
  194.  
  195. function newColour() {
  196. var c=new Array();
  197. c[0]=255;
  198. c[1]=Math.floor(Math.random()*256);
  199. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  200. c.sort(function(){return (0.5 - Math.random());});
  201. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  202. }
  203. // ]]>
  204. </script>
  205.  
  206. <title>{Title}</title>
  207. <script type="text/javascript"
  208. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  209. <link href='http://fonts.googleapis.com/css?family=Miniver' rel='stylesheet' type='text/css'>
  210. <link href='http://fonts.googleapis.com/css?family=Imprima' rel='stylesheet' type='text/css'>
  211. <meta name="color:background" content="#FFFFFF" />
  212. <meta name="color:text" content="#57554F" />
  213. <meta name="color:link" content="#f31350" />
  214. <meta name="color:hover" content="#000000"/>
  215. <meta name="color:title" content="#aaaaaa"/>
  216. <meta name="color:sparkles" content="#aaaaaa"/>
  217. <meta name="image:sidebar" content="" />
  218. <meta name="text:link one" content="" />
  219. <meta name="text:link one title" content="" />
  220. <meta name="text:link two" content="" />
  221. <meta name="text:link two title" content="" />
  222. <meta name="text:link three" content="" />
  223. <meta name="text:link three title" content="" />
  224. <meta name="text:link four" content="" />
  225. <meta name="text:link four title" content="" />
  226. <meta name="text:link five" content="" />
  227. <meta name="text:link five title" content="" />
  228. <meta name="text:blog title one" content="" />
  229. <meta name="text:blog title two" content="" />
  230. <meta name="image:background" content="" />
  231. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  232. <title>{Title}{block:SearchPage} - Search results for: {SearchQuery}{/block:SearchPage}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
  233. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  234. <link rel="shortcut icon" href="{Favicon}" />
  235. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  236.  
  237.  
  238. <style type="text/css">
  239.  
  240. body, a, a:hover {cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), progress;}
  241.  
  242. body {color:{color:text};background-color:{color:background};background-image: url('{image:background}');background-position: bottom right;background-attachment:fixed;background-repeat: no-repeat;
  243. font-size:11px;font-family:arial;line-height:13px;text-align:justify; letter-spacing: 0px; }
  244.  
  245.  
  246. a{color: {color:link}; text-decoration: none;}
  247.  
  248.  
  249. a:hover { font-style: none; color:{color:hover}; font-style:italic; -webkit-transition: all 1s ease-in-out; text-decoration: line-through;}
  250.  
  251. #content {margin-left:450px;margin-top:5px; width:500px}
  252.  
  253. #posts{overflow:hidden; background-color: {color:background}; border-left:0px solid; border-right:0px solid; padding:3px; width:505px;}
  254.  
  255. #title {font-size:20px; text-align:center; font-family:; line-height:110%}
  256.  
  257. #sidebarimg img {max-width:220px; margin-left:0px; margin-top:0px;
  258. height: auto; text-align:center;border:1px {color:border};}
  259.  
  260. div#sidebar{ position:fixed !important;width: 220px; height: auto; margin-left:180px;margin-top: 140px; background: transparent; text-align: center; border:3px double #cccccc; padding:5px;}
  261.  
  262. #description {text-align:center;margin-top:4px;line-height:12px;}
  263.  
  264. #titleuno {text-align:center;margin-top:4px;line-height:18px; font-family:miniver; font-size: 25px; text-shadow: 1px 1px 2px #dddddd; color:{color:title};}
  265.  
  266. #titledos {text-align:center;margin-top:5px; margin-bottom:5px;line-height:10px; font-size:15px; letter-spacing:3px;}
  267.  
  268. #linkz{text-align:center;margin-top:5px; margin-bottom:3px;font-size:11px; letter-spacing:1px;}
  269.  
  270. #linkz a{
  271. padding-left:0px; padding-right:0px;
  272. }
  273.  
  274. #lol {
  275. text-align:center;
  276. bottom:3px;
  277. right: 3px;
  278. position:fixed;
  279. opacity:1.0;
  280. }
  281.  
  282.  
  283.  
  284. ::-webkit-scrollbar {width: 8px; height: 6px; background: transparent; }
  285.  
  286. ::-webkit-scrollbar-thumb { background-color: {color:link}; border-radius:5px; -webkit-border-radius: 5px; border: 1px #ffffff solid; !important;}
  287.  
  288.  
  289. .user_1 .label {color:{color:link}; font-weight:bold}
  290. .user_2 .label {color:{color:text}; font-weight:bold}
  291. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px;
  292. border-lleft:#r4mf4g 3px solid;}
  293.  
  294. i, em {color: {color:Link};}
  295. b, strong {color: {color:text};}
  296.  
  297. ::selection {
  298. color:{color:Text};
  299. background-color: {color:Link};
  300. }
  301.  
  302. ::-moz-selection {
  303. color:{color:Text};
  304. background-color: {color:Link};
  305. }
  306.  
  307. ::-webkit-selection {
  308. color:{color:Text};
  309. background-color:{color:Link};
  310. }
  311.  
  312. blockquote {border-left:2px {color:Link} solid; padding-left:5px; margin:1px 6px 1px 10px}
  313.  
  314. p{margin-top:5px; margin-bottom:5px; }
  315.  
  316. blockquote {padding:0px; text-align:left; padding-left:5px; margin:5px; background-color:transparent; border-left:3px solid {color:Link};}
  317.  
  318.  
  319. ol.notes img {
  320. width: 16px;
  321. position: relative;
  322. display: inline;
  323. top: 3px;
  324. }
  325.  
  326. .photoset, .photoset_row, div.photoset_photo, .photoset img, .html_photoset {
  327.  
  328. margin: 0 auto;
  329. }
  330.  
  331. .text {
  332. padding: 5px;
  333. }
  334.  
  335. ol.notes {
  336. padding: 0 10px;
  337. }
  338.  
  339. .perma
  340. {
  341. opacity: 0.0;
  342. filter: alpha(opacity = 0);
  343. margin-top: -21px;
  344. width: px;
  345. height: 30px;
  346. line-height: 30px;
  347. font-size: 9px;
  348. position:absolute;
  349. text-align: center;
  350. z-index:9999991;
  351. color: {color:permalink};
  352.  
  353. }
  354. a.p
  355. {
  356.  
  357. color: {color:permalink};
  358. }
  359. .entry:hover .perma {
  360.  
  361. -webkit-transition: opacity 0.4s linear;
  362. opacity: 0.8;
  363. -moz-transition: all 0.4s linear;
  364. transition: all 0.4s linear;
  365. filter: alpha(opacity = 100);
  366.  
  367. }
  368.  
  369. .likep {
  370. width: 21px;
  371. height: 20px;
  372. overflow: hidden;
  373. position: relative;
  374. z-index: 9999999;
  375. position: absolute;
  376. margin-top: 26px;
  377. margin-left: 5px;
  378. }
  379. .rep {
  380. width: 24px;
  381. height: 20px;
  382. overflow: hidden;
  383. position: relative;
  384. z-index: 9999999;
  385. position: absolute;
  386. margin-top: 26px;
  387. margin-left: 29px;
  388. }
  389. .likep a:hover {
  390. background-position: 0px 0px;
  391. opacity:1.0;
  392. }
  393. .likep a {
  394. background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
  395. background-position: 0px 0px;
  396. display: block;
  397. z-index: 9999999;
  398. webkit-transition: all 0s linear;
  399. -webkit-transition: all 0s linear;
  400. -moz-transition: all 0s linear;
  401. transition: all 0s linear;
  402. }
  403. .likep img {
  404. width: 21px;
  405. height: 20px;
  406. webkit-transition: all 0.2s linear;
  407. -webkit-transition: all 0.2s linear;
  408. -moz-transition: all 0.2s linear;
  409. transition: all 0.2s linear;
  410. }
  411. .rep img{
  412. width: 24px;
  413. height: 20px;
  414. line-height: 30px;
  415. display: inline;
  416. }
  417.  
  418. .not { position: absolute;
  419. background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png");
  420. height: 20px;
  421. font-size: 11px;
  422. line-height: 20px;
  423. color: #fff;
  424. position: absolute;
  425. margin-top: 26px;
  426. margin-left: 56px;
  427. padding-left: 4px;
  428. padding-right: 4px;
  429. -moz-border-radius: 2px;
  430. border-radius: 2px;
  431. }
  432. .not a{
  433. color: #fff;
  434. font-family: sans-serif;
  435. font-weight: bold;
  436. }
  437.  
  438. p {
  439. margin:0px;
  440. margin-top:0px;
  441. }
  442.  
  443. .permalink{
  444. text-transform: normal;
  445. display: block;
  446. text-align: right;
  447. font-size:10px;
  448. text-decoration: none;
  449. border-lleft: #r4mf4g 3px solid;
  450. }
  451.  
  452.  
  453. </style>
  454. <style type="text/css">{CustomCSS}</style>
  455.  
  456. </head>
  457.  
  458. <body>
  459. <div id="sidebar">
  460. <div id="lol"><a href="http://cyrusnigga.tumblr.com">theme credit</a></div>
  461. <div id="sidebarimg"><img src="{image:sidebar}"></div><div id="linkz">
  462. <center>{block:IfLinkonetitle}<a href="{text:link one}">{text:link one title}</a>{/block:IfLinkonetitle}
  463.  
  464. {block:IfLinktwotitle} / <a href="{text:link two}">{text:link two title}</a> {/block:IfLinktwotitle}
  465.  
  466. {block:IfLinkthreetitle} / <a href="{text:link three}">{text:link three title}</a>{/block:IfLinkthreetitle}
  467.  
  468. {block:IfLinkfourtitle} / <a href="{text:link four}">{text:link four title}</a>{/block:IfLinkfourtitle}
  469.  
  470. {block:IfLinkfivetitle} / <a href="{text:link five}">{text:link five title}</a>{/block:IfLinkfivetitle}</div>
  471.  
  472. <div id="description">{Description}
  473.  
  474. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  475.  
  476. </div>
  477.  
  478.  
  479. </div>
  480. </div>
  481.  
  482. <div id="content">
  483.  
  484.  
  485.  
  486.  
  487. {block:Posts}
  488.  
  489.  
  490.  
  491. <div class="entry">
  492. {block:IndexPage}
  493. {/block:IndexPage}
  494. {block:Text}
  495.  
  496. <div class="text">
  497. {block:Title}
  498. <h3><a href="{Permalink}">{Title}</a></h3>
  499. {/block:Title}
  500. {Body}
  501. </div>
  502.  
  503. <div class="permalink"><a href="{Permalink}">+{notecount}</a></div>
  504.  
  505.  
  506. <br>
  507. {/block:Text}
  508.  
  509. {block:Photo}
  510. <div class="perma">
  511. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  512. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  513.  
  514.  
  515.  
  516. </div>
  517.  
  518. {block:IndexPage}
  519. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500px"/>{LinkCloseTag}
  520. {/block:IndexPage}
  521. {block:permalinkpage}{LinkOpenTag}
  522. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500px"/>{LinkCloseTag}
  523. {/block:permalinkpage}
  524.  
  525. {/block:Photo}
  526.  
  527. {block:Photoset}
  528.  
  529. <div class="perma">
  530. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  531. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  532.  
  533.  
  534.  
  535. </div>
  536. {block:IndexPage}
  537. {Photoset-500}
  538. {/block:IndexPage}
  539. {block:permalinkpage}
  540. {Photoset-500}
  541. {/block:permalinkpage}
  542. {/block:Photoset}
  543.  
  544. {block:Quote}
  545.  
  546. <div class="perma">
  547. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  548. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  549.  
  550.  
  551.  
  552. </div>
  553.  
  554.  
  555. <div class="text">
  556. "{Quote}"
  557. {block:Source}
  558. <div class="source">{Source}</div>
  559. {/block:Source}
  560. </div>
  561. {/block:Quote}
  562.  
  563. {block:Link}
  564.  
  565. <div class="perma">
  566. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  567. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  568.  
  569.  
  570.  
  571. </div>
  572.  
  573.  
  574. <div class="text">
  575. <a href="{URL}" class="link" {Target}>{Name}</a>
  576. {block:Description}
  577. <div class="description">{Description}</div>
  578. {/block:Description}
  579. </div>
  580.  
  581. {/block:Link}
  582.  
  583. {block:Chat}
  584.  
  585. <div class="perma">
  586. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  587. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  588.  
  589.  
  590.  
  591. </div>
  592.  
  593.  
  594.  
  595. <div class="text">
  596. {block:Title}
  597. <h3><a href="{Permalink}">{Title}</a></h3>
  598. {/block:Title}
  599. <ul class="chat">
  600. {block:Lines}
  601. <li class="{Alt} user_{UserNumber}"> {block:Label} <span class="label">{Label}</span> {/block:Label}
  602.  
  603. {Line} </li>
  604. {/block:Lines}
  605. </ul>
  606. </div>
  607. {/block:Chat}
  608.  
  609.  
  610. {block:Video}
  611.  
  612. {block:IndexPage}
  613. {Video-500}
  614. {/block:IndexPage}
  615. {block:permalinkpage}
  616. {Video-500}
  617. {/block:permalinkpage}
  618. {/block:Video}
  619.  
  620.  
  621.  
  622. {block:Answer}
  623.  
  624. <div style="border-radius:0px; border: 0x solid #E6DFDF; margin: 3px; min-height:30px; padding: 3px; background-color: transparent;font-family: {text:font}; box-shadow: 0px 0px 0px #cccccc;">
  625. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px; box-shadow: 0px 0px 0px 0px #E6DFDF; border-radius: 0px;"/>
  626. <b><askk>{Asker}</askk></b>: {Question}<br></div>
  627.  
  628. <div style="font-family: {text:font}; margin-left:2px;">{Answer}
  629. </div>
  630.  
  631.  
  632. <div class="permalink"><a href="{Permalink}">+{notecount}</a></div>
  633.  
  634.  
  635. <br>
  636. {/block:Answer}
  637.  
  638.  
  639. {block:Audio}
  640.  
  641. <div class="perma">
  642. <div class="likep"><a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');"><img src="http://static.tumblr.com/lba83dv/OUUltd958/spacer.gif" width="21" height="20" alt="Like this post" id="likeimage{PostID}"/></a></div> <div class="rep"><a href="{reblogurl}" target="_blank"><img src="http://static.tumblr.com/uiqhh9x/OAClzwwao/reblog.png" width="30"/></a></div>
  643. <div class="not"><a id="notes{PostID}" href="{Permalink}">{notecount}</a></div>
  644.  
  645.  
  646.  
  647. </div>
  648.  
  649.  
  650. {AudioPlayerBlack}
  651. <div class="text">
  652. {block:Caption}
  653. {Caption}
  654. {/block:Caption}
  655. </div>
  656. {/block:Audio}
  657. {block:PermalinkPage}
  658. <center>{block:Date}{ShortMonth} {DayofMonth}{DayofMonthSuffix} {Year}{/block:Date}{block:NoteCount} - {NoteCountWithLabel}{/block:NoteCount}{block:HasTags} - Tags: {block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}{/block:HasTags}</center>
  659. {/block:PermalinkPage}
  660. {block:PostNotes}{PostNotes}{/block:PostNotes}
  661. </div>
  662. {/block:Posts}
  663. </div>
  664. </div>
  665.  
  666. {block:ifendlessscroll}
  667. {block:Pagination}
  668. <ul id="pagination">
  669. {block:PreviousPage}
  670. <li><a href="{PreviousPage}"</a></li>
  671. {/block:PreviousPage}
  672. {block:JumpPagination length="5"}
  673. {block:CurrentPage}
  674. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  675. {/block:CurrentPage}
  676. {block:JumpPage}
  677. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  678. {/block:JumpPage}
  679. {/block:JumpPagination}
  680. {block:NextPage}
  681. <li><a id="nextPage" href="{NextPage}"></a></li>
  682. {/block:NextPage}
  683. </ul>
  684. {/block:Pagination}
  685. {block:IndexPage}
  686. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  687. <script type="text/javascript">
  688. $(window).load(function () {
  689. var $content = $('#content');
  690. $content.infinitescroll({
  691. navSelector : '#pagination',
  692. nextSelector : '#pagination a#nextPage',
  693. itemSelector : '.entry',
  694. loading: {
  695. finishedMsg: '',
  696. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  697. },
  698. bufferPx : 200,
  699. debug : false,
  700. });
  701. });
  702. </script>
  703. {/block:IndexPage}{/block:ifendlessscroll}
  704.  
  705. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/UYAm6i0bc/like.js"></script>
  706. <iframe id="likeiframe" style="width: 0px; height: 0px;"></iframe>
  707.  
  708. </body>
  709.  
  710.  
  711.  
  712. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement