Advertisement
extendedhate

"love me" theme

Feb 1st, 2013
1,048
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.44 KB | None | 0 0
  1. <!--
  2. "Love Me" theme by impulsinq
  3. Keep the credits or add it to your faq ok thanks
  4. -->
  5.  
  6. <html lang="en">
  7. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <script type="text/javascript"
  11. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  12. <script>
  13.  
  14. $(document).ready(function() {
  15.  
  16. //
  17.  
  18. $('a.poplight[href^=#]').click(function() {
  19.  
  20. var popID = $(this).attr('rel'); //Get Popup Name
  21.  
  22. var popURL = $(this).attr('href'); //Get Popup href to define size
  23.  
  24. var query= popURL.split('?');
  25.  
  26. var dim= query[1].split('&');
  27.  
  28. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  29.  
  30. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close">');
  31.  
  32. var popMargTop = ($('#' + popID).height() + 80) / 2;
  33.  
  34. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  35.  
  36. //Apply Margin to Popup
  37.  
  38. $('#' + popID).css({
  39.  
  40. 'margin-top' : -popMargTop,
  41.  
  42. 'margin-left' : -popMargLeft
  43.  
  44. });
  45.  
  46. $('body').append('<div id="fade"></div>');
  47.  
  48. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  49.  
  50. return false;
  51.  
  52. });
  53.  
  54. $('a.close, #fade').live('click', function() {
  55.  
  56. $('#fade , .popup_block').fadeOut(function() {
  57.  
  58. $('#fade, a.close').remove(); //fade them both out
  59.  
  60. });
  61.  
  62. return false;
  63.  
  64. });
  65.  
  66. });
  67.  
  68. </script>
  69. <script type="text/javascript">
  70. <!--
  71.  
  72. // Disable Right Click Script
  73.  
  74. function IE(e)
  75. {
  76. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  77. {
  78. return false;
  79. }
  80. }
  81. function NS(e)
  82. {
  83. if (document.layers || (document.getElementById && !document.all))
  84. {
  85. if (e.which == "2" || e.which == "3")
  86. {
  87. return false;
  88. }
  89. }
  90. }
  91. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  92.  
  93. //-->
  94. </script>
  95.  
  96.  
  97. <script type="text/javascript"
  98. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  99.  
  100. <!--DEFAULT VARIABLES-->
  101. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  102. <meta name="color:Background" content="#fff"/>
  103. <meta name="color:Hover" content="#fff"/>
  104. <meta name="color:Entry Background" content="#eee"/>
  105. <meta name="color:Entry Text" content="#aaa"/>
  106. <meta name="color:Description Text" content="#aaa"/>
  107. <meta name="color:Entry Links" content="#aaa"/>
  108. <meta name="color:Sidebar Links" content="#aaa"/>
  109. <meta name="color:Title" content="#000"/>
  110. <meta name="image:Background" content="1"/>
  111. <meta name="image:Sidebar" content="1"/>
  112. <meta name="text:Link One" content="">
  113. <meta name="text:Link One Title" content="">
  114. <meta name="text:Link Two" content="">
  115. <meta name="text:Link Two Title" content="">
  116. <meta name="text:Link Three" content="">
  117. <meta name="text:Link Three Title" content="">
  118. <meta name="text:Link Four" content="">
  119. <meta name="text:Link Four Title" content="">
  120. <meta name="text:Link Five" content="">
  121. <meta name="text:Link Five Title" content="">
  122. <meta name="color:Scrollbar" content="#000000"/>
  123. <meta name="color:Scrollbar Background" content="#fff"/>
  124. <meta name="if:White Follow Buttons" content="1" />
  125. <meta name="if:Sidebar Bows" content="1" />
  126.  
  127.  
  128.  
  129. <style type="text/css">
  130. #fade { /*--Transparent background layer--*/
  131. display: none; /*--hidden by default--*/
  132. background:#000;
  133. position: fixed; left: 0; top: 0;
  134. width: 100%; height: 100%;
  135. opacity: .80;
  136. z-index: 9999;
  137. }
  138.  
  139. .popup_block{
  140. display: none; /*--hidden by default--*/
  141. background:#fff;
  142. padding: 20px;
  143. font-family: helvetica;
  144. border: 10px solid #eee;
  145. float: left;
  146. font-size: 9px;
  147. line-height: 10px;
  148. position: fixed;
  149. top: 45%; left: 50%;
  150. z-index: 99999;
  151. /*--CSS3 Box Shadows--*/
  152. -webkit-box-shadow: 0px 0px 20px #000;
  153. -moz-box-shadow: 0px 0px 20px #000;
  154. box-shadow: 0px 0px 20px #000;
  155. }
  156. ::-webkit-scrollbar-thumb{
  157. background-color: {color:scrollbar};
  158. border: 2px solid {color:scrollbar background};
  159. height:auto;
  160. -moz-border-radius: 10px;
  161. border-radius: 10px;
  162. }
  163.  
  164.  
  165.  
  166. ::-webkit-scrollbar {
  167. height:auto;
  168. width:9px;
  169. background-color: #999999;
  170. border: 4px solid {color:scrollbar background};
  171. }
  172.  
  173.  
  174. {block:ifWhiteFollowButtons}iframe#tumblr_controls {-webkit-filter: invert(100%); right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.6;-webkit-transition: all 0.8s ease-out;-moz-
  175.  
  176. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  177.  
  178. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}{/block:ifWhiteFollowButtons}
  179.  
  180. {block:ifNOTWhiteFollowButtons}iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.6;-webkit-transition: all 0.8s ease-out;-moz-
  181.  
  182. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  183.  
  184. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}{/block:ifNOTWhiteFollowButtons}
  185.  
  186. p {
  187. margin:0px;
  188. margin-top:0px;
  189. }
  190.  
  191.  
  192. body {
  193. padding: 0px;
  194. margin: 0px;
  195. color:{color:Entry Text};
  196. font-family: helvetica;
  197. line-height:10px;
  198. font-size:9px;
  199. background-color: {color:Background};
  200. background-image:url({image:Background});
  201. background-attachment: fixed;
  202. background-repeat: repeat;
  203. background-size:100%;
  204. }
  205.  
  206.  
  207. a:link, a:active, a:visited{
  208. text-decoration: none;
  209. -webkit-transition: color 0.3s ease-out;
  210. -moz-transition: color 0.3s ease-out;
  211. transition: color 0.3s ease-out;
  212. color:{color:Entry Links};
  213. }
  214.  
  215. a:hover {
  216. text-decoration: none;
  217. font-style:;-webkit-transition: color 0.3s ease-out;
  218. -moz-transition: color 0.3s ease-out;
  219. transition: color 0.3s ease-out;
  220. color: {color:Hover};
  221. }
  222.  
  223.  
  224. .entry{
  225. font-family: helvetica;
  226. font-size:9px;
  227. text-align:left;
  228. z-index:9999;
  229. float:left;
  230. width: 210px;
  231. height: auto;
  232. {block:PermalinkPage}
  233. width: 538px;
  234. height: auto;
  235. margin-left:200px;
  236. {/block:PermalinkPage}
  237. line-height:12px;
  238. background-color:{color:entry background};
  239. margin:16px;
  240. overflow:hidden;
  241. padding: 28px;
  242. -webkit-transition: color 0.9s ease-out;
  243. -moz-transition: color 0.9s ease-out;
  244. }
  245.  
  246. .entry img{
  247. opacity: 0.8;
  248. -webkit-transition: all 0.5s ease-in-out;
  249. -moz-transition: all 0.5s ease-in-out;
  250. -o-transition: all 0.5s ease-in-out;
  251. }
  252.  
  253. .entry img:hover{
  254. opacity:1;
  255. -webkit-transition: all 0.5s ease-in-out;
  256. -moz-transition: all 0.5s ease-in-out;
  257. -o-transition: all 0.5s ease-in-out;
  258. }
  259. .permalink {
  260. display: block;
  261. border-top: 1px solid #ddd;
  262. padding: 3px;
  263. margin: 4px 8px 0px 8px;
  264. font-family: arma;
  265. font-size: 8px;
  266. color: #424242;
  267. line-height: 18px;
  268. text-align: center;
  269. text-decoration: none;
  270. -webkit-transition: color 0.9s ease-out;
  271. -moz-transition: color 0.9s ease-out;
  272. }
  273. .perms {
  274. color:black;
  275. font-size:8px;
  276. opacity: 0;
  277. -webkit-transition-duration: .75s;bottom:5px;
  278. width:210px;
  279. height:15px;
  280. padding-bottom:0px;
  281. padding-top:0px;
  282. position: absolute;
  283. margin-left:-5px;
  284. margin-top:20px;
  285. text-align:center;
  286. text-transform:uppercase;
  287. font-family:trebuchet ms;
  288. letter-spacing:1px;
  289. display:block;
  290. }
  291.  
  292. .entry:hover .perms {
  293. opacity:0.9;
  294. margin-left: 0px;
  295. z-index:999999;
  296. padding-top:0px;}
  297.  
  298. #banner {
  299.  
  300. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  301. repeat:repeat-x;
  302. left:0;
  303. width:230px;
  304. height:18px;
  305. position: fixed;
  306. opacity:0.7;
  307. margin-left: 220px;
  308. margin-top: 412px;
  309.  
  310. }
  311. #banner2 {
  312.  
  313. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  314. repeat:repeat-x;
  315. left:0;
  316. width:230px;
  317. height:18px;
  318. position: fixed;
  319. opacity:0.7;
  320. margin-left: 220px;
  321. margin-top: 165px;-webkit-transform: rotate(-180deg);
  322. -moz-transform: rotate(-180deg);
  323.  
  324. }
  325. #banner3 {
  326.  
  327. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  328. repeat:repeat-x;
  329. left:0;
  330. width:260px;
  331. height:18px;
  332. position: fixed;
  333. opacity:0.7;
  334. margin-left: 322px;
  335. margin-top: 288px;-webkit-transform: rotate(-90deg);
  336. -moz-transform: rotate(-90deg);
  337.  
  338. }
  339. #banner4 {
  340.  
  341. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  342. repeat:repeat-x;
  343. left:0;
  344. width:260px;
  345. height:18px;
  346. position: fixed;
  347. opacity:0.7;
  348. margin-left: 84px;
  349. margin-top: 290px;-webkit-transform: rotate(90deg);
  350. -moz-transform: rotate(90deg);
  351.  
  352. }
  353. .permalinktext {
  354. display: block;
  355. padding: 4px;
  356. margin: 2px 2px 0px 0px;
  357. font-family: helvetica;
  358. letter-spacing: 0px;
  359. font-size: 9px;
  360. color: #424242;
  361. background: #f7f7f7;
  362. line-height: 10px;
  363. text-align: right;
  364. text-decoration: none;
  365. -webkit-transition: color 0.5s ease-out;
  366. -moz-transition: color 0.5s ease-out;
  367. }
  368.  
  369. a.links {
  370. font-family: ronda;
  371. font-size: 8px;
  372. line-height: 8px;
  373. text-transform: normal;
  374. letter-spacing:0px;
  375. display:block;
  376. padding: 0px;
  377. margin-bottom: 0px;
  378. }
  379.  
  380. a.links:hover {
  381. font-style: none;
  382. text-decoration: none;
  383. letter-spacing:10px;
  384. }
  385. div#titlebar{
  386. position: fixed !important;
  387. margin-top:135px;
  388. margin-left:99px;
  389. color:{color:blogtitle};
  390. text-shadow: 2px 2px 0px #fff;
  391. font-family: bebas;
  392. font-size: 60px;
  393. line-height:85px;
  394. letter-spacing:2px;
  395. width:450px;
  396. height:60px;
  397. z-index:9999;
  398. opacity:.8;
  399. background-color: transparent;
  400. }@font-face {
  401. font-family: "prop";
  402. src: url('http://static.tumblr.com/2k9mf5a/bPomezign/prophecy_script.ttf');
  403. }
  404. div#under{
  405. position: fixed !important;
  406. margin-top:145px;
  407. margin-left:100px;
  408. color:{color:blogtitle2};
  409. text-shadow: 2px 2px 0px #fff ;
  410. font-family: yolo;
  411. font-size: 70px;
  412. line-height:85px;
  413. letter-spacing:2px;
  414. width:450px;
  415. height:60px;
  416. z-index:9999;
  417. opacity:.8;
  418. background-color: transparent;
  419. }
  420.  
  421. .caption { margin-left:5px; line-height:0px; }
  422. .blockquote, blockquote { text-align:left; letter-spacing:0px; font-family:helvetica; padding-left:5px; border-left:3px solid #cccccc; }
  423. blockquote small, blockquote { font-size:9px; }
  424.  
  425. #cunt{width:250px; height:auto;}
  426. {block:PermalinkPage}
  427. width:410px;
  428. {/block:PermalinkPage}
  429. }
  430.  
  431. #center{
  432. padding-top:3px;
  433. padding-bottom:3px;
  434. position:fixed !important;
  435. width:250px;
  436. height:207px;
  437. background-color:#fff;
  438. {block:PermalinkPage}
  439. width:410px;
  440. height:207px;
  441. {/block:PermalinkPage}
  442. }
  443.  
  444. #posts{
  445. opacity: 1;
  446. float:center;
  447. {block:indexpage}
  448. width:700px;
  449. {/block:indexpage}
  450. {block:permalinkpage}
  451. width:520px;
  452. {/block:permalinkpage}
  453. margin-left: 490px;
  454. margin-top:0px;
  455. transition: all 0.5s ease-out;
  456. -o-transition-transition: all 0.5s ease-out;
  457. -webkit-transition: all 0.5s ease-out;
  458. -moz-transition: all 0.5s ease-out;
  459. }
  460. #sidebar {
  461. position:fixed !important;
  462. opacity: 1;
  463. width: 169px;
  464. height: 178px;
  465. margin-top:200px;
  466. margin-left: 240px;
  467. color: #777;
  468. text-align: center;
  469. margin-bottom: 0px;
  470. font-family: consolas;
  471. line-height: 11px;
  472. padding:8px;
  473. background: #f7f7f7;
  474. font-size: 10px;
  475. text-transform: normal;
  476. transition: all 0.9s ease-out;
  477. -o-transition-transition: all 0.5s ease-out;
  478. -webkit-transition: all 0.5s ease-out;
  479. -moz-transition: all 0.5s ease-out;
  480. }
  481. div#links{
  482. position:absolute;
  483. opacity:1;
  484. font-size: 8px;
  485. line-height:20px;
  486. text-align: center;
  487. text-transform:uppercase;
  488. width: 69px;
  489. font-family:consolas;
  490. border-radius: 60px;
  491. height: 23px;
  492. color:#aaa;
  493. padding-top: 0px;
  494. background-color: #ddd;
  495. margin-top:-29px;
  496. margin-left:53px;
  497. padding-left: 1px;
  498. padding-right: 1px
  499. transition: all 0.9s ease-out;
  500. -o-transition-transition: all 0.5s ease-out;
  501. -webkit-transition: all 0.5s ease-out;
  502. -moz-transition: all 0.5s ease-out;
  503. }
  504.  
  505. #desc a{
  506. color:{color:sidebar links};
  507. -webkit-transition: color 0.3s ease-out;
  508. -moz-transition: color 0.3s ease-out;
  509. transition: color 0.3s ease-out;
  510. }
  511.  
  512. #desc a:hover{
  513. -webkit-transition: color 0.3s ease-out;
  514. -moz-transition: color 0.3s ease-out;
  515. transition: color 0.3s ease-out;
  516. color:{color:Hover};
  517. }
  518.  
  519. div#desc{
  520. position: fixed !important;
  521. opacity:1;
  522. font-size: 8px;
  523. line-height:12px;
  524. text-align: center;
  525. text-transform:uppercase;
  526. width:160px;
  527. font-family:consolas;
  528. font-size: 8px;
  529. height: 35px;
  530. color:{color:description text};
  531. padding-top: 0px;
  532. background-color: #fff;
  533. margin-top:133px;
  534. margin-left:0px;
  535. padding:5px;
  536. transition: all 0.9s ease-out;
  537. -o-transition-transition: all 0.5s ease-out;
  538. -webkit-transition: all 0.5s ease-out;
  539. -moz-transition: all 0.5s ease-out;
  540. }
  541. #desc:hover
  542. opacity:1;
  543. transition: all 0.9s ease-out;
  544. -o-transition-transition: all 0.5s ease-out;
  545. -webkit-transition: all 0.5s ease-out;
  546. -moz-transition: all 0.5s ease-out;
  547. }
  548. div#under{
  549. }
  550. div#side2{
  551. position:fixed !important;
  552. width:220px;
  553. height:228px;
  554. margin-top:183px;
  555. margin-left:223px;
  556. background: #eee;
  557. border-radius: 0px;
  558. transition: all 0.9s ease-out;
  559. -o-transition-transition: all 0.5s ease-out;
  560. -webkit-transition: all 0.5s ease-out;
  561. -moz-transition: all 0.5s ease-out;
  562. }
  563. askk {
  564. font-family: prop;
  565. color: {color:Title};
  566. font-size:20px;
  567. z-index:1;
  568. }
  569. cutie {
  570. font-family: yolo;
  571. color: #c0d4eb;
  572. font-size:80px;
  573. z-index:1;
  574. }
  575. .title{
  576. font-family: prop;
  577. font-size: 20px;
  578. line-height: 20px;
  579. color:{color:Title};
  580. letter-spacing: 0px;
  581. font-weight: normal;
  582. padding:0px 0px 0px 0px;
  583. }
  584.  
  585. @font-face {
  586. font-family: "prop";
  587. src: url('http://static.tumblr.com/2k9mf5a/bPomezign/prophecy_script.ttf');
  588. }
  589.  
  590. .title{
  591. font-family: prop;
  592. font-size: 20px;
  593. line-height: 20px;
  594. color:{color:Title};
  595. font-weight: normal;
  596. text-transform: none;
  597. }
  598.  
  599. .blogtitle{
  600. font-family: prop;
  601. font-size: 28px;
  602. line-height: 20px;
  603. color:{color:Title};
  604. z-index: 1;
  605. text-transform: none;
  606. font-weight: normal;
  607. }
  608. @font-face { font-family: "bold"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  609. @font-face { font-family: "demo"; src: url('http://static.tumblr.com/jdjsstr/Eq8m819c1/neou-thin_1_.ttf'); }
  610. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  611. @font-face {font-family:"Bree"; src:url('http://static.tumblr.com/9wzbixa/YBvm26pgu/bree.ttf');}
  612. @font-face { font-family: "sb"; src: url('http://static.tumblr.com/yo59jgt/m4om1rino/signerica_fat.ttf'); }
  613. @font-face { font-family: "lala"; src: url('http://static.tumblr.com/vpzhdvv/6d7m90v7t/111.woff');}
  614. @font-face { font-family: "neverletgo"; src: url('http://static.tumblr.com/q54tzar/o02m2jt6c/neverletgo_3_.ttf'); }
  615. @font-face { font-family: "icons"; src: url('http://static.tumblr.com/8hrjcus/Q3fmg7rhn/breezi_font-webfont.ttf'); }
  616.  
  617. .permalink{
  618. text-transform: normal;
  619. display: block;
  620. background: {color:Permatext Background};
  621. padding: 3px;
  622. margin-top: 4px;
  623. text-align: right;
  624. text-decoration: none;
  625. }
  626.  
  627. #infscr-loading{
  628. bottom: -70px;
  629. position: absolute;
  630. left: 50%;
  631. margin-left:-8px;
  632. width:16px;
  633. height:11px;
  634. overflow:hidden;
  635. margin-bottom: 50px;
  636. }
  637.  
  638. #postnotes{
  639. text-align: justify;}
  640.  
  641. #postnotes blockquote{
  642. border: 0px;}
  643.  
  644. blockquote{
  645. padding:0px 0px 0px 5px;
  646. margin:0px 0px 0px 10px;
  647. border-left: 1px dotted #ddd;
  648. }
  649.  
  650. blockquote p, ul{
  651. margin:0px;
  652. padding:0px;
  653. }
  654.  
  655. a img{border: 0px;}
  656.  
  657.  
  658. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  659.  
  660. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  661. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  662.  
  663. .notes img{width:10px; position:relative; top:3px;}
  664. <--ses-->
  665. small{font-size: 90%;}
  666.  
  667. #postnotes{
  668. text-align: left;}
  669.  
  670. #postnotes blockquote{
  671. border: 0px;}
  672.  
  673.  
  674. blockquote{
  675. padding:0px 0px 2px 3px;
  676. margin:0px 0px 2px 1px;
  677. }
  678. ul, ol, li{
  679. list-style:none;
  680. margin:0px;
  681. padding:0px;
  682. }
  683.  
  684. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  685. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:Title};
  686. }
  687.  
  688. {CustomCSS}
  689.  
  690. #album
  691. {
  692. {block:IndexPage}
  693. width:10px;
  694. height:15px;
  695. margin:10px;
  696. {/block:IndexPage}
  697. float:left;
  698. {block:PermalinkPage}
  699. width:500px;
  700. height:500px;
  701. {/block:PermalinkPage}
  702.  
  703. }
  704.  
  705.  
  706. #infos
  707. {float:right;
  708. margin-top:10px;
  709. background-color: #e4e4e4;
  710. padding:5px;
  711. width:105px;
  712. }
  713.  
  714. #player
  715. {float:right;
  716. {block:IndexPage}
  717. width:70px;
  718. margin-top:10px;
  719. padding-left:45px;
  720. {/block:IndexPage}
  721. padding-top:10px;
  722. padding-bottom:10px;
  723. height:20px;
  724. background-color:#e4e4e4;
  725. overflow:hidden;
  726. {block:PermalinkPage}
  727. margin-top:5px;
  728. width:265px;
  729. padding-left:335px;
  730. {/block:PermalinkPage}
  731. }
  732. </style>
  733.  
  734. {block:IndexPage}
  735. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  736. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  737.  
  738. <script type="text/javascript">
  739. $(window).load(function(){
  740. var $wall = $('#posts');
  741. $wall.imagesLoaded(function(){
  742. $wall.masonry({
  743. itemSelector: '.entry, .entry_photo',
  744. isAnimated : false
  745. });
  746. });
  747.  
  748. $wall.infinitescroll({
  749. navSelector : '#pagination',
  750. nextSelector : '#pagination a',
  751. itemSelector : '.entry, .entry_photo',
  752. bufferPx : 2000,
  753. debug : false,
  754. errorCallback: function() {
  755. $('#infscr-loading').fadeOut('normal');
  756. }},
  757. function( newElements ) {
  758. var $newElems = $( newElements );
  759. $newElems.hide();
  760. $newElems.imagesLoaded(function(){
  761. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  762. });
  763. }); $('#posts').show(500);
  764. });
  765. </script>
  766.  
  767.  
  768. {/block:IndexPage}
  769.  
  770.  
  771. <title>{title}</title>
  772.  
  773. <link rel="shortcut icon" href="{favicon}" />
  774. <meta name="viewport" content="width=820" />
  775. </head>
  776.  
  777. <body>
  778. <BODY onselectstart="return false;" ondragstart="return false;">
  779.  
  780. <div id="center">
  781. <div id="content">
  782. {block:ifsidebarbows}
  783. <div id="banner2"></div><div id="banner3"></div><div id="banner4"></div>
  784. <div id="banner"></div>
  785. {/block:ifsidebarbows}
  786. <div id="side2"></div>
  787.  
  788. <div id="sidebar">
  789. <div id="desc">
  790. {description}<br>
  791. <a href="{text:link one}">{text:link one title}</a> &middot
  792. <a href="{text:link two}">{text:link two title}</a> &middot
  793. <a href="{text:link three}">{text:link three title}</a> &middot
  794. <a href="{text:link four}">{text:link four title}</a> &middot
  795. <a href="{text:link five}">{text:link five title}</a>
  796. </div>
  797.  
  798. <a href="/"><img src="{image:sidebar}" style="width:140px;height: 95px; padding:15px; background: white;"></a>
  799. </div>
  800.  
  801. </div>
  802. <div class="left">
  803. <div id="posts">
  804. {block:Posts}
  805. <div class="entry">
  806.  
  807. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><div class="permalinktext"> <a href="{permalink}">{NoteCountwithlabel}</a> <font color="#aaa">&middot</font> <a href="{permalink}">{timeago}</a> </div>
  808. {/block:Text}
  809.  
  810. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <div class="permalinktext"> <a href="{permalink}">{NoteCountwithlabel}</a> <font color="#aaa">&middot</font> <a href="{permalink}">{timeago}</a> </div>{block:Link}
  811.  
  812. {block:Photo}
  813. {block:IndexPage}
  814. <div class="perms">
  815. {shortmonth} {dayofmonth}{DayOfMonthSuffix} with <a href="{permalink}">{NoteCountwithLabel}</a> / <a href="{ReblogURL}" target="_blank">↻</a>
  816. </div>
  817. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  818. {/block:IndexPage}
  819. {block:PermalinkPage}
  820. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  821.  
  822. {LinkCloseTag}
  823. {/block:PermalinkPage}
  824. {/block:Photo}
  825.  
  826. {block:Answer}
  827. <img src="{AskerPortraitURL-40}" width="40" align="left" style="margin-right:3px; border-radius: 0px; border: 4px double #ddd; padding: 3px; background: white;"/>
  828. <div style="margin-top:0px; margin-bottom:0px; height:44px; padding: 5px; background-color:#eeeeee; overflow: auto;">
  829.  
  830. <askk>{Asker}</askk>: {Question}</div>
  831. <div style="margin-top:2px; margin-bottom:4px; background: transparent;">{Answer}</div>
  832. {/block:Answer}
  833.  
  834. {block:Photoset}
  835. {block:IndexPage}
  836. <center>
  837. <div class="perms">
  838. {shortmonth} {dayofmonth}{DayOfMonthSuffix} with <a href="{permalink}">{NoteCountwithLabel}</a> / <a href="{ReblogURL}" target="_blank">↻</a>
  839. </div>
  840.  
  841. {Photoset-200}</center>
  842. {/block:IndexPage}
  843. {block:PermalinkPage}
  844. <center>
  845. {Photoset-500}</center>
  846. {/block:PermalinkPage}
  847. {/block:Photoset}
  848.  
  849. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><div class="permalinktext"> <a href="{permalink}">{NoteCountwithlabel}</a> <font color="#aaa">&middot</font> <a href="{permalink}">{timeago}</a> </div>{/block:Quote}
  850.  
  851. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  852. <ul class="chat">
  853. {block:Lines}
  854. <li class="user_{UserNumber}">
  855. {block:Label}
  856. <span class="label">{Label}</span>
  857. {/block:Label}
  858.  
  859. {Line}
  860. </li>
  861. {/block:Lines}
  862. <div class="permalinktext"> <a href="{permalink}">{NoteCountwithlabel}</a> <font color="#aaa">&middot</font> <a href="{permalink}">{timeago}</a> </div>
  863. {/block:Chat}
  864.  
  865. {block:Video}
  866. {block:IndexPage}
  867. <center>
  868. <div class="perms">
  869. {dayofweek} with <a href="{permalink}">{NoteCountwithLabel}</a> / <a href="{ReblogURL}" target="_blank">↻</a>
  870. </div>
  871. {Video-250}</center>
  872. {/block:IndexPage}
  873. {block:PermalinkPage}
  874. <center>
  875. {Video-400}</center>
  876. {/block:PermalinkPage}
  877. {block:Video}
  878.  
  879. {block:Audio}
  880. {block:IndexPage}
  881. <div id="album">{block:AlbumArt}<img width="80px" src="{AlbumArtURL}"/>{/block:AlbumArt}</div>
  882. <div id="player"><div style="margin-top:-3px;">{AudioPlayerGrey}</div></div>
  883. <div id="infos">
  884. {block:TrackName}{TrackName}{/block:TrackName}
  885. {block:Artist}by {Artist}{/block:Artist}
  886. </div>
  887.  
  888. <br><div class="perms">
  889. {shortmonth} {dayofmonth}{DayOfMonthSuffix} with <a href="{permalink}">{NoteCountwithLabel}</a> / <a href="{ReblogURL}" target="_blank">↻</a>
  890. </div>
  891. {/block:IndexPage}
  892. {block:PermalinkPage}
  893. <div id="album">{block:AlbumArt}<img width="500px" src="{AlbumArtURL}"/>{/block:AlbumArt}</div>
  894. <div id="player"><div style="margin-top:-3px;margin-bottom:20px;">{AudioPlayerGrey}</div></div>
  895.  
  896. {/block:PermalinkPage}
  897. {/block:Audio}
  898.  
  899. {block:PostNotes}<div align="middle">{caption}</div>
  900. <center>
  901.  
  902. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  903.  
  904. {block:HasTags}
  905. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  906. {block:RebloggedFrom}
  907. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  908. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  909.  
  910. {/block:RebloggedFrom}
  911. </center></span>
  912. <br>
  913. <div id="postnotes">{PostNotes}</div><br>
  914.  
  915. <center>{block:ContentSource}
  916. <br><a href="{SourceURL}">
  917. {lang:Source}:
  918. {block:SourceLogo}
  919. <img src="{BlackLogoURL}" width="{LogoWidth}"
  920. height="{LogoHeight}" alt="{SourceTitle}" />
  921. {/block:SourceLogo}
  922. {block:NoSourceLogo}
  923. {SourceLink}
  924. {/block:NoSourceLogo}
  925. </a>
  926. {/block:ContentSource}</center>
  927.  
  928. {/block:PostNotes}
  929. </div>
  930. {/block:Posts}
  931. </div></div>
  932.  
  933. {block:IndexPage}
  934. {block:Pagination}
  935. <div id="pagination">
  936. {block:NextPage}
  937. <a id="nextPage" href="{NextPage}"></a>
  938. {/block:NextPage}
  939. {block:PreviousPage}
  940. <a href="{PreviousPage}"></a>
  941. {/block:PreviousPage}
  942. </div>
  943. {/block:Pagination}
  944. {/block:IndexPage}
  945. </body><div style="position: fixed; right: 0px; bottom: 5px; border-bottom: 1px solid #ddd; border-left: 1px solid #ddd; border-top: 1px solid #ddd; background: white; padding: 3px; border-top-left-radius: 10px; border-bottom-left-radius: 10px;"><a href="http://impulsinq.tumblr.com/"> &copy impulsinq</a></div>
  946. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement