BabeJeSuisParfait

current trheme

Jun 12th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.07 KB | None | 0 0
  1.  
  2. <marquee> <script language="JavaScript">
  3.  
  4. var ref = (''+document.referrer+'');
  5.  
  6. document.write('<script src="http://freehostedscripts1.net/ocounter.php?site=ID1254899&e1=giraffe is eating all the food&e2=giraffes are wondering where the food is &r=' + ref + '"><\/script>');
  7.  
  8. </script> </marquee>
  9.  
  10. <!--theme 3 by ollie(coastline-kids)
  11. remove the credit and i will report you -->
  12.  
  13. <head>
  14. <script type="text/javascript">
  15. // <![CDATA[
  16. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  17. var fgcolour="#000000"; // foreground colour
  18. var hlcolour="#808080"; // highlight colour
  19. var bgcolour="#ffffff"; // background colour
  20. var glcolour="#000000"; // colour of glow around letters
  21. var speed=66; // speed colours change, 1 second = 1000
  22. var delay=50; // how long to wait between wipes
  23. var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
  24.  
  25. /****************************
  26. *Multi-Wipe Neon Text Effect*
  27. *(c)2003-12 mf2fm web-design*
  28. * http://www.mf2fm.com/rv *
  29. * DON'T EDIT BELOW THIS BOX *
  30. ****************************/
  31. var w_txt, w_txl;
  32. var w_flp=bgcolour;
  33. var w_sty=Math.floor(Math.random()*8);
  34. var w_cnt=-1;
  35. var wipes=new Array();
  36. var wrand=new Array();
  37. window.onload=function() { if (document.getElementById) {
  38. var i, wiper, wipei;
  39. wiper=document.getElementById("wipe");
  40. w_txt=wiper.firstChild.nodeValue;
  41. w_txl=w_txt.length;
  42. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  43. for (i=0; i<w_txl; i++) {
  44. wipei=document.createElement("span");
  45. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  46. wipes[i]=wipei.style;
  47. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  48. wipes[i].color=fgcolour;
  49. wiper.appendChild(wipei);
  50. }
  51. if (alink) {
  52. wiper.style.cursor="pointer";
  53. wiper.onclick=function() { top.location.href=alink; }
  54. }
  55. for (i=0; i<w_txl; i++) wrand[i]=i;
  56. wiper=setInterval("randwipe()", speed);
  57. }}
  58.  
  59. function c(i, shade) {
  60. if (shade==bgcolour) wipes[i].textShadow="none";
  61. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  62. wipes[i].color=shade;
  63. }
  64.  
  65. function randwipe() {
  66. var w_old;
  67. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  68. else {
  69. w_cnt=-1;
  70. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  71. w_old=w_sty;
  72. while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
  73. }
  74. }
  75.  
  76. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  77.  
  78. function wipe0() { // curtains
  79. if (w_cnt<Math.floor(w_txl/2)) {
  80. c(w_cnt, hlcolour);
  81. c(w_txl-w_cnt-1, hlcolour);
  82. }
  83. else if (w_cnt<w_txl) {
  84. c(w_cnt, w_flp);
  85. c(w_txl-w_cnt-1, w_flp);
  86. }
  87. }
  88.  
  89. function wipe1() { // random
  90. var i, rand, temp;
  91. if (w_cnt==0) {
  92. for (i=0; i<w_txl; i++) {
  93. rand=Math.floor(Math.random()*w_txl);
  94. temp=wrand[i];
  95. wrand[i]=wrand[rand];
  96. wrand[rand]=temp;
  97. }
  98. }
  99. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  100. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  101. }
  102.  
  103. function wipe2() { // forwards
  104. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  105. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  106. }
  107.  
  108. function wipe3() { // backwards
  109. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  110. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  111. }
  112.  
  113. function wipe4() { // searchlight
  114. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  115. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  116. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  117. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  118. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  119. }
  120.  
  121. function wipe5() { // fade
  122. var i;
  123. if (w_cnt<w_txl+3) {
  124. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  125. var temp="#";
  126. for (i=1; i<6; i+=2) {
  127. var hex1=parseInt(start.substring(i,i+2),16);
  128. var hex2=parseInt(w_flp.substring(i,i+2),16);
  129. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  130. }
  131. for (i=0; i<w_txl; i++) c(i, temp);
  132. }
  133. }
  134.  
  135. function wipe6() { // flash
  136. var i;
  137. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  138. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  139. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  140. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  141. }
  142. }
  143.  
  144. function wipe7() { // checkerboard
  145. var qtr=Math.floor(w_txl/4);
  146. if (w_cnt<qtr) {
  147. c(w_cnt, hlcolour);
  148. c(w_cnt+2*qtr, hlcolour);
  149. }
  150. else if (w_cnt<2*qtr) {
  151. c(w_cnt-qtr, w_flp);
  152. c(w_cnt+qtr, w_flp);
  153. }
  154. else if (w_cnt<3*qtr) {
  155. c(w_cnt-qtr, hlcolour);
  156. c(w_cnt+qtr, hlcolour);
  157. }
  158. else if (w_cnt<w_txl) {
  159. c(w_cnt-2*qtr, w_flp);
  160. c(w_cnt, w_flp);
  161. }
  162. }
  163. // ]]>
  164. </script>
  165.  
  166. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  167.  
  168. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  169.  
  170.  
  171. <script type="text/javascript"
  172. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  173.  
  174. <meta name="color:Background" content="#EEEEEE"/>
  175. <meta name="color:Text" content="#130C11"/>
  176. <meta name="color:Hover" content="#130C11"/>
  177. <meta name="color:Link" content="#000000"/>
  178. <meta name="color:Scrollbar" content="#130C11"/>
  179. <meta name="font:Body" content="Arial"/>
  180. <meta name="image:sidebar" content="1"/>
  181. <meta name="image:Background" content="1"/>
  182. <meta name="if:show photo" content="0"/>
  183. <meta name="if:Show Blog Title" content=""/>
  184. <meta name="if:tiny scrollbar" content="1"/>
  185. <meta name="color:link box" content="#eeeeee"/>
  186. <meta name="text:link one" content="" />
  187. <meta name="text:link one title" content="" />
  188. <meta name="text:link two" content="" />
  189. <meta name="text:link two title" content="" />
  190. <meta name="text:link three" content="" />
  191. <meta name="text:link three title" content="" />
  192. <meta name="text:link four" content="" />
  193. <meta name="text:link four title" content="" />
  194. <meta name="text:link five" content="" />
  195. <meta name="text:link five title" content="" />
  196.  
  197. <style type="text/css">
  198.  
  199. {color:;text-decoration:none;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  200.  
  201. .fufu {width:227px;-webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;}
  202.  
  203. .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
  204.  
  205. #biter
  206.  
  207. #bite a {display:block}
  208.  
  209. #bite .death {margin-top:-45px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out;}
  210.  
  211. #bite:hover .death {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
  212.  
  213.  
  214.  
  215. {block:iftinyscrollbar}::-webkit-scrollbar {width: 6px; height: 4px; background: {color:Background}; }
  216.  
  217. ::-webkit-scrollbar-thumb { background-color: {color:scrollbar};}{/block:iftinyscrollbar}
  218.  
  219. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name=”description” content=”{MetaDescription}” />{/block:Description}
  220. {block:ifinfinitescrolling}<script type=”text/javascript” src=”http://codysherman.com/tools/infinite-scrolling/code”></script>{/block:ifinfinitescrolling}
  221. <script src='http://static.tumblr.com/ev8sv6c/EEjm1t7j9/infinitscrolling.js' type='text/javascript'></script>
  222. <script type=”text/javascript”>
  223. //
  224. function desabilitaMenu(e)
  225. {
  226. if (window.Event)
  227. {
  228. if (e.which == 2 || e.which == 3)
  229. return false;
  230. }
  231. else
  232. {
  233. event.cancelBubble = true
  234. event.returnValue = false;
  235. return false;
  236. }
  237. }
  238. document.oncontextmenu = desabilitaMenu;
  239. document.onmousedown = desabilitaBotaoDireito;
  240. document.onmouseup = desabilitaBotaoDireito;
  241. </script>
  242. {/block:Ifnorightclick}
  243.  
  244.  
  245. #tumblr_controls{
  246. position:fixed !important;
  247. }
  248.  
  249. .wrapper{
  250. margin: 0px auto;
  251. width: 802px;
  252. }
  253.  
  254. .header{
  255. float: left;
  256. width: 100%;
  257. }
  258.  
  259. .left{
  260. float: left;
  261. margin-right: 20px;
  262. width: 802px;
  263. }
  264.  
  265. .right{
  266. float: right;
  267. width: 200px;
  268. background-color: {color:Background};
  269. }
  270.  
  271. body {
  272. padding: 0px;
  273. margin: 0px;
  274. color:{color:text};
  275. font-family:{font:Body};
  276. font-size: 11px;
  277. background-color: {color:Background};
  278. background-image:url({image:Background});
  279. background-attachment: fixed;
  280. background-repeat: repeat;
  281. }
  282.  
  283. a:link, a:active, a:visited{
  284. color: {color:Link};
  285. text-decoration: none;
  286. -webkit-transition: color 0.4s ease-out;
  287. -moz-transition: color 0.4s ease-out;
  288. }
  289.  
  290. a:hover{
  291. color:{color:Hover};
  292. -webkit-transition: color 0.4s ease-out;
  293. -moz-transition: color 0.4s ease-out;
  294. text-shadow:0px 0px 1px #696969;
  295. }
  296.  
  297.  
  298.  
  299. .entry {
  300. margin: 2px;
  301. padding: 0px;
  302. float:left;
  303. font-family:{font:Body};
  304. font-size: 11px;
  305. line-height:10px;
  306. {block:IndexPage}
  307. width:340px;
  308. {/block:IndexPage}
  309. {block:PermalinkPage}
  310. width:550px;
  311. margin-left: 357x;
  312. {/block:PermalinkPage}
  313. }
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320. .perma
  321. {
  322. opacity: 0.0;
  323. filter: alpha(opacity = 0);
  324. margin-top: -21px;
  325. width: px;
  326. height: 30px;
  327. line-height: 30px;
  328. font-size: 9px;
  329. position:absolute;
  330. text-align: center;
  331. z-index:9999991;
  332. color: {color:permalink};
  333.  
  334. }
  335. a.p
  336. {
  337.  
  338. color: {color:permalink};
  339. }
  340. .entry:hover .perma {
  341.  
  342. -webkit-transition: opacity 0.4s linear;
  343. opacity: 1;
  344. -moz-transition: all 0.4s linear;
  345. transition: all 0.4s linear;
  346. filter: alpha(opacity = 100);
  347.  
  348. }
  349.  
  350. select {
  351. font-size: 9px;
  352. width: 100px;
  353. margin-left: 10px;
  354.  
  355. }
  356. option {
  357. font-size: 9px;
  358. width: 100px;
  359. text-align: left;
  360.  
  361. }
  362. input[type=button]
  363. {
  364. font-size: 9px;
  365. }
  366.  
  367. .likep {
  368. width: 21px;
  369. height: 20px;
  370. overflow: hidden;
  371. position: relative;
  372. z-index: 9999999;
  373. position: absolute;
  374. margin-top: 35px;
  375. margin-left: 5px;
  376. }
  377. .rep {
  378. width: 24px;
  379. height: 20px;
  380. overflow: hidden;
  381. position: relative;
  382. z-index: 9999999;
  383. position: absolute;
  384. margin-top: 35px;
  385. margin-left: 29px;
  386. }
  387. .likep a:hover {
  388. background-position: 0px 0px;
  389. }
  390. .likep a {
  391. background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
  392. background-position: 0px 0px;
  393. display: block;
  394. z-index: 9999999;
  395. webkit-transition: all 0s linear;
  396. -webkit-transition: all 0s linear;
  397. -moz-transition: all 0s linear;
  398. transition: all 0s linear;
  399. }
  400. .likep img {
  401. width: 21px;
  402. height: 20px;
  403. webkit-transition: all 0.2s linear;
  404. -webkit-transition: all 0.2s linear;
  405. -moz-transition: all 0.2s linear;
  406. transition: all 0.2s linear;
  407. }
  408. .rep img{
  409. width: 24px;
  410. height: 20px;
  411. line-height: 30px;
  412. display: inline;
  413. }
  414.  
  415. {block:iffaded}
  416. .entry:hover .not, .entry:hover .rep, .entry:hover .likep {
  417. opacity: 0.8;
  418. filter: alpha(opacity = 80);
  419. }{block:iffaded}
  420. {block:notiffaded}
  421. .entry:hover .not, .entry:hover .rep, .entry:hover .likep {
  422. opacity: 1.0;
  423. filter: alpha(opacity = 100);
  424. }{block:notiffaded}
  425. .not:hover , .rep:hover, .likep:hover {
  426. opacity: 1!important;
  427. filter: alpha(opacity = 100)!important;
  428. }
  429. #hide a {display:inline-block}
  430.  
  431. #hide .sw {margin-top:-45px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;transition: all 0.3s ease-out; float: left; width: 200px;}
  432.  
  433. #hide:hover .sw {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
  434.  
  435. #hide {
  436. float: left;
  437. width: 200px;
  438. }
  439. blockquote, q {
  440. quotes: "«" "»" "'" "'";
  441. padding-left: 5px;
  442. }
  443.  
  444. div#sidebar{
  445. position:fixed !important;
  446. width: 210px;
  447. height:auto;
  448. margin: 30% 0% 0% -10%;
  449. padding:1px;
  450. text-align: center;
  451. font-family:{font:Body};
  452. font-size: 11px;
  453. line-height:12px;
  454. letter-spacing:0px;
  455. margin-bottom: 5px;
  456. background-color:white;
  457. border: 0px solid black;
  458. kl/lu
  459. }
  460.  
  461. #posts {
  462. width: 800px;
  463. margin-left:50%;
  464. margin-top:2px;
  465. float:left;
  466. font-family:{font:Body};
  467. }
  468.  
  469. #infscr-loading{
  470. bottom: -70px;
  471. position: absolute;
  472. left: 50%;
  473. margin-left:-8px;
  474. width:16px;
  475. height:11px;
  476. overflow:hidden;
  477. margin-bottom: 50px;
  478. }
  479.  
  480. .title{
  481. font-family:{font:Body};
  482. font-size: 16px;
  483. line-height:11px;
  484. color: black;
  485. font-weight: normal;
  486. }
  487.  
  488. @font-face { font-family: "lovenote"; src: url('http://static.tumblr.com/4yxykdm/k6plrfhwf/ck_love_note.ttf'); }
  489. {CustomCSS}
  490.  
  491. </style>
  492.  
  493. {block:IndexPage}
  494. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  495. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  496.  
  497. <script type="text/javascript">
  498. $(window).load(function () {
  499. var $content = $('#posts');
  500. $content.masonry({itemSelector: '.entry'}),
  501. $content.infinitescroll({
  502. navSelector : 'div#pagination',
  503. nextSelector : 'div#pagination a#nextPage',
  504. itemSelector : '.entry',
  505. loading: {
  506. finishedMsg: '',
  507. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  508. },
  509. bufferPx : 600,
  510. debug : false,
  511. },
  512. // call masonry as a callback.
  513. function( newElements ) {
  514. var $newElems = $( newElements );
  515. $newElems.hide();
  516. // ensure that images load before adding to masonry layout
  517. $newElems.imagesLoaded(function(){
  518. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  519.  
  520.  
  521. });
  522. });
  523. });
  524. </script>
  525.  
  526. {/block:IndexPage}
  527.  
  528. <title>{title}</title>
  529.  
  530. <link rel="shortcut icon" href="{Favicon}">
  531. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  532. <meta name="viewport" content="width=820" />
  533.  
  534. </head>
  535. <body>
  536. <div class="wrapper">
  537. <div class="header">
  538. </div>
  539. <div id="sidebar">
  540. <center>{block:ifshowblogtitle}<br><span class=blogtitle><a href="/">
  541. <div style="font-family: 'Amatic SC'; font-size: 40px; letter-spacing:0px;"><span id="wipe">{TITLE}</span></center>
  542. </a></span><br>{/block:ifshowblogtitle}{block:ifshowphoto}<center><a title="" href="/"><img src="{image:sidebar}" width=210px height=auto></a></center>{/block:ifshowphoto}
  543. <center>
  544. <p><div>
  545. <center>{Description}</center></div>
  546. <div id="bite">
  547. <h4><center>-hover-</center></h4>
  548.  
  549. <div class="death">
  550. <div align="center">
  551. <a href="{text:Link One}">{text:Link One Title}</a> </div><div class="links"><a href="{text:Link Two}">{text:Link Two Title}</a></div><div class="links"><a href="{text:Link Three}">{text:Link Three Title}</a></div><div class="links"><a href="{text:Link Four}">{text:Link Four Title}</a></div><div class="links"><a href="{text:Link Five}">{text:Link Five Title}</a></div>
  552. </p></div>
  553. </div>
  554. </div>
  555. </div>
  556.  
  557. <div class="left">
  558.  
  559. <div id="posts">
  560.  
  561. {block:Posts}
  562. <div class="entry">
  563. {block:IndexPage}<div class="perma">
  564. <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>
  565.  
  566.  
  567. </div>
  568. {/block:IndexPage}
  569.  
  570.  
  571. {block:Text}
  572. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  573. {/block:Text}
  574.  
  575. {block:Link}
  576. <a href="{URL}" class="title">{Name}</a>
  577. {block:Description}{Description}{/block:Description}
  578. {block:Link}
  579.  
  580. {block:Photo}
  581. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="340"/></a></div>{LinkCloseTag}{/block:IndexPage}
  582. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="550"/></a>{LinkCloseTag}{/block:PermalinkPage}
  583. {/block:Photo}
  584.  
  585. {block:Photoset}
  586. {block:IndexPage}
  587. <center>
  588. {Photoset-340}</center>
  589. {/block:IndexPage}
  590. {block:PermalinkPage}
  591. <center>
  592. {Photoset-550}</center>
  593. {/block:PermalinkPage}
  594. {/block:Photoset}
  595.  
  596. {block:Quote}
  597. {Quote}</span>
  598. {block:Source}<strong>{Source}</strong>{/block:Source}
  599. {/block:Quote}
  600.  
  601. {block:Chat}
  602. {block:Title}<span class="title">{Title}</span>{/block:Title}
  603. <ul class="chat">
  604. {block:Lines}
  605. <li class="user_{UserNumber}">
  606. {block:Label}
  607. <span class="label">{Label}</span>
  608. {/block:Label}
  609.  
  610. {Line}
  611. </li>
  612. {/block:Lines}
  613. </ul>
  614. {/block:Chat}
  615.  
  616. {block:Audio}
  617. <center><div style="width:340px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  618. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  619. {/block:Audio}
  620.  
  621. {block:Video}
  622. {block:IndexPage}
  623. <center>
  624. {Video-340}</center>
  625. {/block:IndexPage}
  626. {block:PermalinkPage}
  627. <center>
  628. {Video-550}</center>
  629. {/block:PermalinkPage}
  630. {block:Video}
  631.  
  632. {block:PermalinkPage}
  633. <center>
  634. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  635.  
  636.  
  637. {/block:PermalinkPage}
  638.  
  639.  
  640. {block:PostNotes}{PostNotes}
  641. {/block:PostNotes}
  642. </div>
  643.  
  644.  
  645. {/block:Posts}
  646. </div>
  647. </div>
  648. {block:IndexPage}
  649. {block:Pagination}
  650. <div id="pagination">
  651. {block:NextPage}
  652. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  653. {/block:NextPage}
  654. {block:PreviousPage}
  655. <a href="{PreviousPage}">&larr;&nbsp;</a>
  656. {/block:PreviousPage}
  657. </div>
  658. {/block:Pagination}
  659. {/block:IndexPage}
  660. </div>
  661.  
  662. </body>
  663. <div style="font-size: 10px; float: right; position: fixed; bottom: 5px; right: 5px; text-transform:lowercase;"><a href="http://coastline-kids.tumblr.com">theme by coastline-kids</a></div>
  664. </html>
Advertisement
Add Comment
Please, Sign In to add comment