Advertisement
mikit20

Sailor Moon

May 21st, 2014
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.85 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <!-----------------------------------------------------------------
  4. _____ _ _
  5. |_ _| _ _ __ ___ | |__ | |_ __
  6. | || | | | '_ ` _ \| '_ \| | '__|
  7. | || |_| | | | | | | |_) | | |
  8. |_| \__,_|_| |_| |_|_.__/|_|_|
  9. ____ _
  10. / ___| ___ _ __ ___ _ __ __ _| |_ ___ _ __
  11. | | _ / _ \ '_ \ / _ \ '__/ _` | __/ _ \| '__|
  12. | |_| | __/ | | | __/ | | (_| | || (_) | |
  13. \____|\___|_| |_|\___|_| \__,_|\__\___/|_|
  14.  
  15. ___ ___ _ __ ___
  16. / __/ _ \| '_ ` _ \
  17. | (_| (_) | | | | | |
  18. (_)___\___/|_| |_| |_|
  19.  
  20. // Generate your own theme at
  21. http://tumblrgenerator.com
  22.  
  23. // A "tit" theme project
  24. http://tit.tumblr.com
  25.  
  26. // Comments & Suggestions are apprecaited
  27.  
  28. ------------------------------------------------------------------>
  29. <html xmlns="http://www.w3.org/1999/xhtml">
  30. <head>
  31.  
  32. <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/94b5ee676b479892bada68e8fcac82b3/tumblr_inline_mqq5s4BAzr1qz4rgp.png), progress;}</style>
  33.  
  34.  
  35.  
  36.  
  37. <script type="text/javascript">
  38. // <![CDATA[
  39. var colour="pink"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  40. var sparkles=50;
  41.  
  42. /****************************
  43. * Tinkerbell Magic Sparkle *
  44. *(c)2005-13 mf2fm web-design*
  45. * http://www.mf2fm.com/rv *
  46. * DON'T EDIT BELOW THIS BOX *
  47. ****************************/
  48. var x=ox=400;
  49. var y=oy=300;
  50. var swide=800;
  51. var shigh=600;
  52. var sleft=sdown=0;
  53. var tiny=new Array();
  54. var star=new Array();
  55. var starv=new Array();
  56. var starx=new Array();
  57. var stary=new Array();
  58. var tinyx=new Array();
  59. var tinyy=new Array();
  60. var tinyv=new Array();
  61.  
  62. window.onload=function() { if (document.getElementById) {
  63. var i, rats, rlef, rdow;
  64. for (var i=0; i<sparkles; i++) {
  65. var rats=createDiv(3, 3);
  66. rats.style.visibility="hidden";
  67. rats.style.zIndex="999";
  68. document.body.appendChild(tiny[i]=rats);
  69. starv[i]=0;
  70. tinyv[i]=0;
  71. var rats=createDiv(5, 5);
  72. rats.style.backgroundColor="transparent";
  73. rats.style.visibility="hidden";
  74. rats.style.zIndex="999";
  75. var rlef=createDiv(1, 5);
  76. var rdow=createDiv(5, 1);
  77. rats.appendChild(rlef);
  78. rats.appendChild(rdow);
  79. rlef.style.top="2px";
  80. rlef.style.left="0px";
  81. rdow.style.top="0px";
  82. rdow.style.left="2px";
  83. document.body.appendChild(star[i]=rats);
  84. }
  85. set_width();
  86. sparkle();
  87. }}
  88.  
  89. function sparkle() {
  90. var c;
  91. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  92. ox=x;
  93. oy=y;
  94. for (c=0; c<sparkles; c++) if (!starv[c]) {
  95. star[c].style.left=(starx[c]=x)+"px";
  96. star[c].style.top=(stary[c]=y+1)+"px";
  97. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  98. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  99. star[c].style.visibility="visible";
  100. starv[c]=50;
  101. break;
  102. }
  103. }
  104. for (c=0; c<sparkles; c++) {
  105. if (starv[c]) update_star(c);
  106. if (tinyv[c]) update_tiny(c);
  107. }
  108. setTimeout("sparkle()", 40);
  109. }
  110.  
  111. function update_star(i) {
  112. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  113. if (starv[i]) {
  114. stary[i]+=1+Math.random()*3;
  115. starx[i]+=(i%5-2)/5;
  116. if (stary[i]<shigh+sdown) {
  117. star[i].style.top=stary[i]+"px";
  118. star[i].style.left=starx[i]+"px";
  119. }
  120. else {
  121. star[i].style.visibility="hidden";
  122. starv[i]=0;
  123. return;
  124. }
  125. }
  126. else {
  127. tinyv[i]=50;
  128. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  129. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  130. tiny[i].style.width="2px";
  131. tiny[i].style.height="2px";
  132. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  133. star[i].style.visibility="hidden";
  134. tiny[i].style.visibility="visible"
  135. }
  136. }
  137.  
  138. function update_tiny(i) {
  139. if (--tinyv[i]==25) {
  140. tiny[i].style.width="1px";
  141. tiny[i].style.height="1px";
  142. }
  143. if (tinyv[i]) {
  144. tinyy[i]+=1+Math.random()*3;
  145. tinyx[i]+=(i%5-2)/5;
  146. if (tinyy[i]<shigh+sdown) {
  147. tiny[i].style.top=tinyy[i]+"px";
  148. tiny[i].style.left=tinyx[i]+"px";
  149. }
  150. else {
  151. tiny[i].style.visibility="hidden";
  152. tinyv[i]=0;
  153. return;
  154. }
  155. }
  156. else tiny[i].style.visibility="hidden";
  157. }
  158.  
  159. document.onmousemove=mouse;
  160. function mouse(e) {
  161. if (e) {
  162. y=e.pageY;
  163. x=e.pageX;
  164. }
  165. else {
  166. set_scroll();
  167. y=event.y+sdown;
  168. x=event.x+sleft;
  169. }
  170. }
  171.  
  172. window.onscroll=set_scroll;
  173. function set_scroll() {
  174. if (typeof(self.pageYOffset)=='number') {
  175. sdown=self.pageYOffset;
  176. sleft=self.pageXOffset;
  177. }
  178. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  179. sdown=document.body.scrollTop;
  180. sleft=document.body.scrollLeft;
  181. }
  182. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  183. sleft=document.documentElement.scrollLeft;
  184. sdown=document.documentElement.scrollTop;
  185. }
  186. else {
  187. sdown=0;
  188. sleft=0;
  189. }
  190. }
  191.  
  192. window.onresize=set_width;
  193. function set_width() {
  194. var sw_min=999999;
  195. var sh_min=999999;
  196. if (document.documentElement && document.documentElement.clientWidth) {
  197. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  198. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  199. }
  200. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  201. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  202. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  203. }
  204. if (document.body.clientWidth) {
  205. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  206. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  207. }
  208. if (sw_min==999999 || sh_min==999999) {
  209. sw_min=800;
  210. sh_min=600;
  211. }
  212. swide=sw_min;
  213. shigh=sh_min;
  214. }
  215.  
  216. function createDiv(height, width) {
  217. var div=document.createElement("div");
  218. div.style.position="absolute";
  219. div.style.height=height+"px";
  220. div.style.width=width+"px";
  221. div.style.overflow="hidden";
  222. return (div);
  223. }
  224.  
  225. function newColour() {
  226. var c=new Array();
  227. c[0]=255;
  228. c[1]=Math.floor(Math.random()*256);
  229. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  230. c.sort(function(){return (0.5 - Math.random());});
  231. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  232. }
  233. // ]]>
  234. </script>
  235.  
  236.  
  237.  
  238.  
  239. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  240. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  241. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  242. <link rel="shortcut icon" href="{Favicon}">
  243. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  244. <meta name="text:Link 1" content=""/>
  245. <meta name="text:Link 1 URL" content=""/>
  246. <meta name="text:Link 2" content=""/>
  247. <meta name="text:Link 2 URL" content=""/>
  248. <meta name="text:Link 3" content=""/>
  249. <meta name="text:Link 3 URL" content=""/>
  250. <meta name="text:Link 4" content=""/>
  251. <meta name="text:Link 4 URL" content=""/>
  252. <meta name="text:Link 5" content=""/>
  253. <meta name="text:Link 5 URL" content=""/>
  254. <meta name="text:Link 6" content=""/>
  255. <meta name="text:Link 6 URL" content=""/>
  256. <meta name="text:Link 7" content=""/>
  257. <meta name="text:Link 7 URL" content=""/>
  258. <meta name="text:Link 8" content=""/>
  259. <meta name="text:Link 8 URL" content=""/>
  260. <meta name="text:Home Label" content="Home"/>
  261. <meta name="text:Ask Label" content="Ask"/>
  262. <meta name="text:Submit Label" content="Submit"/>
  263. <meta name="text:Archive Label" content="Archive"/>
  264. <meta name="if:Show Archive Link" content="1"/>
  265. <meta name="if:Show Submit Link" content="1"/>
  266. <meta name="if:Show Title" content="1"/>
  267. <meta name="if:Show Tags" content="0"/>
  268. <meta name="if:Animation" content="1"/>
  269. <meta name="if:To Top Button" content="1"/>
  270. <meta name="if:Infinite Scroll" content="1"/>
  271. <meta name="if:Show Captions" content="0"/>
  272. <meta name="if:Show Tags" content="0"/>
  273. <meta name="image:Background" content=""/>
  274. <meta name="image:Sidebar" content=""/>
  275. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/jkEm9tb4p/jquery-1.8.1.min.js"></script>
  276. <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/cpaytv3/2V1m9r58l/reset.css">
  277. <script type="text/javascript" src="http://static.tumblr.com/tpqedpr/vnzmibpqr/minified.js"></script>
  278. <style type="text/css">
  279. body {
  280. color: #8a8a8a;background: #ffffff url({image:Background});
  281. font-family: calibri light;
  282. letter-spacing: 1px;
  283. font-size: 10px;
  284. line-height: 16px;
  285. }
  286. p {margin:0 0 .75em 0} p:last-child {margin:0}
  287. a {
  288. color: #ffd4d4;
  289. text-decoration:none;
  290. {block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}
  291. a:hover {color: #CAEEFF; }
  292. blockquote {quotes: "" "" "'" "'"; margin: 0.75em 0 .75em .75em;padding-left: 1.5em;
  293. line-height: 100%;border-left: solid 4px #EDEDED;
  294. }
  295. h1 {
  296. font-family: Impact;
  297. font-size: 24px;
  298. line-height: 1.5em;font-weight: normal;
  299. }
  300. ul {
  301. margin: 0px 1.5em .75em;}
  302. li {
  303. margin: .75em 0;
  304. list-style-type: square;
  305. }
  306. .box img {
  307. display: block;
  308. max-width: 100%;}.m-i {
  309. display: block;
  310. line-height: 1px!important;
  311. }
  312. .menu-picture {
  313. line-height: 100%;
  314. display: inline-block;
  315. line-height: 0px!important;
  316. }
  317. .post-link{
  318. font-family: Lucida Sans;
  319. font-size: 8px;
  320. line-height: 8px;
  321. }p.source{text-align: center;}
  322. .menu-picture {
  323. line-height: 100%;display: inline-block;
  324. }p.source{text-align: center;}
  325. h3 {
  326. font-size: 14px; font-weight: normal;
  327. }.tagged { text-align: center; line-height: 8px;font-size: 8px;}
  328.  
  329. @font-face {
  330. font-family: "fool for love";
  331. src: url('http://static.tumblr.com/e1djgf7/dFGn2xm1p/fool_for_love.ttf');
  332. }
  333.  
  334. .text2 { font-family: fool for love; font-size: 24px;}
  335.  
  336. .text { padding: 5px;}p.question {
  337. margin-bottom: .375em;
  338. }
  339. p.words {
  340. padding: 6px;
  341. line-height: 1.5em;
  342. color: #858585;
  343. background: #ffffff;
  344. }
  345. .response {
  346. background-image: url(http://i1172.photobucket.com/albums/r578/Happygirl94/background/wall_pastel_sky__d_by_analaurasam-d5yi97s_zps2f81b989.png);
  347. padding: 5px;
  348. margin-bottom: .75em;
  349. color: #fff;
  350. }
  351.  
  352. .answer {
  353. text-align: left;
  354. }
  355. .post {
  356. position: relative;
  357. {block:IndexPage}
  358. width:250px;
  359. {/block:IndexPage}
  360. {block:PermalinkPage}
  361. width:500px;
  362. {/block:PermalinkPage}
  363. {block:indexpage}float: left;{/block:indexpage}
  364. {block:Permalinkpage}margin:20px auto!imporant;{block:Permalinkpage}
  365. background: #ffffff;
  366. padding:12px;
  367. margin:25px;
  368. border: 6px solid;
  369. border-image: url(http://i1172.photobucket.com/albums/r578/Happygirl94/background/large5_zps3ac21015.jpg) 10% repeat;
  370. }
  371.  
  372. .box {position: relative;}
  373.  
  374. .post img {max-width:500px; border-radius: 7px; {block:ifDuascolunas}{block:IndexPage}max-width:250px; border-radius: 7px;{/block:IndexPage}{/block:ifDuascolunas};}
  375.  
  376.  
  377.  
  378.  
  379. #banner {
  380. z-index:7;
  381. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  382. repeat:repeat-x;
  383. width:354px;
  384. margin-top:114px;
  385. margin-left:134px;
  386. height:18px;
  387. position: absolute;
  388. z-index: 99;
  389. opacity:1;
  390. }
  391.  
  392. #banner2 {
  393. z-index:7;
  394. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  395. repeat:repeat-x;
  396. width:118px;
  397. margin-top:50px;
  398. margin-left:436px;
  399. height:18px;
  400. position: absolute;
  401. z-index: 99;
  402. opacity:1;
  403. -webkit-transform: rotate(1350deg);
  404. }
  405.  
  406. #banner3 {
  407. z-index:7;
  408. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  409. repeat:repeat-x;
  410. width:125px;
  411. margin-top:50px;
  412. margin-left:66px;
  413. height:17px;
  414. position: absolute;
  415. z-index: 99;
  416. opacity:99;
  417. -webkit-transform: rotate(-1350deg);
  418. }
  419.  
  420. #banner4 {
  421. z-index:7;
  422. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  423. repeat:repeat-x;
  424. width:366px;
  425. margin-top:-18px;
  426. margin-left:129px;
  427. height:18px;
  428. position: absolute;
  429. z-index: 99;
  430. opacity:99;
  431. -webkit-transform: rotate(540deg);
  432. }
  433.  
  434.  
  435. #side {
  436. text-align: center;
  437. position:;
  438. margin: 40px auto 20px;
  439. width:349px;
  440. padding:0px;
  441. background: #ffffff;
  442. border: 0px solid #b0b0b0;
  443. }
  444.  
  445.  
  446. #side img {
  447. max-width: 100%;
  448. }ul {margin-bottom: .75em;}
  449. #contain {
  450. width:624px;
  451. margin: 20px auto 0;
  452.  
  453. }
  454.  
  455. #content {
  456. width:724px;
  457. margin-left: -25px;
  458. }
  459. #infscr-loading{position:absolute!important;width:16px!important;height:11px!important;margin-bottom:-16px!important;top:auto!important;bottom:0;left:50%!important}.post .perma{position: absolute;left: 5px;top: 5px;opacity: 0;filter:alpha(opacity=0);z-index: 10000;{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}.post:hover .perma{opacity: 1;filter:alpha(opacity=100);}.p1{display: inline-block; margin-right: 5px; height: 24px;font-size: 8px;padding: 0 4px;line-height: 24px;text-transform: uppercase;background: rgba(255, 255, 255, .55);{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}.p1:hover{background: rgba(255, 255, 255, 100); .p1 a{color: #000000;}}.post-right { float: left; text-transform: uppercase; } .post-left { float: right; text-transform: uppercase;}p.menu-m {margin: .375em;} .menu-link {margin: 0 3px;}iframe#tumblr_controls,.btn.icon.theme{filter:invert(100%);-webkit-filter:invert(100%);-moz-filter:invert(100%);-o-filter:invert(100%);-ms-filter:invert(100%); opacity:.4;position:fixed!important}.box iframe {
  460. max-width: 100%;
  461. }.text img {max-width: 100%;}img {display: block;}.box img {display: block;}
  462. .post-info-data{text-align:center}.notes img{display:block;float:left;margin-right:.75em}ol.notes li{margin:.375em 0;list-style-type:none;line-height:16px}
  463.  
  464. #toTop{display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:21px;height:21px;border:0;text-indent:100%;background:url(http://static.tumblr.com/uiqhh9x/372m6hyqw/up.png) no-repeat left top;opacity:.5;filter:alpha(opacity = 50);{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}#toTopHover{width:21px;height:21px;display:block;overflow:hidden;float:left;opacity:0;-moz-opacity:0;filter:alpha(opacity=0);{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}#toTop:hover{opacity:1;filter:alpha(opacity = 100)}#toTop:active,#toTop:focus{outline:0}
  465.  
  466. a.btn{position:absolute;z-index:999999;top:26px;right:3px;white-space:nowrap;outline:0;text-decoration:none;cursor:pointer;overflow:hidden;text-overflow:ellipsis;font:600 12px/18px "Helvetica Neue","HelveticaNeue",Helvetica,Arial,sans-serif;height:20px;padding:0 5px;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-transition-property:padding;-moz-transition-property:padding;-ms-transition-property:padding;-o-transition-property:padding;transition-property:padding;-webkit-transition-duration:.1s;-moz-transition-duration:.1s;-ms-transition-duration:.1s;-o-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:ease;-moz-transition-timing-function:ease;-ms-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.btn{color:#fff;border:1px solid rgba(0,0,0,0.18);background:rgba(0,0,0,0.38);text-shadow:1px 1px 0 rgba(0,0,0,0.08)}a.btn,a.btn:hover{color:white!important}.btn{margin-bottom:5px;color:#fff;border:1px solid rgba(0,0,0,0.18);background:rgba(0,0,0,0.38);text-shadow:1px 1px 0 rgba(0,0,0,0.08);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn:hover::after,.btn:focus::after{background:rgba(255,255,255,0.09);color:white}.btn:active::after{background:rgba(255,255,255,0.18) color:white}.btn_label.show{display:block}.btn::after{position:absolute;top:0;right:0;bottom:0;left:0;content:'';-webkit-border-radius:inherit;-moz-border-radius:inherit;border-radius:inherit}.btn.icon::before{display:block;content:'';position:absolute;top:0;left:0;bottom:0;width:20px;border-radius:inherit;background:url('http://static.tumblr.com/tpqedpr/cQ1mbwb60/de.png') 0 0 no-repeat}.btn.theme::before{background-position:0 -0px}.btn img{width:15px}.btn.icon{padding-left:20px}.btn:active::after {background:rgba(255,255,255,0.18)}.clear {clear: both;} #pagination {display: none;} .clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.clearfix{display:inline-block}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}
  467. </style></head>
  468. <body>
  469.  
  470. <div id="contain" class="clearfix">
  471.  
  472.  
  473. <img src='http://i1172.photobucket.com/albums/r578/Happygirl94/Transparent/tumblr_n1cg53D3kV1qloa94o1_r1_500_zps11832736.png' style='position:fixed;bottom:0px;left:0px;z-index:-999'/>
  474.  
  475.  
  476. <div id="banner"></div>
  477. <div id="banner2"></div>
  478. <div id="banner3"></div>
  479. <div id="banner4"></div>
  480.  
  481. <div id="side">
  482. <div class="text">
  483. {block:IfShowTitle}<div class="text2"><a href="/">{Title}</a></div>{/block:IfShowTitle}<a href="/" class="m-i"><img class="menu-picture" src="{image:sidebar}"/></a>
  484. <center><img src="http://media.tumblr.com/tumblr_lmzn1t43Rd1qg9aa7.gif"></center>
  485. <div id="description">{Description}</div>
  486.  
  487. <div><a class="menu-link" href="/">{text:Home Label}</a> /<a class="menu-link" href="/ask">{text:Ask label}</a>{block:SubmissionsEnabled}{block:IfShowSubmitLink}/ <a class="menu-link" href="/submit">{text:Submit label}</a>{/block:IfShowSubmitLink}{/block:SubmissionsEnabled}{block:HasPages}{block:Pages}/ <a class="menu-link" href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}{block:iflink1}/<a class="menu-link" href="{text:link 1 url}">{text:link 1}</a>{/block:iflink1}{block:iflink2}/<a class="menu-link" href="{text:link 2 url}">{text:link 2}</a>{/block:iflink2}{block:iflink3}/<a class="menu-link" href="{text:link 3 url}">{text:link 3}</a>{/block:iflink3}{block:iflink4}/<a class="menu-link" href="{text:link 4 url}">{text:link 4}</a>{/block:iflink4}{block:iflink5}/<a class="menu-link" href="{text:link 5 url}">{text:link 5}</a>{/block:iflink5}{block:iflink6}/<a class="menu-link" href="{text:link 6 url}">{text:link 6}</a>{/block:iflink6}{block:iflink7}/<a class="menu-link" href="{text:link 7 url}">{text:link 7}</a>{/block:iflink7}{block:iflink8}/<a class="menu-link" href="{text:link 8 url}">{text:link 8}</a>{/block:iflink8}{Block:IfShowArchiveLink}/ <a class="menu-link" href="/archive">{text:Archive Label}</a>{/Block:IfShowArchiveLink}</div>
  488. {block:IfNotInfiniteScroll}{block:Pagination}<p class="previous-next text">{block:PreviousPage}<a href="{PreviousPage}" class="next"><</a>{/block:PreviousPage}<span id="pages"> {CurrentPage} of {TotalPages} </span>{block:NextPage}<a href="{NextPage}" class="previous">></a>{/block:NextPage}</p>{/block:Pagination}{/block:IfNotInfiniteScroll}
  489. </div>
  490. </div>
  491. <div id="content">
  492. {block:Posts}
  493. <div class="post">
  494.  
  495. {block:Text}
  496. <div class="text">
  497. {block:Title}<h3>{Title}</h3>{/block:Title}
  498. {Body}
  499. <!-- permalink --> {block:IndexPage}
  500. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  501. <!-- /permalink --> {/block:IndexPage}
  502. </div>
  503. {/block:Text}
  504.  
  505. {block:Quote}
  506. <div class="text quote">
  507. <p class="words">&#8220;{Quote}&#8221;</p>
  508. {block:Source}<p class="source">{Source}</p>{/block:Source}
  509. <!-- permalink --> {block:IndexPage}
  510. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  511. <!-- /permalink --> {/block:IndexPage}
  512. </div>
  513. {/block:Quote}
  514.  
  515. {block:Link}
  516. <div class="text link">
  517. <h3><a href="{URL}" {Target}>{Name}</a></h3>
  518. {block:Description}{Description}{/block:Description}
  519. <!-- permalink --> {block:IndexPage}
  520. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  521. <!-- /permalink --> {/block:IndexPage}
  522. </div>
  523. {/block:Link}
  524.  
  525. {block:Chat}
  526. <div class="text chat">
  527. <ul class="conversation">
  528. {block:Lines}
  529. <li class="line {Alt}">
  530. {block:Label}<span class="person">{Label}</span>{/block:Label}
  531. <span class="person-said">{Line}</span>
  532. </li>
  533. {/block:Lines}
  534. </ul>
  535. <!-- permalink --> {block:IndexPage}
  536. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  537. <!-- /permalink --> {/block:IndexPage}
  538. </div>
  539. {/block:Chat}
  540.  
  541. {block:Audio}
  542. <div class="text audio">
  543. <p>{AudioPlayerBlack}</p>
  544. {block:IndexPage}{block:IfShowCaptions}
  545. {block:Caption}{Caption}{/block:Caption}
  546. {/block:IfShowCaptions}{/block:IndexPage}
  547. <!-- permalink --> {block:IndexPage}
  548. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  549. <!-- /permalink --> {/block:IndexPage}
  550. </div>
  551. {/block:Audio}
  552.  
  553. {block:Answer}
  554. <div class="text answer">
  555. <div class="response">
  556. <p>{Asker} said:</p>
  557. <p class="question">{Question}</p>
  558. </div>
  559. {Answer}
  560. <!-- permalink --> {block:IndexPage}
  561. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  562. <!-- /permalink --> {/block:IndexPage}
  563. </div>
  564. {/block:Answer}
  565.  
  566. {block:Photoset}
  567. <div class="photoset">
  568. <div class="box">
  569. <!-- permalink --> {block:IndexPage}
  570. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a></div><div class="p1"><a href="{Permalink}">{notecount}</a></div></div>
  571. <!-- /permalink --> {/block:IndexPage}
  572. {block:IndexPage}<center>{Photoset-250}</center>{/block:IndexPage}
  573. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  574. </div>
  575. {block:IndexPage}{block:IfShowCaptions}
  576. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  577. {/block:IfShowCaptions}{/block:IndexPage}
  578. </div>
  579. {/block:Photoset}
  580.  
  581. {block:Video}
  582. <div class="video">
  583. <div class="box">
  584. <!-- permalink --> {block:IndexPage}
  585. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a></div><div class="p1"><a href="{Permalink}">{notecount}</a></div></div>
  586. <!-- /permalink --> {/block:IndexPage}
  587. {block:IndexPage}<center>{Video-250}</center>{/block:IndexPage}
  588. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  589. </div>
  590. {block:IndexPage}{block:IfShowCaptions}
  591. {block:Caption}<div class="caption text">{Caption}</div>{/block:Caption}
  592. {/block:IfShowCaptions}{/block:IndexPage}
  593. </div>
  594. {/block:Video}
  595.  
  596. {block:Photo}
  597. <div class="photo">
  598. <div class="box">
  599. <!-- permalink --> {block:IndexPage}
  600. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a></div><div class="p1"><a href="{Permalink}">{notecount}</a></div></div>
  601. <!-- /permalink --> {/block:IndexPage}
  602. {block:IndexPage}
  603. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width="100%"/></a>
  604. {/block:IndexPage}
  605. {block:PermalinkPage}
  606. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/>{LinkCloseTag}
  607. {/block:PermalinkPage}
  608. </div>
  609. {block:IndexPage}{block:IfShowCaptions}
  610. {block:Caption}<div class="caption text">{Caption}</div>{/block:Caption}
  611. {/block:IfShowCaptions}{/block:IndexPage}
  612. </div>
  613. {/block:Photo}
  614.  
  615. {block:IfShowTags}{block:IndexPage}{block:HasTags}
  616. <div class="tagged"><p>{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</p></div>
  617. {/block:HasTags}{/block:IndexPage}{/block:IfShowTags}
  618.  
  619. {block:PermalinkPage}
  620. <div id="post-info" class="text">
  621. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  622. {block:HasTags}
  623. <p class="tagged">{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</p>
  624. {/block:HasTags}
  625. <p class="post-info-data">
  626. {block:Date}{12Hour}:{Minutes}:{Seconds} @ {MonthNumber}/{DayOfMonth}/{Year}<br/>{/block:Date}
  627. {block:NoteCount}{NoteCountWithLabel}<br />{/block:NoteCount}{block:RebloggedFrom}
  628. Reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br/>Posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>{block:RebloggedFrom}</p>
  629. {block:PostNotes}
  630. {PostNotes}
  631. {/block:PostNotes}
  632. </div>
  633. {/block:PermalinkPage}
  634.  
  635. </div> <!-- end single post -->
  636. {block:ContentSource}
  637. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  638. {/block:ContentSource}
  639. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  640. {/block:Posts}
  641. </div> <!-- end content -->
  642. <div class="loading"></div>
  643. </div> <!-- end containing div -->
  644. {block:IfInfiniteScroll}
  645. {block:Pagination}<ul id="pagination">
  646. {block:PreviousPage}
  647. <li><a href="{PreviousPage}"></a></li>
  648. {/block:PreviousPage}
  649. {block:JumpPagination length="5"}
  650. {block:CurrentPage}
  651. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  652. {/block:CurrentPage}
  653. {block:JumpPage}
  654. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  655. {/block:JumpPage}
  656. {/block:JumpPagination}
  657. {block:NextPage}
  658. <li><a id="nextPage" href="{NextPage}"></a></li>
  659. {/block:NextPage}
  660. </ul>{/block:Pagination}
  661. {/block:IfInfiniteScroll}
  662. {block:IndexPage}
  663. <script type="text/javascript">
  664. $(window).load(function () {
  665. $('#content').masonry(),
  666. $('.masonryWrap').infinitescroll({
  667. navSelector : '#pagination',
  668. nextSelector : '#pagination a#nextPage',
  669. itemSelector : ".post, .loading",
  670. bufferPx : 40,
  671. loadingImg : "http://static.tumblr.com/uiqhh9x/38Em68qk4/loading.gif",
  672. loadingText : "<em></em>",
  673. },
  674. function() { $('#content').masonry({ appendedContent: $(this) }); }
  675. );
  676. });
  677. </script>
  678. {/block:IndexPage}
  679. {block:IfToTopButton}
  680. <script type="text/javascript">
  681. $(document).ready(function() {
  682. /*
  683. var defaults = {
  684. containerID: 'toTop', // fading element id
  685. containerHoverID: 'toTopHover', // fading element hover id
  686. scrollSpeed: 1200,
  687. easingType: 'linear'
  688. };
  689. */
  690.  
  691. $().UItoTop({ easingType: 'easeOutQuart' });
  692.  
  693. });
  694. </script>
  695. <a href="#" id="toTop" style="display: none; "><span id="toTopHover"></span>To Top</a>
  696. {/block:IfToTopButton}
  697.  
  698. <BODY onselectstart="return false;" ondragstart="return false;">
  699. <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
  700. theme by<center></center><a href="http://tumblrgenerator.com/">tumblrgenerator</a><br></a>
  701. but credit by <a href="cutesythuglife.tumblr.com">Miki</a></div>
  702.  
  703. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement