mikit20

Lace on shoulder.

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