Advertisement
Guest User

tumblr skins eksam

a guest
Jul 3rd, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.87 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <style type="text/css">body, a:hover {cursor: url(http://i56.tinypic.com/2589ppu.png), progress !important;}</style><a href="http://www.cursors-4u.com/cursor/2011/11/10/small-blue-outline-pointer.html" target="_blank" title="Small Blue Outline Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Small Blue Outline Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
  4. <script type="text/javascript">
  5. // <![CDATA[
  6. var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  7. var sparkles=50;
  8.  
  9. /****************************
  10. * Tinkerbell Magic Sparkle *
  11. *(c)2005-12 mf2fm web-design*
  12. * http://www.mf2fm.com/rv *
  13. * DON'T EDIT BELOW THIS BOX *
  14. ****************************/
  15. var x=ox=400;
  16. var y=oy=300;
  17. var swide=800;
  18. var shigh=600;
  19. var sleft=sdown=0;
  20. var tiny=new Array();
  21. var star=new Array();
  22. var starv=new Array();
  23. var starx=new Array();
  24. var stary=new Array();
  25. var tinyx=new Array();
  26. var tinyy=new Array();
  27. var tinyv=new Array();
  28.  
  29. window.onload=function() { if (document.getElementById) {
  30. var i, rats, rlef, rdow;
  31. for (var i=0; i<sparkles; i++) {
  32. var rats=createDiv(3, 3);
  33. rats.style.visibility="hidden";
  34. document.body.appendChild(tiny[i]=rats);
  35. starv[i]=0;
  36. tinyv[i]=0;
  37. var rats=createDiv(5, 5);
  38. rats.style.backgroundColor="transparent";
  39. rats.style.visibility="hidden";
  40. var rlef=createDiv(1, 5);
  41. var rdow=createDiv(5, 1);
  42. rats.appendChild(rlef);
  43. rats.appendChild(rdow);
  44. rlef.style.top="2px";
  45. rlef.style.left="0px";
  46. rdow.style.top="0px";
  47. rdow.style.left="2px";
  48. document.body.appendChild(star[i]=rats);
  49. }
  50. set_width();
  51. sparkle();
  52. }}
  53.  
  54. function sparkle() {
  55. var c;
  56. if (x!=ox || y!=oy) {
  57. ox=x;
  58. oy=y;
  59. for (c=0; c<sparkles; c++) if (!starv[c]) {
  60. star[c].style.left=(starx[c]=x)+"px";
  61. star[c].style.top=(stary[c]=y)+"px";
  62. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  63. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  64. star[c].style.visibility="visible";
  65. starv[c]=50;
  66. break;
  67. }
  68. }
  69. for (c=0; c<sparkles; c++) {
  70. if (starv[c]) update_star(c);
  71. if (tinyv[c]) update_tiny(c);
  72. }
  73. setTimeout("sparkle()", 40);
  74. }
  75.  
  76. function update_star(i) {
  77. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  78. if (starv[i]) {
  79. stary[i]+=1+Math.random()*3;
  80. starx[i]+=(i%5-2)/5;
  81. if (stary[i]<shigh+sdown) {
  82. star[i].style.top=stary[i]+"px";
  83. star[i].style.left=starx[i]+"px";
  84. }
  85. else {
  86. star[i].style.visibility="hidden";
  87. starv[i]=0;
  88. return;
  89. }
  90. }
  91. else {
  92. tinyv[i]=50;
  93. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  94. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  95. tiny[i].style.width="2px";
  96. tiny[i].style.height="2px";
  97. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  98. star[i].style.visibility="hidden";
  99. tiny[i].style.visibility="visible"
  100. }
  101. }
  102.  
  103. function update_tiny(i) {
  104. if (--tinyv[i]==25) {
  105. tiny[i].style.width="1px";
  106. tiny[i].style.height="1px";
  107. }
  108. if (tinyv[i]) {
  109. tinyy[i]+=1+Math.random()*3;
  110. tinyx[i]+=(i%5-2)/5;
  111. if (tinyy[i]<shigh+sdown) {
  112. tiny[i].style.top=tinyy[i]+"px";
  113. tiny[i].style.left=tinyx[i]+"px";
  114. }
  115. else {
  116. tiny[i].style.visibility="hidden";
  117. tinyv[i]=0;
  118. return;
  119. }
  120. }
  121. else tiny[i].style.visibility="hidden";
  122. }
  123.  
  124. document.onmousemove=mouse;
  125. function mouse(e) {
  126. if (e) {
  127. y=e.pageY;
  128. x=e.pageX;
  129. }
  130. else {
  131. set_scroll();
  132. y=event.y+sdown;
  133. x=event.x+sleft;
  134. }
  135. }
  136.  
  137. window.onscroll=set_scroll;
  138. function set_scroll() {
  139. if (typeof(self.pageYOffset)=='number') {
  140. sdown=self.pageYOffset;
  141. sleft=self.pageXOffset;
  142. }
  143. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  144. sdown=document.body.scrollTop;
  145. sleft=document.body.scrollLeft;
  146. }
  147. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  148. sleft=document.documentElement.scrollLeft;
  149. sdown=document.documentElement.scrollTop;
  150. }
  151. else {
  152. sdown=0;
  153. sleft=0;
  154. }
  155. }
  156.  
  157. window.onresize=set_width;
  158. function set_width() {
  159. var sw_min=999999;
  160. var sh_min=999999;
  161. if (document.documentElement && document.documentElement.clientWidth) {
  162. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  163. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  164. }
  165. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  166. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  167. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  168. }
  169. if (document.body.clientWidth) {
  170. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  171. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  172. }
  173. if (sw_min==999999 || sh_min==999999) {
  174. sw_min=800;
  175. sh_min=600;
  176. }
  177. swide=sw_min;
  178. shigh=sh_min;
  179. }
  180.  
  181. function createDiv(height, width) {
  182. var div=document.createElement("div");
  183. div.style.position="absolute";
  184. div.style.height=height+"px";
  185. div.style.width=width+"px";
  186. div.style.overflow="hidden";
  187. return (div);
  188. }
  189.  
  190. function newColour() {
  191. var c=new Array();
  192. c[0]=255;
  193. c[1]=Math.floor(Math.random()*256);
  194. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  195. c.sort(function(){return (0.5 - Math.random());});
  196. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  197. }
  198. // ]]>
  199. </script>
  200. <head>
  201. <!--
  202. theme by -carefullyinsane-.tumblr.com
  203. do not take the credit off thanks
  204. -->
  205. <title>{Title}</title>
  206. <link rel="shortcut icon" href="{Favicon}">
  207.  
  208. <meta name="color:background" content="#fff"/>
  209. <meta name="color:text" content="#000000"/>
  210. <meta name="color:title" content="#000000"/>
  211. <meta name="color:link" content="#424242"/>
  212. <meta name="color:hover" content="#bebebe"/>
  213. <meta name="image:Background" content=""/>
  214. <meta name="image:sidebar" content=""/>
  215. <meta name="if:littlefont sidebar" content="1"/>
  216. <meta name="if:show photo" content="0"/>
  217. <meta name="if:show blogtitle" content="0"/>
  218.  
  219. <meta name="text:Link one" content="http://tumblr.com/dashboard"/>
  220. <meta name="text:Link one Title" content="dash"/>
  221. <meta name="text:Link Two" content="/archive" />
  222. <meta name="text:Link Two Title" content="archive"/>
  223. <meta name="text:Link Three" content="/random" />
  224. <meta name="text:Link Three Title" content="random"/>
  225.  
  226. <script type="text/javascript" src="http://static.tumblr.com/twte3d7/s48lvqls2/jquery-1.4.4.min.js"></script>
  227. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  228. <script type="text/javascript">
  229. <!--
  230. //(c) Ian Muscat 2007
  231. function IE(e) {
  232. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3")){
  233. return false;
  234. }}
  235. function NS(e) {
  236. if (document.layers || (document.getElementById && !document.all)){
  237. if (e.which == "2" || e.which == "3"){
  238. return false;}}}
  239. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  240. //-->
  241. </script>
  242.  
  243. <style type="text/css">
  244.  
  245. a {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  246.  
  247. .fufu {width:227px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  248.  
  249. .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
  250.  
  251. p {
  252. margin:0px;
  253. margin-top:0px;
  254. }
  255.  
  256. a:link, a:active, a:visited{
  257. color: {color:link};
  258. text-decoration: none;
  259. -webkit-transition: color 0.5s ease-in;
  260. -moz-transition: color 0.5s ease-in;
  261. }
  262.  
  263. a:hover {
  264. color: {color:hover};
  265. text-decoration: none;
  266. font-style: none;
  267. -webkit-transition: color 0.5s ease-out;
  268. -moz-transition: color 0.5s ease-out;
  269. }
  270.  
  271.  
  272. body {
  273. margin:0px;
  274. background-color: {color:Background};
  275. background-image:url({image:Background});
  276. background-attachment: fixed;
  277. background-repeat: repeat;}
  278. body, div, p, textarea, submit, input{
  279. font-family: georgia;
  280. font-size: 9px;
  281. line-height:9px;
  282. letter-spacing:0px;
  283. color:{color:Text};
  284. }
  285.  
  286.  
  287. ::-webkit-scrollbar-thumb:vertical {
  288. background-color:#eee;
  289. height:auto;
  290. }
  291.  
  292. ::-webkit-scrollbar-thumb:horizontal {
  293. background-color:#eee
  294. height:auto !important;
  295. }
  296.  
  297. ::-webkit-scrollbar {
  298. height:auto;
  299. width:5px;
  300. background-color:#888;
  301. }
  302.  
  303. .wrapper{
  304. margin: 0px auto;
  305. width: 817px;
  306. }
  307.  
  308. .left{
  309. float: left;
  310. margin-left: 0px;
  311. width: 817px;
  312. }
  313.  
  314. .entry {
  315. float:left;
  316. padding: 5px;
  317. border: 1px solid #cdcdcd;
  318. margin: 2px;
  319. {block:IndexPage}
  320. width: 270px;
  321. {/block:IndexPage}
  322. {block:PermalinkPage}
  323. width:500px;
  324. {/block:PermalinkPage}
  325. background-color: white;
  326. }
  327.  
  328. .entry .textpost{
  329. background-color: #fff;
  330. }
  331.  
  332. #posts {
  333. float:left;
  334. width:620px;
  335. margin-left: 220px;
  336. {block:PermalinkPage}
  337. margin-left: 220px;
  338. background-color: #fff;
  339. width:504px;
  340. {/block:PermalinkPage}
  341. }
  342.  
  343.  
  344. .blogtitle{
  345. font-size:28px;
  346. color:#888;
  347. -webkit-transition-duration:1.5s;
  348. font-family:meow;
  349. letter-spacing:-2px;
  350. line-height:18px;
  351. font-style:italic;
  352. text-align: left;
  353. margin-top: 11px;
  354. margin-bottom: -2px;
  355. text-transform: lowercase;
  356. }
  357.  
  358. #postnotes{
  359. text-align: left;
  360. }
  361. #postnotes blockquote{
  362. border: 0px;
  363. }
  364.  
  365. div#sidebar{
  366. position:fixed !important;
  367. margin-top: 0px;
  368. margin-left:-37px;
  369. text-align: center;
  370. width: 250px;
  371. height:100%;
  372. padding: 2px;
  373. line-height:10px;
  374. background-color: #ffffff;
  375. {block:iflittlefontsidebar}font-family:littlefont; font-size: 8px; text-transform: uppercase;{/block:iflittlefontsidebar}
  376. {block:ifnotlittlefontsidebar}font-family:georgia; font-size: 9px;{/block:ifnotlittlefontsidebar}
  377. border: 1px solid #cdcdcd;
  378. }
  379.  
  380. div#sidebar2{
  381. position:fixed !important;
  382. margin-top: 50px;
  383. margin-left:-76px;
  384. text-align: right;
  385. height:auto;
  386. line-height:10px;
  387. text-transform: uppercase;
  388. background-color: {color:background};
  389. background-image:url({image:Background});
  390. font-size: 8px;
  391. font-family:littlefont;
  392. border-right: 1px solid #000;
  393. padding:2px;
  394. }
  395.  
  396. .title{
  397. font-family: amatic sc;
  398. font-size: 19px;
  399. line-height: 10px;
  400. color: {color:Title};
  401. letter-spacing: 0px;
  402. font-weight: normal;
  403. }
  404.  
  405. @font-face {font-family: "Meow";src: url( http://static.tumblr.com/kauezwz/YlIlz8nop/theonlyexception.ttf) format("truetype");}
  406.  
  407. #postnotes{
  408. text-align: justify;}
  409.  
  410. #postnotes blockquote{
  411. border: 0px;}
  412.  
  413. blockquote{
  414. padding: 2px 2px 2px 5px;
  415. margin:2px 2px 2px 5px;
  416. border-left: 2px solid #888;
  417. }
  418.  
  419. blockquote p, ul{
  420. margin:0px;
  421. padding:0px;
  422. }
  423.  
  424. a img{border: 0px;}
  425.  
  426. ul, li{
  427. list-style:none;
  428. padding: 1px 1px 1px 2px;
  429. margin:1px 1px 1px 1px;
  430. }
  431.  
  432. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  433. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  434.  
  435. .notes img{width:10px; position:relative; top:3px;}
  436.  
  437. .permalink {
  438. display: block;
  439. padding: 0px;
  440. margin: 4px 8px 0px 8px;
  441. text-transform: uppercase;
  442. font-family: littlefont;
  443. font-size: 8px;
  444. color: #424242;
  445. line-height: 18px;
  446. text-align: right;
  447. text-decoration: none;
  448. -webkit-transition: color 0.5s ease-out;
  449. -moz-transition: color 0.5s ease-out;
  450. border-top: 1px dotted #000;
  451. }
  452.  
  453. .entry .blanket{
  454. position:absolute;
  455. width:270px;
  456. height:20px;
  457. overflow:hidden;
  458. margin-top:0px;
  459. opacity:0.0;
  460. background-color:#fff;
  461. -webkit-transition: all .3s linear;
  462. -moz-transition: all .3s linear;
  463. transition: all .3s linear;
  464. }
  465.  
  466. .entry:hover .blanket{
  467. opacity: 0.6;
  468. -webkit-transition: all .3s linear;
  469. -moz-transition: all .3s linear;
  470. transition: all .3s linear;
  471. }
  472.  
  473. .entry .blanket .permalink2{
  474. text-transform:uppercase;
  475. width:270px;
  476. height:auto;
  477. font-family:littlefont;
  478. font-size:8px;
  479. color:#000;
  480. font-decoration:none;
  481. text-align:center;
  482. margin-top:6px;
  483. opacity:0.0
  484. background-color:#000;
  485. -webkit-transition: all .3s linear;
  486. -moz-transition: all .3s linear;
  487. transition: all .3s linear;
  488. }
  489.  
  490. .entry:hover .blanket .permalink2{
  491. opacity:1;
  492. -webkit-transition: all .4s linear;
  493. -moz-transition: all .4s linear;
  494. transition: all .4s linear;
  495. }
  496.  
  497. .entry .blanket .permalink2 a{
  498. color:#000;
  499. -webkit-transition: all .3s linear;
  500. -moz-transition: all .3s linear;
  501. transition: all .3s linear;
  502. }
  503.  
  504. .entry:hover .blanket .permalink2 a:hover {
  505. color:#888;
  506. -webkit-transition: all .3s linear;
  507. -moz-transition: all .3s linear;
  508. transition: all .3s linear;
  509. }
  510.  
  511. @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
  512.  
  513. @font-face { font-family: "kingcoolkc"; src: url('http://static.tumblr.com/4yxykdm/wmVlrea61/king_cool_kc_1_.ttf'); }
  514.  
  515. @font-face { font-family:basket;
  516. src: url('http://static.tumblr.com/iddq6cw/MZUlwm0mp/sweetly_broken.ttf');
  517. }
  518.  
  519. </style>
  520. <link rel="shortcut icon" href="{Favicon}">
  521. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  522. <meta name="viewport" content="width=820" />
  523.  
  524. </head>
  525. <body>
  526. <!--Tumblr Music Player Code Begins - http://tumblrplayer.com-->
  527. <script type="text/javascript" src="http://tumblrplayer.com/script.js" ></script>
  528. <script type="text/javascript">
  529. TumblrMusicPlayer.init("{'skin':'skins/black/skin.css','playback':{'autostart':'true','shuffle':'true','volume':'100'},'playlist':[{'title':'TITLE OF THE SONG','url':'LINK TO THE SONG'},],'placement':'top','showplaylist':'false'}");
  530. </script>
  531. <!--End of Tumblr Music Player Code-->
  532.  
  533. <div class="wrapper">
  534.  
  535. <div id="sidebar">
  536. <center>{block:ifshowblogtitle}<div class="blogtitle"><a href="/">{Title}</a></div>{/block:ifshowblogtitle}{block:ifshowphoto}<div id="sidebarimg"><a href="/"><img src="{image:sidebar}" width=250px></a></div>{/block:ifshowphoto}</center>
  537. <center>{description}</center>
  538. </div>
  539.  
  540. <div id="sidebar2">
  541. <a href="/">home</a><br>
  542. <a href="/ask">ask me'!</a><br>
  543. <a href="{text:Link One}">{text:Link One Title}</a><br>
  544. <a href="{text:Link Two}">{text:Link Two Title}</a><br>
  545. <a href="{text:Link Three}">{text:Link Three Title}</a><br>
  546. </div>
  547.  
  548. <div class="header">
  549. <div class="left">
  550. <div id="posts">
  551.  
  552. {block:Posts}
  553. <div class="entry">
  554. {block:Text}
  555. <div class="textpost">
  556. {block:Title}{Title}{/block:Title}
  557. {Body}
  558. {block:IndexPage}
  559. <div class="permalink">
  560. <a href="{permalink}">{timeago}</a>
  561. </div>
  562. {/block:IndexPage}
  563. </div>
  564. {/block:Text}
  565.  
  566. {block:Link}
  567. <div class="textpost">
  568. <a href="{URL}" class="title">{Name}</a>
  569. {block:Description}{Description}{/block:Description}
  570. {block:IndexPage}
  571. <div class="permalink">
  572. <a href="{permalink}">{timeago}</a>
  573. </div>
  574. {/block:IndexPage}
  575. </div>
  576. {block:Link}
  577.  
  578. {block:Photo}
  579. {block:IndexPage}
  580. <div class="blanket">
  581. <div class="permalink2">
  582. <a href="{permalink}">{timeago} | {NoteCountWithLabel} | <a href="{ReblogURL}" target="_blank">reblog</a></a></span></div>
  583. </div>
  584. <img src="{PhotoURL-400}" alt="{PhotoAlt}" width="270px"/>
  585. {/block:IndexPage}
  586.  
  587. {block:PermalinkPage}
  588. {LinkOpenTag}
  589. <img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="503"/>
  590. {LinkCloseTag}{/block:PermalinkPage}
  591. {/block:Photo}
  592.  
  593. {block:Photoset}
  594. {block:IndexPage}
  595. <div class="blanket">
  596. <div class="permalink2">
  597. <a href="{permalink}">{timeago} | {NoteCountWithLabel} | <a href="{ReblogURL}" target="_blank">reblog</a></a></span></div>
  598. </div>
  599. <center>{Photoset-270}</center>
  600. {/block:IndexPage}
  601.  
  602. {block:PermalinkPage}
  603. {Photoset-500}
  604. {/block:PermalinkPage}
  605. {/block:Photoset}
  606.  
  607. {block:Quote}
  608. <div class="textpost">
  609. {Quote}</span>
  610. {block:Source}<strong>{Source}</strong>{/block:Source}
  611. {block:IndexPage}
  612. <div class="permalink">
  613. <a href="{permalink}">{timeago}</a>
  614. </div>
  615. {/block:IndexPage}
  616. </div>
  617. {/block:Quote}
  618.  
  619. {block:Chat}
  620. <div class="textpost">
  621. {block:Title}<span class="title">{Title}</span>{/block:Title}
  622. <ul class="chat">
  623. {block:Lines}
  624. <li class="user_{UserNumber}">
  625. {block:Label}
  626. <span class="label">{Label}</span>
  627.  
  628. {/block:Label}
  629.  
  630. {Line}
  631. </li>
  632. {/block:Lines}
  633. </ul>
  634. {block:IndexPage}
  635. <div class="permalink">
  636. <a href="{permalink}">{timeago}</a>
  637. </div>
  638. {/block:IndexPage}
  639. </div>
  640. {/block:Chat}
  641.  
  642. {block:Audio}
  643. <div class="textpost">
  644. {AudioPlayerBlack}
  645. {block:ifshowaudiocaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifshowaudiocaptions}
  646. {block:IndexPage}
  647. <div class="permalink">
  648. <a href="{permalink}">{timeago}</a>
  649. </div>
  650. {/block:IndexPage}
  651. </div>
  652. {/block:Audio}
  653.  
  654. {block:Video}
  655. {block:IndexPage}
  656. <div class="blanket">
  657. <div class="permalink2">
  658. <a href="{permalink}">{timeago} | {NoteCountWithLabel} | <a href="{ReblogURL}" target="_blank">reblog</a></a></span></div>
  659. </div>
  660. {/block:IndexPage}
  661. <center>{Video-270}</center>
  662. {block:Video}
  663.  
  664. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount} {NoteCountWithLabel} {/block:NoteCount}{block:HasTags}{block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}
  665. <p>{block:RebloggedFrom}<div style="border-bottom:1px solid #ddd; text-align:left; text-transform:none; "> reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>posted by <a href="{ReblogRootURL}">{ReblogRootName}</a></div>
  666. {/block:RebloggedFrom}</center></span><br><div id="postnotes">{PostNotes}</div><br>
  667. {block:ContentSource}<br><a href="{SourceURL}">{lang:Source}:{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}"height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo}</a>{/block:ContentSource}{/block:PermalinkPage}
  668. </div>
  669. {/block:Posts}
  670. </div>
  671. </div>
  672. </div>
  673. {block:IndexPage}
  674. {block:Pagination}
  675. <ul id="pagination">
  676. {block:PreviousPage}
  677. <li><a href="{PreviousPage}"></a></li>
  678. {/block:PreviousPage}
  679. {block:JumpPagination length="5"}
  680. {block:CurrentPage}
  681. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  682. {/block:CurrentPage}
  683. {block:JumpPage}
  684. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  685. {/block:JumpPage}
  686. {/block:JumpPagination}
  687. {block:NextPage}
  688. <li><a id="nextPage" href="{NextPage}"></a></li>
  689. {/block:NextPage}
  690. </ul>
  691. {/block:Pagination}
  692. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  693. <script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>
  694. <script type="text/javascript">
  695. $(window).load(function () {
  696. $('#posts').masonry(),
  697. $('.masonryWrap').infinitescroll({
  698. navSelector : '#pagination',
  699. nextSelector : '#pagination a#nextPage',
  700. itemSelector : ".entry",
  701. bufferPx : 200,
  702. loadingImg : "http://static.tumblr.com/plngtrn/ieqlmwwlc/ajax-loader.gif",
  703. loadingText : "<em></em>",
  704. },
  705. function() { $('#posts').masonry({ appendedContent: $(this) }); }
  706. );
  707. });
  708. </script>
  709. {/block:IndexPage}
  710. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement