Advertisement
mikit20

Baby Jam

Nov 15th, 2018
687
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.65 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. <script type="text/javascript" src="http://static.tumblr.com/3ikgvxs/0TGl4zgpu/jquery.min.js"></script>
  12. <script type="text/javascript">
  13. $(document).ready(function(){
  14. $(".links_body").hide();
  15. $(".links_head").click(function(){
  16. $(this).next(".links_body").slideToggle('fast');
  17. }); }); </script>
  18. <style type="text/css">
  19. .links_list { margin:0px; padding:0px; width:100%;}
  20. .links_head { padding-top:5px; padding-bottom:5px; cursor:pointer; position:relative; margin:1px; text-align:center;}
  21. .links_body { padding:10px; text-align:left; display:none;}
  22. </style>
  23.  
  24.  
  25. <style type="text/css">body, a, a:hover {cursor: url({image:cursor}), progress;}</style>
  26.  
  27.  
  28.  
  29. <!--DEFAULT VARIABLES-->
  30. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  31.  
  32. <meta name="color:background" content="#fcfcfc"/>
  33. <meta name="color:link" content="#777"/>
  34. <meta name="color:text" content="#777"/>
  35. <meta name="color:title" content="#333"/>
  36. <meta name="color:hover" content="#373638"/>
  37. <meta name="color:text shadow" content="#aaa"/>
  38. <meta name="color:scrollbar" content="#777"/>
  39. <meta name="color:side link" content="#777"/>
  40. <meta name="color:side link hover" content="#777"/>
  41. <meta name="color:side link font" content="#777"/>
  42. <meta name="color:side link font hover" content="#777"/>
  43.  
  44.  
  45. <meta name="image:background" content="1"/>
  46. <meta name="image:Sidebar" content=""/>
  47. <meta name="image:cursor" content=""/>
  48. <meta name="image:corner" content="1"/>
  49. <meta name="image:bg border" content="" />
  50.  
  51.  
  52. <meta name="text:Link 1" content=""/>
  53. <meta name="text:Link 1 URL" content=""/>
  54. <meta name="text:Link 2" content=""/>
  55. <meta name="text:Link 2 URL" content=""/>
  56. <meta name="text:Link 3" content=""/>
  57. <meta name="text:Link 3 URL" content=""/>
  58.  
  59.  
  60. <link href="https://fonts.googleapis.com/css?family=Dosis" rel="stylesheet">
  61. <link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
  62.  
  63. <script type="text/javascript">
  64. // <![CDATA[
  65. var colours=new Array('#fcdbf3', '#beede3', '#f5dcde', '#ffe7f8', '#f0f7ff', '#fff2f3'); // colours of the hearts
  66. var minisize=10; // smallest size of hearts in pixels
  67. var maxisize=14; // biggest size of hearts in pixels
  68. var hearts=35; // maximum number of hearts on screen
  69. var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
  70.  
  71. /*****************************
  72. *JavaScript Love Heart Cursor*
  73. * (c)2013+ mf2fm web-design *
  74. * http://www.mf2fm.com/rv *
  75. * DON'T EDIT BELOW THIS BOX *
  76. *****************************/
  77. var x=ox=400;
  78. var y=oy=300;
  79. var swide=800;
  80. var shigh=600;
  81. var sleft=sdown=0;
  82. var herz=new Array();
  83. var herzx=new Array();
  84. var herzy=new Array();
  85. var herzs=new Array();
  86. var kiss=false;
  87.  
  88. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  89. var oldonload=window.onload;
  90. if (typeof(oldonload)!='function') window.onload=funky;
  91. else window.onload=function() {
  92. if (oldonload) oldonload();
  93. funky();
  94. }
  95. }
  96.  
  97. addRVLoadEvent(mwah);
  98.  
  99. function mwah() { if (document.getElementById) {
  100. var i, heart;
  101. for (i=0; i<hearts; i++) {
  102. heart=createDiv("auto", "auto");
  103. heart.style.visibility="hidden";
  104. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  105. heart.style.color=colours[i%colours.length];
  106. heart.style.pointerEvents="none";
  107. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  108. else heart.style.opacity=0.75;
  109. heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
  110. document.body.appendChild(heart);
  111. herz[i]=heart;
  112. herzy[i]=false;
  113. }
  114. set_scroll();
  115. set_width();
  116. herzle();
  117. }}
  118.  
  119. function herzle() {
  120. var c;
  121. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  122. ox=x;
  123. oy=y;
  124. for (c=0; c<hearts; c++) if (herzy[c]===false) {
  125. herz[c].firstChild.nodeValue=String.fromCharCode(9829);
  126. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  127. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  128. herz[c].style.fontSize=minisize+"px";
  129. herz[c].style.fontWeight='normal';
  130. herz[c].style.visibility='visible';
  131. herzs[c]=minisize;
  132. break;
  133. }
  134. }
  135. for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  136. setTimeout("herzle()", 40);
  137. }
  138.  
  139. document.onmousedown=pucker;
  140. document.onmouseup=function(){clearTimeout(kiss);};
  141.  
  142. function pucker() {
  143. ox=-1;
  144. oy=-1;
  145. kiss=setTimeout('pucker()', 100);
  146. }
  147.  
  148. function blow_me_a_kiss(i) {
  149. herzy[i]-=herzs[i]/minisize+i%2;
  150. herzx[i]+=(i%5-2)/5;
  151. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  152. herz[i].style.visibility="hidden";
  153. herzy[i]=false;
  154. }
  155. else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
  156. else {
  157. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  158. herz[i].style.top=herzy[i]+"px";
  159. herz[i].style.left=herzx[i]+"px";
  160. }
  161. }
  162.  
  163. function break_my_heart(i) {
  164. var t;
  165. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  166. herz[i].style.fontWeight='bold';
  167. herzy[i]=false;
  168. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  169. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  170. }
  171.  
  172. document.onmousemove=mouse;
  173. function mouse(e) {
  174. if (e) {
  175. y=e.pageY;
  176. x=e.pageX;
  177. }
  178. else {
  179. set_scroll();
  180. y=event.y+sdown;
  181. x=event.x+sleft;
  182. }
  183. }
  184.  
  185. window.onresize=set_width;
  186. function set_width() {
  187. var sw_min=999999;
  188. var sh_min=999999;
  189. if (document.documentElement && document.documentElement.clientWidth) {
  190. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  191. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  192. }
  193. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  194. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  195. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  196. }
  197. if (document.body.clientWidth) {
  198. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  199. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  200. }
  201. if (sw_min==999999 || sh_min==999999) {
  202. sw_min=800;
  203. sh_min=600;
  204. }
  205. swide=sw_min;
  206. shigh=sh_min;
  207. }
  208.  
  209. window.onscroll=set_scroll;
  210. function set_scroll() {
  211. if (typeof(self.pageYOffset)=='number') {
  212. sdown=self.pageYOffset;
  213. sleft=self.pageXOffset;
  214. }
  215. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  216. sdown=document.body.scrollTop;
  217. sleft=document.body.scrollLeft;
  218. }
  219. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  220. sleft=document.documentElement.scrollLeft;
  221. sdown=document.documentElement.scrollTop;
  222. }
  223. else {
  224. sdown=0;
  225. sleft=0;
  226. }
  227. }
  228.  
  229. function createDiv(height, width) {
  230. var div=document.createElement("div");
  231. div.style.position="absolute";
  232. div.style.height=height;
  233. div.style.width=width;
  234. div.style.overflow="hidden";
  235. div.style.backgroundColor="transparent";
  236. return (div);
  237. }
  238. // ]]>
  239. </script>
  240.  
  241.  
  242. <style type="text/css">
  243.  
  244.  
  245. #tumblr_controls{
  246. position:fixed !important;
  247. -webkit-filter: invert(100%)
  248. }
  249.  
  250. 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;}
  251.  
  252. 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;}
  253.  
  254. p {
  255. margin:0px;
  256. margin-top:0px;
  257. }
  258.  
  259. body {
  260. margin: 5px;
  261. font-family: calibri light;
  262. line-height:10px;
  263. font-size:10px;
  264. background-attachment: fixed;
  265. background-repeat: repeat;
  266. color:{color:text};
  267. background-color: {color:Background};
  268. background-image:url({image:Background});
  269. }
  270.  
  271.  
  272. a:link, a:active, a:visited{
  273. text-decoration: none;
  274. -webkit-transition: all 0.6s ease-out;
  275. -moz-transition: all 0.6s ease-out;
  276. -o-transition: all 0.6s ease-out;
  277. transition: all 0.6s ease-out;
  278. color:{color:link};
  279. }
  280.  
  281. a:hover {
  282. text-decoration: none;
  283. -webkit-transition: all 0.3s ease-out;
  284. -moz-transition: all 0.3s ease-out;
  285. -o-transition: all 0.3s ease-out;
  286. transition: all 0.3s ease-out;
  287. color: {color:Hover};
  288. text-shadow:0px 0px 2px {color:text shadow};
  289. }
  290.  
  291. div#center{
  292. margin:auto;
  293. position:relative;
  294. width:1000px;
  295. background-color:;
  296. overflow:auto;
  297. overflow-y:hidden;
  298. }
  299.  
  300. .entry {
  301. float:left;
  302. display: block;
  303. margin:20px;
  304. overflow:hidden;
  305. width:250px;
  306. background:white;
  307. padding:15px;
  308. border:1px solid #F3E1E1;
  309. font-size: 11px;
  310. letter-spacing:1px;
  311. line-height:18px;
  312. border-radius:0px;
  313. box-shadow: 8px 8px rgba(0,0,0,.05);
  314. outline-offset:-8px;
  315. outline:1px dashed #ddd;
  316. {block:PermalinkPage}
  317. width:500px;
  318. text-align:left;
  319. line-height:10px;
  320. {/block:PermalinkPage}
  321. }
  322.  
  323. .entry .perma{
  324. width:250px;
  325. height:auto;
  326. margin-left:0px;
  327. position: absolute;
  328. line-height: 14px;
  329. overflow:hidden;
  330. text-align:center;
  331. font-size:9px;
  332. font-family: 'Dosis', sans-serif;
  333. top:3px;
  334. padding:3px;
  335. background:white;
  336. word-spacing:2px;
  337. letter-spacing:1px;
  338. opacity: 0.0;
  339. -webkit-transition: all .9s ease;
  340. -moz-transition: all .9s ease;
  341. -o-transition: all .9s ease;
  342. transition: all .9s ease;
  343. }
  344.  
  345. .entry:hover .perma{
  346. overflow:visible;
  347. opacity:1;
  348. }
  349.  
  350.  
  351. .entry img {max-width:500px; border-radius: 0px; {block:ifcolumns}{block:IndexPage}max-width:250px; border-radius: 0px;{/block:IndexPage}{/block:ifcolumns};}
  352.  
  353. #posts {
  354. width:760px;
  355. margin-top:10px;
  356. z-index:99;
  357. margin-left:270px;
  358. right:auto;
  359. background:transparent;
  360. margin-right:auto;
  361. position:relative;
  362. overflow-y: hidden;
  363. }
  364.  
  365.  
  366. #sidebar{
  367. position:fixed !important;
  368. width:130px;
  369. background:white;
  370. height:500px;
  371. margin-top:190px;
  372. margin-left:100px;
  373. padding:5px;
  374. text-align:center;
  375. border-radius:10px;
  376. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
  377. -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
  378. -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.09);
  379. }
  380.  
  381. #sideimage img{
  382. width: 40px;
  383. height: 100px;
  384. padding:4px;
  385. border: 1px solid #ddd;
  386. }
  387.  
  388. #sideimage img{
  389. border-radius:120px;
  390. background-color: #fff;
  391. border: 1px solid #eee;
  392. padding: 7px;
  393. height:40px;
  394. width:40px;
  395. -webkit-transition:All 0.5s ease;
  396. -moz-transition:All 0.5s ease;
  397. -o-transition:All 0.5s ease;
  398. transform: rotate(0deg) ;
  399. -webkit-transform: rotate(0deg) ;
  400. -moz-transform: rotate(0deg) ;
  401. -o-transform: rotate(0deg) ;
  402. -ms-transform: rotate(0deg) ;
  403.  
  404. }
  405.  
  406. #sideimage img:hover{
  407. transform: rotate(360deg) ;
  408. -webkit-transform: rotate(360deg) ;
  409. -moz-transform: rotate(360deg) ;
  410. -o-transform: rotate(360deg) ;
  411. -ms-transform: rotate(360deg) ;
  412. }
  413.  
  414. #description{
  415. font-size:11px;
  416. font-family: 'Abel', sans-serif;
  417. line-height:14px;
  418. letter-spacing:1px;
  419. background:#fff;
  420. border-radius: 5px;
  421. padding:5px;
  422. text-align:left;
  423. }
  424.  
  425. .imageu{width:100px;border-radius:8px;
  426. background-image:url({image:bg border});;background-size:350px;padding:10px;
  427. height:;}
  428.  
  429. .linkss a{
  430. margin-left:5px;
  431. text-align:right;
  432. margin-top:3px;
  433. display:block;
  434. width:113px;
  435. height:12px;
  436. padding-right:3px;
  437. padding-bottom:3px;
  438. font-size:10px;
  439. font-family: calibri light;
  440. background:{color:side link};
  441. border-bottom:1px dashed #f0f0f0;
  442. color:{color:side link font};
  443. -webkit-transition: all 0.3s linear;
  444. -moz-transition: all 0.3s linear;
  445. transition: all 0.3s linear;
  446. }
  447.  
  448. .linkss a:hover{
  449. margin-left:5px;
  450. text-align:right;
  451. margin-top:3px;
  452. display:block;
  453. width:90px;
  454. height:12px;
  455. padding-right:13px;
  456. font-size:10px;
  457. font-family: calibri light;
  458. background:{color:side link hover};
  459. border-bottom:0px solid #f0f0f0;
  460. color:{color:side link font hover};
  461. -webkit-transition: all 0.3s linear;
  462. -moz-transition: all 0.3s linear;
  463. transition: all 0.3s linear;
  464. }
  465.  
  466. askk {
  467. font-size: 15px;
  468. z-index:1;
  469. color: {color:Title};
  470. }
  471.  
  472. .title{
  473. line-height: 16px;
  474. font-size: 16px;
  475. color:{color:Title};
  476. }
  477.  
  478. .permalink{
  479. text-transform: uppercase;
  480. font-size:8px;
  481. display: block;
  482. text-align: center;
  483. text-decoration: none;
  484. margin-top:8px;
  485. margin-bottom:2px;
  486. padding:3px;
  487. border-top:1px solid #eee;
  488. }
  489.  
  490. #audio {
  491. width:200px;
  492. height:auto;
  493. min-height:60px;
  494. padding-bottom:0px;
  495. }
  496. .cover {
  497. position:absolute;
  498. z-index:1;
  499. width:60px;
  500. height:60px;
  501. }
  502. .cover img {
  503. float:left;
  504. width:60px;
  505. height:60px;
  506. }
  507. .playbox {
  508. opacity:0.6;
  509. width:27px;
  510. height:30px;
  511. overflow:hidden;
  512. position:absolute;
  513. z-index:1000;
  514. margin-left:17px;
  515. margin-top:17px;
  516. text-align:center;
  517. }
  518. .info {
  519. margin-left:73px;
  520. margin-top:4px;
  521. line-height:14px;
  522. }
  523.  
  524. #infscr-loading{
  525. bottom: -70px;
  526. position: absolute;
  527. left: 50%;
  528. margin-left:-8px;
  529. width:16px;
  530. height:11px;
  531. overflow:hidden;
  532. margin-bottom: 50px;
  533. }
  534.  
  535. ::-webkit-scrollbar {
  536. width: 4px;
  537. height: 4px;
  538. border-left:0px solid #ccc;
  539. background-color:{color:background};
  540. }
  541.  
  542. ::-webkit-scrollbar-thumb {
  543. background: {color:scrollbar};
  544. }
  545.  
  546. ::-webkit-scrollbar {
  547. width: 5px;
  548. height: 5px;
  549. background: #dddddd;
  550. }
  551.  
  552. ::-webkit-scrollbar-thumb {
  553. background-color:{color:scrollbar};
  554. }
  555.  
  556. #postnotes{
  557. text-align: justify;}
  558.  
  559. #postnotes blockquote{
  560. border: 0px;}
  561.  
  562. blockquote{
  563. padding:0px 0px 2px 5px;
  564. margin:0px 0px 2px 10px;
  565. border-left: 1px dotted #555555;
  566. }
  567.  
  568. blockquote p, ul{
  569. margin:0px;
  570. padding:0px;
  571. }
  572.  
  573. a img{border: 0px;}
  574.  
  575.  
  576. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  577.  
  578. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  579. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  580.  
  581. .notes img{width:15px; position:relative; top:3px;border-radius:60px;}
  582. <--ses-->
  583. small{font-size: 90%;}
  584.  
  585. {CustomCSS}
  586.  
  587. </style>
  588.  
  589. {block:IndexPage}
  590. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  591. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  592.  
  593. <script type="text/javascript">
  594. $(window).load(function(){
  595. var $wall = $('#posts');
  596. $wall.imagesLoaded(function(){
  597. $wall.masonry({
  598. itemSelector: '.entry, .entry_photo',
  599. isAnimated : false
  600. });
  601. });
  602.  
  603. $wall.infinitescroll({
  604. navSelector : '#pagination',
  605. nextSelector : '#pagination a',
  606. itemSelector : '.entry, .entry_photo',
  607. bufferPx : 2000,
  608. debug : false,
  609. errorCallback: function() {
  610. $('#infscr-loading').fadeOut('normal');
  611. }},
  612. function( newElements ) {
  613. var $newElems = $( newElements );
  614. $newElems.hide();
  615. $newElems.imagesLoaded(function(){
  616. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  617. });
  618. }); $('#posts').show(500);
  619. });
  620. </script>
  621.  
  622.  
  623. {/block:IndexPage}
  624.  
  625.  
  626. <title>{title}</title>
  627.  
  628. <link rel="shortcut icon" href="{Favicon}" />
  629. <meta name="viewport" content="width=820" />
  630. </head>
  631.  
  632. <body>
  633. <BODY onselectstart="return false;" ondragstart="return false;">
  634. <div class="wrapper">
  635. <div class="header">
  636. </div>
  637.  
  638. <div id="cage">
  639. <div id="center">
  640.  
  641. <!---->
  642.  
  643. <div style=" background-image: url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png'); top: 0px; width: 100%; left:0px; height: 18px; z-index: 999; position: fixed; background-hover:filter:alpha(opacity=120);"></div>
  644.  
  645. <div style="position: fixed; top:82px; left: 235px; background-color: transparent; margin:5px; padding:4px; text-align:center;z-index:999;">
  646. <center><img src="https://78.media.tumblr.com/70a7cbec9a9d6ea6a252d452fee8d8ba/tumblr_inline_o0a1pbOMsv1reem51_250.png"></center>
  647. </div>
  648.  
  649. <div id="sidebar">
  650. <br>
  651. <center>
  652. <center><div id="sideimage"><img src="{image:sidebar}"></div></center>
  653. <br>
  654. <div class="imageu">
  655. <div id="description">{Description}</div>
  656. </div></center>
  657. <br>
  658.  
  659. <div class="linkss">
  660. <a href="/" >home</a>
  661. <a href="/ask" >ask </a>
  662. <a href="/archive" >archive </a>
  663. <a href="{text:link 1 url}" >{text:link 1}</a>
  664. <a href="{text:link 2 url}" >{text:link 2}</a>
  665. <a href="{text:link 3 url}" >{text:link 3}</a>
  666.  
  667. </div><br>
  668. <center><img src="http://oi60.tinypic.com/10dh8ci.jpg"></center>
  669. </div>
  670. <!------------------------------------->
  671.  
  672.  
  673. <div class="left">
  674. <div id="posts">
  675. {block:Posts}
  676. <div class="entry">
  677.  
  678. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span>
  679. <span class="permalink">
  680. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
  681. <br>{/block:HasTags}</span>
  682. {/block:Text}
  683.  
  684. {block:Answer}
  685. <div style="margin-top:2px;;margin-bottom:0px;min-height:30px; padding: 4px; background-color:#fff;border:1px solid #eee;border-radius:5px;">
  686. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3.5px;"/><askk>{asker}</askk>: {Question}</div>
  687. <br>
  688. <div style="margin-top:2px; line-height:11px;margin-bottom:4px; background: transparent;">{Answer}</div>
  689. {/block:Answer}
  690.  
  691. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description}
  692. <span class="permalink">
  693. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
  694. {/block:Link}
  695.  
  696. {block:Photo}
  697. {block:IndexPage}
  698. <center>
  699. <div class="perma">
  700. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> with <a href="{Permalink}">{NoteCountWithLabel}</a> </div>
  701.  
  702. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  703. {/block:IndexPage}
  704. {block:PermalinkPage}
  705. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  706.  
  707. {LinkCloseTag}
  708. {/block:PermalinkPage}
  709. {/block:Photo}
  710.  
  711. {block:Photoset}
  712. {block:IndexPage}
  713. <center>
  714.  
  715. <div class="perma">
  716. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> with <a href="{Permalink}">{NoteCountWithLabel}</a> </div>
  717.  
  718. {Photoset-250}</center>
  719. {/block:IndexPage}
  720. {block:PermalinkPage}
  721. <center>
  722. {Photoset-500}</center>
  723. {/block:PermalinkPage}
  724. {/block:Photoset}
  725.  
  726. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br>
  727. <span class="permalink">
  728. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
  729. </span>{/block:Quote}
  730.  
  731. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  732. <ul class="chat">
  733. {block:Lines}
  734. <li class="user_{UserNumber}">
  735. {block:Label}
  736. <span class="label">{Label}</span>
  737. {/block:Label}
  738.  
  739. {Line}
  740. </li>
  741. {/block:Lines}
  742. <span class="permalink">
  743. <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
  744. {/block:Chat}
  745.  
  746. {block:Audio}
  747. <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>
  748. {block:IndexPage}
  749. {/block:IndexPage}
  750. {/block:Audio}
  751.  
  752. {block:Video}
  753. {block:IndexPage}
  754. <center>
  755. <div class="perma">
  756. Posted on {dayofweek} &middot <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
  757. {Video-250}</center>
  758. {/block:IndexPage}
  759. {block:PermalinkPage}
  760. <center>
  761. {Video-400}</center>
  762. {/block:PermalinkPage}
  763. {block:Video}
  764.  
  765.  
  766. {block:PostNotes}<div align="middle">{caption}</div>
  767. <center>
  768.  
  769. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  770.  
  771. {block:HasTags}
  772. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  773. {block:RebloggedFrom}
  774. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  775. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  776.  
  777. {/block:RebloggedFrom}
  778. </center></span>
  779. <br>
  780. <div id="postnotes">{PostNotes}</div><br>
  781.  
  782. <center>{block:ContentSource}
  783. <br><a href="{SourceURL}">
  784. {lang:Source}:
  785. {block:SourceLogo}
  786. <img src="{BlackLogoURL}" width="{LogoWidth}"
  787. height="{LogoHeight}" alt="{SourceTitle}" />
  788. {/block:SourceLogo}
  789. {block:NoSourceLogo}
  790. {SourceLink}
  791. {/block:NoSourceLogo}
  792. </a>
  793. {/block:ContentSource}</center>
  794.  
  795. {/block:PostNotes}
  796. </div>
  797. {/block:Posts}
  798. </div></div>
  799.  
  800. {block:IndexPage}
  801. {block:Pagination}
  802. <div id="pagination">
  803. {block:NextPage}
  804. <a id="nextPage" href="{NextPage}"></a>
  805. {/block:NextPage}
  806. {block:PreviousPage}
  807. <a href="{PreviousPage}"></a>
  808. {/block:PreviousPage}
  809. </div>
  810. {/block:Pagination}
  811. {/block:IndexPage}
  812.  
  813. <BODY onselectstart="return false;" ondragstart="return false;">
  814. <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
  815. <a href="http://themesbymiki.tumblr.com/tagged/cute-themes">✿</a></div>
  816.  
  817. </body>
  818.  
  819. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement