mikit20

We belong together.

Oct 27th, 2014
3,867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.68 KB | None | 0 0
  1. <html lang="en">
  2. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.  
  6.  
  7. <script type="text/javascript"
  8. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  9.  
  10.  
  11. <link href='http://fonts.googleapis.com/css?family=Josefin+Slab' rel='stylesheet' type='text/css'>
  12.  
  13. <!--DEFAULT VARIABLES-->
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15.  
  16. <meta name="color:background" content="#fcfcfc"/>
  17. <meta name="color:link" content="#777"/>
  18. <meta name="color:text" content="#777"/>
  19. <meta name="color:title" content="#333"/>
  20. <meta name="color:hover" content="#373638"/>
  21.  
  22. <meta name="image:sidebar" content="1"/>
  23. <meta name="image:background" content="1"/>
  24.  
  25. <meta name="text:Link 1" content=""/>
  26. <meta name="text:Link 1 URL" content=""/>
  27. <meta name="text:Link 2" content=""/>
  28. <meta name="text:Link 2 URL" content=""/>
  29. <meta name="text:Link 3" content=""/>
  30. <meta name="text:Link 3 URL" content=""/>
  31. <meta name="text:Link 4" content=""/>
  32. <meta name="text:Link 4 URL" content=""/>
  33.  
  34. <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_lpyq1khKRw1qcn2vb.gif), progress;}</style>
  35.  
  36.  
  37. <script type="text/javascript">
  38. // <![CDATA[
  39. var colour="white"; // 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. <style type="text/css">
  237.  
  238. #tumblr_controls{
  239. position:fixed !important;
  240. -webkit-filter: invert(100%)
  241. }
  242.  
  243. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  244.  
  245. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  246.  
  247. p {
  248. margin:0px;
  249. margin-top:0px;
  250. }
  251.  
  252. body {
  253. margin: 5px;
  254. font-family: calibri light;
  255. line-height:12px;
  256. font-size:10px;
  257. letter-spacing:1px;
  258. background-attachment: fixed;
  259. background-repeat: repeat;
  260. color:{color:text};
  261. background-color: {color:Background};
  262. background-image:url({image:Background});
  263. }
  264.  
  265.  
  266. a:link, a:active, a:visited{
  267. text-decoration: none;
  268. -webkit-transition: all 0.6s ease-out;
  269. -moz-transition: all 0.6s ease-out;
  270. -o-transition: all 0.6s ease-out;
  271. transition: all 0.6s ease-out;
  272. color:{color:link};
  273. }
  274.  
  275. a:hover {
  276. text-decoration: none;
  277. -webkit-transition: all 0.3s ease-out;
  278. -moz-transition: all 0.3s ease-out;
  279. -o-transition: all 0.3s ease-out;
  280. transition: all 0.3s ease-out;
  281. color: {color:Hover};
  282. }
  283.  
  284. div#center{
  285. margin:auto;
  286. position:relative;
  287. width:1000px;
  288. background-color:;
  289. overflow:auto;
  290. overflow-y:hidden;
  291. }
  292.  
  293. .entry {
  294. float:left;
  295. display: block;
  296. margin:5px;
  297. overflow:hidden;
  298. width:250px;
  299. background:white;
  300. padding:7px;
  301. border:1px solid #eee;
  302. opacity:0.8;
  303. -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
  304. {block:PermalinkPage}
  305. width:500px;
  306. text-align:left;
  307. line-height:18px;
  308. font-size:11px;
  309. letter-spacing:1px;
  310. {/block:PermalinkPage}
  311. }
  312.  
  313. .entry:hover{
  314. opacity:1;
  315. -webkit-transition: all 0.7s ease-out;-moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
  316. }
  317.  
  318. .entry .perma{
  319. width:250px;
  320. height:auto;
  321. margin-left:0px;
  322. position: absolute;
  323. line-height: 14px;
  324. overflow:hidden;
  325. text-align:center;
  326. top:3px;
  327. padding:3px;
  328. background:white;
  329. word-spacing:2px;
  330. letter-spacing:1px;
  331. opacity: 0.0;
  332. -webkit-transition: all .7s ease;
  333. -moz-transition: all .7s ease;
  334. -o-transition: all .7s ease;
  335. transition: all .7s ease;
  336. }
  337.  
  338. .entry:hover .perma{
  339. overflow:visible;
  340. opacity:0.95;
  341. }
  342.  
  343. .entry img{
  344. max-width:100%;
  345. border-radius:5px;
  346. }
  347.  
  348. #posts {
  349. width:560px;
  350. margin-top:1px;
  351. z-index:99;
  352. margin-left:260px;
  353. right:auto;
  354. background:transparent;
  355. margin-right:auto;
  356. position:relative;
  357. overflow-y: hidden;
  358. }
  359.  
  360. #main {margin:0 auto;
  361. height: 100%;
  362. position: fixed;
  363. padding:15px;
  364. width:560px;
  365. margin-left: 240px;
  366. margin-top: -20px;
  367. border-left:0px dashed #E1E1E1;
  368. background-color:white;
  369.  
  370. }
  371.  
  372. #banner1 {
  373. background-image:url('http://media.tumblr.com/acdb10e3811f3e6319303f897e909412/tumblr_inline_n4cj14FxpL1r63cto.png');
  374. repeat:repeat-x;
  375. left:0;
  376. width:720px;
  377. height:18px;
  378. position: fixed;
  379. opacity:1;
  380. border-right:10px solid #fafafa;
  381. margin-left: 51px;
  382. margin-top: 334px;-webkit-transform: rotate(90deg);
  383. -moz-transform: rotate(90deg);
  384. z-index:999999999999999999;
  385. }
  386.  
  387. #banner2 {
  388. background-image:url('http://media.tumblr.com/acdb10e3811f3e6319303f897e909412/tumblr_inline_n4cj14FxpL1r63cto.png');
  389. repeat:repeat-x;
  390. left:0;
  391. width:700px;
  392. height:18px;
  393. position: fixed;
  394. opacity:1;
  395. border-right:10px solid #fafafa;
  396. margin-left: 660px;
  397. margin-top: 330px;-webkit-transform: rotate(-90deg);
  398. -moz-transform: rotate(-90deg);
  399. z-index:999999999999999999;
  400. }
  401.  
  402. #sidebar{
  403. position:fixed !important;
  404. width:200px;
  405. height:180px;
  406. background:white;
  407. height:auto;
  408. margin-top:240px;
  409. margin-left:-10px;
  410. text-align:justify;
  411. padding:5px;
  412. border: 1px solid #f5f5f5;
  413. }
  414.  
  415. #sidebar img{
  416. width: 100px;
  417. height: 100px;
  418. }
  419.  
  420. #sidebar2{
  421. position:fixed !important;
  422. width:100px;
  423. height:180px;
  424. background:white;
  425. height:auto;
  426. margin-top:120px;
  427. margin-left:-10px;
  428. text-align:justify;
  429. padding:5px;
  430. border: 1px solid #f5f5f5;
  431. }
  432.  
  433. #sidebar3{
  434. position:fixed !important;
  435. width:80px;
  436. background:transparent;
  437. height:auto;
  438. margin-top:120px;
  439. margin-left:110px;
  440. text-align:justify;
  441. padding:5px;
  442. }
  443.  
  444.  
  445. a.kaito {
  446. border: 1px solid #eee;
  447. margin-left: 2px;
  448. margin-bottom: 4px;
  449. text-align: center;
  450. width: 60px;
  451. background: #fff;
  452. display: inline-block;
  453. color:#555;
  454. font:normal 9px 'calibri light';
  455. text-transform: uppercase;
  456. letter-spacing: 2px;
  457. padding:8px;
  458. filter: alpha(opacity = 80);
  459. opacity:.8;
  460. border-radius:5px;
  461. -moz-transition-duration: 1s;-
  462. webkit-transition-duration: 1s;
  463. }
  464.  
  465. .description{
  466. padding:0px;
  467. font-size:8px;
  468. text-transform:uppercase;
  469. line-height:14px;
  470. letter-spacing:1px;
  471.  
  472. }
  473.  
  474.  
  475. askk {
  476. font-family:calibri light;
  477. font-size: 15px;
  478. z-index:1;
  479. color: {color:Title};
  480. }
  481.  
  482. .title{
  483. line-height: 18px;
  484. font-size: 16px;
  485. font-family: 'Josefin Slab', serif;
  486. color:{color:Title};
  487. }
  488.  
  489. .permalink{
  490. text-transform: uppercase;
  491. font-size:8px;
  492. display: block;
  493. text-align: center;
  494. text-decoration: none;
  495. margin-top:8px;
  496. margin-bottom:2px;
  497. padding:3px;
  498. border-top:1px solid #eee;
  499. }
  500.  
  501. #audio {
  502. width:200px;
  503. height:auto;
  504. min-height:60px;
  505. padding-bottom:0px;
  506. }
  507. .cover {
  508. position:absolute;
  509. z-index:1;
  510. width:60px;
  511. height:60px;
  512. }
  513. .cover img {
  514. float:left;
  515. width:60px;
  516. height:60px;
  517. }
  518. .playbox {
  519. opacity:0.6;
  520. width:27px;
  521. height:30px;
  522. overflow:hidden;
  523. position:absolute;
  524. z-index:1000;
  525. margin-left:17px;
  526. margin-top:17px;
  527. text-align:center;
  528. }
  529. .info {
  530. margin-left:73px;
  531. margin-top:4px;
  532. line-height:14px;
  533. }
  534.  
  535. #infscr-loading{
  536. bottom: -70px;
  537. position: absolute;
  538. left: 50%;
  539. margin-left:-8px;
  540. width:16px;
  541. height:11px;
  542. overflow:hidden;
  543. margin-bottom: 50px;
  544. }
  545.  
  546. ::-webkit-scrollbar-thumb:vertical {background-color: #000; border:4px solid #FFFFBA; border-top: 5px solid #F3DBFF; border-bottom: 5px solid #F3DBFF; height: 10px;}
  547. ::-webkit-scrollbar-thumb:horizontal {background-color: #000; height:10px!important;}
  548. ::-webkit-scrollbar {background-color: #000; border: 4px solid #000; height:10px; width:10px;}
  549. ::-webkit-scrollbar-track-piece {
  550. background-color: #DCEAFF;
  551. border: 3px solid #fff;
  552. }
  553. ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
  554. background: #ddd;
  555. }
  556.  
  557. #postnotes{
  558. text-align: justify;}
  559.  
  560. #postnotes blockquote{
  561. border: 0px;}
  562.  
  563. blockquote{
  564. padding:0px 0px 2px 5px;
  565. margin:0px 0px 2px 10px;
  566. border-left: 1px dotted #555555;
  567. }
  568.  
  569. blockquote p, ul{
  570. margin:0px;
  571. padding:0px;
  572. }
  573.  
  574. a img{border: 0px;}
  575.  
  576.  
  577. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  578.  
  579. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  580. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  581.  
  582. .notes img{width:15px; position:relative; top:3px;border-radius:60px;}
  583. <--ses-->
  584. small{font-size: 90%;}
  585.  
  586. {CustomCSS}
  587.  
  588. </style>
  589.  
  590. {block:IndexPage}
  591. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  592. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  593.  
  594. <script type="text/javascript">
  595. $(window).load(function(){
  596. var $wall = $('#posts');
  597. $wall.imagesLoaded(function(){
  598. $wall.masonry({
  599. itemSelector: '.entry, .entry_photo',
  600. isAnimated : false
  601. });
  602. });
  603.  
  604. $wall.infinitescroll({
  605. navSelector : '#pagination',
  606. nextSelector : '#pagination a',
  607. itemSelector : '.entry, .entry_photo',
  608. bufferPx : 2000,
  609. debug : false,
  610. errorCallback: function() {
  611. $('#infscr-loading').fadeOut('normal');
  612. }},
  613. function( newElements ) {
  614. var $newElems = $( newElements );
  615. $newElems.hide();
  616. $newElems.imagesLoaded(function(){
  617. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  618. });
  619. }); $('#posts').show(500);
  620. });
  621. </script>
  622.  
  623.  
  624. {/block:IndexPage}
  625.  
  626.  
  627. <title>{title}</title>
  628.  
  629. <link rel="shortcut icon" href="{Favicon}" />
  630. <meta name="viewport" content="width=820" />
  631. </head>
  632.  
  633. <body>
  634. <BODY onselectstart="return false;" ondragstart="return false;">
  635. <div class="wrapper">
  636. <div class="header">
  637. </div>
  638.  
  639. <div id="cage">
  640. <div id="center">
  641.  
  642. <!---->
  643.  
  644. <div id="sidebar">
  645. <div class="description">{Description}</div>
  646. <center>
  647. <select onchange='location=this.options[this.selectedIndex].value;' style='
  648. font-family:calibri light;line-height:90%;font-style:none;font-size:10px;text-transform:lowercase;letter-spacing:0px;color:#353535;width:200px;text-align:center;background-color:#fff;border:#ddd 1px solid; height:20px;'>
  649.  
  650. <option>N A V I G A T I O N</option>
  651.  
  652. <option value="{text:Link 1 url}"> {text:link 1} </option>
  653. <option value="{text:link 2 url}"> {text:link 2} </option>
  654. <option value="{text:link 3 url}"> {text:link 3} </option>
  655. <option value="{text:link 4 url}"> {text:link 4} </option>
  656. </select>
  657. </center>
  658.  
  659. </div>
  660.  
  661. <div id="sidebar2">
  662. <center><a href="/"><img src="{image:sidebar}" width=100%></a></center>
  663. </div>
  664.  
  665. <div id="sidebar3">
  666. <a class="kaito" href="/">home</a>
  667. <a class="kaito" href="/ask">contact</a>
  668. <a class="kaito" href="/archive">past</a>
  669. </div>
  670. <!------------------------------------->
  671.  
  672.  
  673. <div class="left">
  674. <div id="banner2"></div>
  675. <div id="banner1"></div>
  676. <div id="main"></div>
  677. <div id="posts">
  678. {block:Posts}
  679. <div class="entry">
  680.  
  681. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span>
  682. <span class="permalink">
  683. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
  684. <br>{/block:HasTags}</span>
  685. {/block:Text}
  686.  
  687. {block:Answer}
  688. <div style="margin-top:2px;;margin-bottom:0px;min-height:30px; padding: 4px; background-color:#fff;border:1px solid #eee;border-radius:5px; letter-spacing:1px;line-height:14px;">
  689. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3.5px;"/><askk>{asker}</askk>: {Question}</div>
  690. <div style="margin-top:2px; line-height:13px;letter-spacing:1px;margin-bottom:4px; background: transparent;">{Answer}</div>
  691. {/block:Answer}
  692.  
  693. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description}
  694. <span class="permalink">
  695. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
  696. {/block:Link}
  697.  
  698. {block:Photo}
  699. {block:IndexPage}
  700. <center>
  701. <div class="perma">
  702. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
  703.  
  704. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  705. {/block:IndexPage}
  706. {block:PermalinkPage}
  707. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  708.  
  709. {LinkCloseTag}
  710. {/block:PermalinkPage}
  711. {/block:Photo}
  712.  
  713. {block:Photoset}
  714. {block:IndexPage}
  715. <center>
  716.  
  717. <div class="perma">
  718. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
  719.  
  720. {Photoset-250}</center>
  721. {/block:IndexPage}
  722. {block:PermalinkPage}
  723. <center>
  724. {Photoset-500}</center>
  725. {/block:PermalinkPage}
  726. {/block:Photoset}
  727.  
  728. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br>
  729. <span class="permalink">
  730. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
  731. </span>{/block:Quote}
  732.  
  733. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  734. <ul class="chat">
  735. {block:Lines}
  736. <li class="user_{UserNumber}">
  737. {block:Label}
  738. <span class="label">{Label}</span>
  739. {/block:Label}
  740.  
  741. {Line}
  742. </li>
  743. {/block:Lines}
  744. <span class="permalink">
  745. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
  746. {/block:Chat}
  747.  
  748. {block:Audio}
  749. <div id="audio"><div class="cover"><img src="http://static.tumblr.com/k9utpfa/tcom8wpif/default_cover_m.jpg"></div>{block:AlbumArt}<div class="cover"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}<div class="playbox">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div><div class="info"><b>Artist:</b> <span{block:Artist} style="display:none;"{/block:Artist}>Unknown</span>{block:Artist}{Artist}{/block:Artist}<br><b>Title:</b> <span{block:TrackName} style="display:none;"{/block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}<br><b>Album:</b> <span{block:Album} style="display:none;"{/block:Album}>Unknown</span>{block:Album}{Album}{/block:Album}{block:PlayCount}<br><b>Plays:</b> {FormattedPlayCount}{/block:PlayCount}</div></div>
  750. {block:IndexPage}
  751. {/block:IndexPage}
  752. {/block:Audio}
  753.  
  754. {block:Video}
  755. {block:IndexPage}
  756. <center>
  757. <div class="perma">
  758. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
  759. {Video-250}</center>
  760. {/block:IndexPage}
  761. {block:PermalinkPage}
  762. <center>
  763. {Video-400}</center>
  764. {/block:PermalinkPage}
  765. {block:Video}
  766.  
  767.  
  768. {block:PostNotes}<div align="middle">{caption}</div>
  769. <center>
  770.  
  771. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  772.  
  773. {block:HasTags}
  774. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  775. {block:RebloggedFrom}
  776. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  777. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  778.  
  779. {/block:RebloggedFrom}
  780. </center></span>
  781. <br>
  782. <div id="postnotes">{PostNotes}</div><br>
  783.  
  784. <center>{block:ContentSource}
  785. <br><a href="{SourceURL}">
  786. {lang:Source}:
  787. {block:SourceLogo}
  788. <img src="{BlackLogoURL}" width="{LogoWidth}"
  789. height="{LogoHeight}" alt="{SourceTitle}" />
  790. {/block:SourceLogo}
  791. {block:NoSourceLogo}
  792. {SourceLink}
  793. {/block:NoSourceLogo}
  794. </a>
  795. {/block:ContentSource}</center>
  796.  
  797. {/block:PostNotes}
  798. </div>
  799. {/block:Posts}
  800. </div></div>
  801.  
  802. {block:IndexPage}
  803. {block:Pagination}
  804. <div id="pagination">
  805. {block:NextPage}
  806. <a id="nextPage" href="{NextPage}"></a>
  807. {/block:NextPage}
  808. {block:PreviousPage}
  809. <a href="{PreviousPage}"></a>
  810. {/block:PreviousPage}
  811. </div>
  812. {/block:Pagination}
  813. {/block:IndexPage}
  814. </body>
  815.  
  816. <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
  817. <a href="http://themesbymiki.tumblr.com/tagged/cute-themes">✿</a></div>
  818.  
  819. </html>
Advertisement
Add Comment
Please, Sign In to add comment