BabeJeSuisParfait

personalblog48(h4te)

Apr 29th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.36 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3.  
  4. <!--
  5. Theme by h4te
  6. http://h4te.tumblr.com
  7. Please don't remove the credit.
  8. -->
  9.  
  10.  
  11. <title>{title}</title>
  12.  
  13.  
  14. <meta name="color:Background" content="#b1b0b0"/>
  15. <meta name="color:Text" content="#000"/>
  16. <meta name="color:Title" content="#000"/>
  17. <meta name="color:Box" content="#fff"/>
  18. <meta name="color:Link" content="#000"/>
  19. <meta name="color:Hover" content="#000"/>
  20. <meta name="image:Background" content=""/>
  21. <meta name="image:Sidebar" content=""/>
  22. <meta name="if:Show Photo" content="0"/>
  23. <meta name="if:Show Title" content="1"/>
  24. <meta name="if:Show Note Count" content="1"/>
  25. <meta name="if:Show Captions" content="1"/>
  26. <meta name="if:Show Notes" content="1"/>
  27. <meta name="font:Title" content="Helvetica"/>
  28. <meta name="font:Blog Title" content="courier new"/>
  29. <meta name="font:Body" content="Helvetica"/>
  30. <meta name="text:Title font size" content="14px"/>
  31. <meta name="if:Endless Scroll" content="1"/>
  32. <meta name="if:Tiny Cursor" content="0"/>
  33. <meta name="if:Rainbow Links" content="0"/>
  34. <meta name="if:Shadow Links" content="0"/>
  35. <meta name="if:Sidebar Shadow" content="1"/>
  36. <meta name="if:Sidebar Rounded" content="1"/>
  37. <meta name="if:Notes On Homepage" content="1"/>
  38. <meta name="if:Posts Shadow" content="1"/>
  39. <meta name="if:Dotted Border Sidebar" content="0"/>
  40. <meta name="if:Solid Border Sidebar" content="1"/>
  41. <meta name="if:Dotted Border Posts" content="0"/>
  42. <meta name="if:Solid Border Posts" content="0"/>
  43. <meta name="if:Ask Link" content="1"/>
  44. <meta name="if:Archive Link" content="1"/>
  45. <meta name="text:Link One" content="" />
  46. <meta name="text:Link One Title" content="" />
  47. <meta name="text:Link Two" content="" />
  48. <meta name="text:Link Two Title" content="" />
  49. <meta name="text:Link Three" content="" />
  50. <meta name="text:Link Three Title" content="" />
  51. <meta name="text:Link Four" content="" />
  52. <meta name="text:link Four Title" content="" />
  53. <meta name="text:link Five" content="" />
  54. <meta name="text:link Five Title" content="" />
  55.  
  56.  
  57. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  58. <script src="http://static.tumblr.com/me5sfsd/1YFl414t0/jquery142.js"></script>
  59.  
  60. {block:ifendlessscroll}<script type="text/javascript" src="http://static.tumblr.com/ubmlcww/vRrls53pk/scroll_to_top.txt"></script>{/block:ifendlessscroll}
  61.  
  62.  
  63. <style type="text/css">
  64.  
  65. {block:iftinycursor}
  66. body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}
  67. {/block:iftinycursor}
  68.  
  69. {block:ifrainbowlinks}<script type='text/javascript'>
  70.  
  71. //<![CDATA[
  72.  
  73. var rate = 50;
  74.  
  75. if (document.getElementById)
  76.  
  77. window.onerror=new Function("return true")
  78.  
  79. var objActive; // The object which event occured in
  80.  
  81. var act = 0; // Flag during the action
  82.  
  83. var elmH = 0; // Hue
  84.  
  85. var elmS = 128; // Saturation
  86.  
  87. var elmV = 255; // Value
  88.  
  89. var clrOrg; // A color before the change
  90.  
  91. var TimerID; // Timer ID
  92.  
  93. if (document.all) {
  94.  
  95. document.onmouseover = doRainbowAnchor;
  96.  
  97. document.onmouseout = stopRainbowAnchor;
  98.  
  99. }
  100.  
  101. else if (document.getElementById) {
  102.  
  103. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  104.  
  105. document.onmouseover = Mozilla_doRainbowAnchor;
  106.  
  107. document.onmouseout = Mozilla_stopRainbowAnchor;
  108.  
  109. }
  110.  
  111. function doRainbow(obj)
  112.  
  113. {
  114.  
  115. if (act == 0) {
  116.  
  117. act = 1;
  118.  
  119. if (obj)
  120.  
  121. objActive = obj;
  122.  
  123. else
  124.  
  125. objActive = event.srcElement;
  126.  
  127. clrOrg = objActive.style.color;
  128.  
  129. TimerID = setInterval("ChangeColor()",100);
  130.  
  131. }
  132.  
  133. }
  134.  
  135.  
  136.  
  137. function stopRainbow()
  138.  
  139. {
  140.  
  141. if (act) {
  142.  
  143. objActive.style.color = clrOrg;
  144.  
  145. clearInterval(TimerID);
  146.  
  147. act = 0;
  148.  
  149. }
  150.  
  151. }
  152.  
  153.  
  154.  
  155. function doRainbowAnchor()
  156.  
  157. {
  158.  
  159. if (act == 0) {
  160.  
  161. var obj = event.srcElement;
  162.  
  163. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  164.  
  165. obj = obj.parentElement;
  166.  
  167. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  168.  
  169. break;
  170.  
  171. }
  172.  
  173. if (obj.tagName == 'A' && obj.href != '') {
  174.  
  175. objActive = obj;
  176.  
  177. act = 1;
  178.  
  179. clrOrg = objActive.style.color;
  180.  
  181. TimerID = setInterval("ChangeColor()",100);
  182.  
  183. }
  184.  
  185. }
  186.  
  187. }
  188.  
  189.  
  190.  
  191. function stopRainbowAnchor()
  192.  
  193. {
  194.  
  195. if (act) {
  196.  
  197. if (objActive.tagName == 'A') {
  198.  
  199. objActive.style.color = clrOrg;
  200.  
  201. clearInterval(TimerID);
  202.  
  203. act = 0;
  204.  
  205. }
  206.  
  207. }
  208.  
  209. }
  210.  
  211.  
  212.  
  213. function Mozilla_doRainbowAnchor(e)
  214.  
  215. {
  216.  
  217. if (act == 0) {
  218.  
  219. obj = e.target;
  220.  
  221. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  222.  
  223. obj = obj.parentNode;
  224.  
  225. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  226.  
  227. break;
  228.  
  229. }
  230.  
  231. if (obj.nodeName == 'A' && obj.href != '') {
  232.  
  233. objActive = obj;
  234.  
  235. act = 1;
  236.  
  237. clrOrg = obj.style.color;
  238.  
  239. TimerID = setInterval("ChangeColor()",100);
  240.  
  241. }
  242.  
  243. }
  244.  
  245. }
  246.  
  247.  
  248.  
  249. function Mozilla_stopRainbowAnchor(e)
  250.  
  251. {
  252.  
  253. if (act) {
  254.  
  255. if (objActive.nodeName == 'A') {
  256.  
  257. objActive.style.color = clrOrg;
  258.  
  259. clearInterval(TimerID);
  260.  
  261. act = 0;
  262.  
  263. }
  264.  
  265. }
  266.  
  267. }
  268.  
  269.  
  270.  
  271. function ChangeColor()
  272.  
  273. {
  274.  
  275. objActive.style.color = makeColor();
  276.  
  277. }
  278.  
  279.  
  280.  
  281. function makeColor()
  282.  
  283. {
  284.  
  285. // Don't you think Color Gamut to look like Rainbow?
  286.  
  287. // HSVtoRGB
  288.  
  289. if (elmS == 0) {
  290.  
  291. elmR = elmV; elmG = elmV; elmB = elmV;
  292.  
  293. }
  294.  
  295. else {
  296.  
  297. t1 = elmV;
  298.  
  299. t2 = (255 - elmS) * elmV / 255;
  300.  
  301. t3 = elmH % 60;
  302.  
  303. t3 = (t1 - t2) * t3 / 60;
  304.  
  305. if (elmH < 60) {
  306.  
  307. elmR = t1; elmB = t2; elmG = t2 + t3;
  308.  
  309. }
  310.  
  311. else if (elmH < 120) {
  312.  
  313. elmG = t1; elmB = t2; elmR = t1 - t3;
  314.  
  315. }
  316.  
  317. else if (elmH < 180) {
  318.  
  319. elmG = t1; elmR = t2; elmB = t2 + t3;
  320.  
  321. }
  322.  
  323. else if (elmH < 240) {
  324.  
  325. elmB = t1; elmR = t2; elmG = t1 - t3;
  326.  
  327. }
  328.  
  329. else if (elmH < 300) {
  330.  
  331. elmB = t1; elmG = t2; elmR = t2 + t3;
  332.  
  333. }
  334.  
  335. else if (elmH < 360) {
  336.  
  337. elmR = t1; elmG = t2; elmB = t1 - t3;
  338.  
  339. }
  340.  
  341. else {
  342.  
  343. elmR = 0; elmG = 0; elmB = 0;
  344.  
  345. }
  346.  
  347. }
  348.  
  349. elmR = Math.floor(elmR).toString(16);
  350.  
  351. elmG = Math.floor(elmG).toString(16);
  352.  
  353. elmB = Math.floor(elmB).toString(16);
  354.  
  355. if (elmR.length == 1) elmR = "0" + elmR;
  356.  
  357. if (elmG.length == 1) elmG = "0" + elmG;
  358.  
  359. if (elmB.length == 1) elmB = "0" + elmB
  360.  
  361. elmH = elmH + rate;
  362.  
  363. if (elmH >= 360)
  364.  
  365. elmH = 0;
  366.  
  367. return '#' + elmR + elmG + elmB;
  368.  
  369. }
  370.  
  371. //]]>
  372.  
  373. </script>{/block:ifrainbowlinks}
  374.  
  375. body{
  376. margin:0px;
  377. background-color: {color:Background};
  378. background-image:url({image:Background});
  379. background-attachment: fixed;
  380. background-repeat: repeat;
  381. font-size: 10px;
  382. line-height:7px;
  383. font-family:{font:Body};
  384. color:{color:Text};
  385. margin-top: 3%;
  386. margin-left: 110px;
  387. }
  388.  
  389. a:link, a:active, a:visited
  390. { color: {color:Link};
  391. text-decoration: none;
  392. -webkit-transition:
  393. color .0s ease-out;
  394. -moz-transition: color 0.2s ease-out;
  395. transition: color .0s ease-out;}
  396.  
  397. a:hover{
  398. color:{color:Hover};
  399. text-decoration: none;
  400. }
  401.  
  402. #base{width:470px; height:auto;}
  403. {block:PermalinkPage}
  404. width:470px;
  405. margin: 0px 0px 0px 22%;
  406. {/block:PermalinkPage}
  407. }
  408.  
  409. #picture{
  410. padding-top:3px;
  411. padding-bottom:3px;
  412. position:fixed !important;
  413. width:246px;
  414. height:207px;
  415. background-color:{color:box};
  416. left:4%;
  417. margin-top:0px;
  418. padding-left:3px;
  419. padding-right:3px;
  420. padding-bottom:2px;
  421. -moz-border-radius: 5px;
  422. border-radius: 5px;
  423. }
  424.  
  425. #side{
  426. margin-top:4%;
  427. padding:4px;
  428. {block:ifnotinfinitescroll}padding-bottom: 8px;{block:ifnotinfinitescroll}
  429. position:fixed !important;
  430. width:200px;
  431. margin-left:-8%;
  432. line-height:auto;
  433. {block:ifsidebarshadow}box-shadow: 0px 5px 15px rgba(0,0,0,0.6);{/block:ifsidebarshadow}
  434. {block:ifsidebarrounded}-moz-border-radius: 5px;
  435. border-radius: 5px;{/block:ifsidebarrounded}
  436. background-color:{color:box};
  437. {block:ifsolidbordersidebar}border: 1px solid black;{/block:ifsolidbordersidebar}
  438. {block:ifdottedbordersidebar}border: 1px dotted black;{/block:ifdottedbordersidebar}
  439. }
  440.  
  441. iframe {
  442. position: fixed
  443. top: yy%;
  444. left: xx%;
  445. }
  446.  
  447. #center{
  448. margin:auto;
  449. position:relative;
  450. width:1180px;
  451. overflow:auto;
  452. overflow-y:hidden;
  453. }
  454.  
  455. #posts{
  456. float:right;
  457. width:1040px;
  458. margin-left:;}
  459.  
  460. #entry{
  461. z-index:1000;
  462. float: left;
  463. width: 470px;
  464. height: auto;
  465. line-height:8px;
  466. background-color:{color:box};
  467. padding:0px;
  468. margin-right:8px;
  469. overflow:hidden;
  470. margin-bottom:10px;
  471. {block:ifpostsshadow}-moz-box-shadow: 5px 5px 6px rgba(0,0,0,0.6);
  472. -webkit-box-shadow: 5px 5px 6px rgba(0,0,0,0.6);
  473. box-shadow: 5px 5px 6px rgba(0,0,0,0.6);{/block:ifpostsshadow}
  474. {block:ifsolidborderposts}border: 1px solid black;{/block:ifsolidborderposts}
  475. {block:ifdottedborderposts}border: 1px dotted black;{/block:ifdottedborderposts}
  476. }
  477.  
  478. #entry .perma a{
  479. color: {color:Links} }
  480.  
  481. #entry .perma{
  482. width:470px;
  483. position: absolute;
  484. font-family: cambria;
  485. font-size: 10px;
  486. line-height: 15px;
  487. text-align: center;
  488. overflow:hidden;
  489. opacity: 0.0;
  490. background-color:#fff;
  491. }
  492.  
  493. {block:ifnotesonhomepage}#entry:hover .perma{
  494. overflow:visible;
  495. -webkit-transition: opacity 0.2s linear; opacity: 0.8;
  496. -webkit-transition: all 0.2s linear;
  497. -moz-transition: all 0.2s linear;
  498. transition: all 0.2s linear;
  499. }{/block:ifnotesonhomepage}
  500.  
  501.  
  502. #pagination{
  503. font-size: 10px;}
  504.  
  505. #permapage{
  506. padding-top:7px;
  507. font-family: century gothic;
  508. font-size: 11px;
  509. line-height: 11px;
  510. text-align: center;
  511. padding-bottom:5px;
  512. z-index:100;}
  513.  
  514. #notes{
  515. {block:permalinkpage}
  516. background-color: {color:box};
  517. display:block;
  518. width:470px;
  519. list-style:none;
  520. float: left;
  521. padding:2px;
  522. overflow:hidden;
  523. z-index:1;
  524. margin-top: -5px;
  525. text-align: left;{/block:permalinkpage}
  526. }
  527.  
  528. ol.notes img.avatar { display: true; padding:2px 0 0 2px; border:0px;}
  529.  
  530. .title{
  531. font-family: {font:Title};
  532. font-size: {text:Title font size};
  533. line-height: {text:Title font size};
  534. color: {color:Title};
  535. font-weight: normal;
  536. }
  537.  
  538. .blogtitle{
  539. {block:ifnotshowphoto}padding-bottom: 10px;{/block:ifnotshowphoto}
  540. {block:ifshowphoto}padding-bottom:5px;{/block:ifshowphoto}
  541. font-family:georgia;
  542. text-align:center;
  543. color: {color:title};
  544. line-height:18px;
  545. font-size:18px;
  546. }
  547.  
  548. .video embed, .post div.video object {
  549. width:470px !important;
  550. height:auto !important;
  551. }
  552.  
  553. blockquote{
  554. padding:0px 0px 2px 3px;
  555. margin:0px 0px 2px 1px;
  556. border-left: 1px dashed {color:Text};
  557. }
  558.  
  559. a img{border: 0px;}
  560.  
  561. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  562.  
  563. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  564. .user_7 .label, .user_8 .label, .user_9 .label {color:#555;}
  565.  
  566. .notes img{width:10px; position:relative; top:3px;}
  567.  
  568. a.links {
  569. font-family: Arial;
  570. font-size: 10px;
  571. line-height: 9px;
  572. text-transform: normal;
  573. letter-spacing:0px;
  574. display:block;
  575. padding: 0px;
  576. margin-bottom: 0px;
  577. -moz-border-radius:0px; border-radius:0px;
  578. }
  579. a.links:hover {
  580. font-style: italic;
  581. text-decoration: underline;
  582. letter-spacing:10px;
  583.  
  584. }
  585.  
  586. .pft{font-family: Arial; font-size: 10px; text-align: center;}
  587.  
  588. </style>
  589. <link rel="shortcut icon" href="{Favicon}">
  590. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  591. <meta name="viewport" content="width=820" />
  592. {block:ifEndlessScroll}
  593. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
  594. <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
  595. <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
  596. <script type="text/javascript">
  597. $(document).ready(function() {
  598. /*
  599. var defaults = {
  600. containerID: 'moccaUItoTop', // fading element id
  601. containerHoverClass: 'moccaUIhover', // fading element hover class
  602. scrollSpeed: 1200,
  603. easingType: 'linear'
  604. };
  605. */
  606. $().UItoTop({ easingType: 'easeOutQuart' });
  607. });
  608. </script>
  609. {/block:ifEndlessSCroll}
  610. </head>
  611.  
  612. <body>
  613.  
  614.  
  615.  
  616. <div id="picture">
  617. <div id="center">
  618. <div id="side">
  619.  
  620.  
  621. <center>
  622. {block:ifShowTitle}
  623. <span style="position: relative; top: 1px z-index:1000;">
  624. <div class="blogtitle"><a href="/">{Title}</a></div>
  625. </span>
  626. {/block:ifShowTitle}
  627.  
  628. {block:ifShowPhoto}
  629. <div style="padding-top:0px; padding-bottom:5px;">
  630. <div align="center">
  631. <a href="/">
  632. <span style="position: relative;">
  633. <img src="{image:sidebar}" WIDTH=200 style=" opacity:0.98;filter:alpha(opacity=98)" border="0" /></span></div>
  634. </div>
  635. </a>
  636. {/block:ifShowPhoto}
  637. <center>
  638. {description}
  639. <p>
  640. {block:ifLinkOneTitle}
  641. {block:ifdescription}<BR>
  642. <BR>
  643. <BR>
  644. <BR>{/block:ifdescription}
  645. <a href="{text:Link One}" class="link">{text:Link One Title}</a>&nbsp;
  646. {/block:ifLinkOneTitle}
  647. {block:ifLinkTwoTitle}
  648. <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>&nbsp;
  649. {/block:ifLinkTwoTitle}
  650. {block:ifLinkThreeTitle}
  651. <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>&nbsp;
  652. {/block:ifLinkThreeTitle}
  653. {block:ifLinkFourTitle}
  654. <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>&nbsp;
  655. {/block:ifLinkFourTitle}
  656. {block:ifLinkFiveTitle}
  657. <a href="{text:Link Five}" class="link">{text:Link Five Title}</a>&nbsp;
  658. {/block:ifLinkFiveTitle}
  659.  
  660. {block:ifnotlinkonetitle}{block:ifdescription}<BR><BR><BR><BR>{block:ifdescription}{/block:ifnotlinkonetitle}{block:ifasklink}<a href="/ask">message</a>&nbsp;{/block:ifasklink}
  661.  
  662. {block:ifarchivelink}<a href="/archive">archive</a>&nbsp;{/block:ifarchivelink}
  663.  
  664. <script src='http://static.tumblr.com/ubmlcww/aXpls2t3m/posts.txt
  665. ' type='text/javascript'></script>
  666.  
  667. </center>
  668.  
  669. {block:ifnotEndlessScroll}<center>{block:Pagination}
  670. <BR>
  671. {block:PreviousPage}<a href="{PreviousPage}"><font size="4"><b>←</b></font></a>{/block:PreviousPage}
  672. {block:NextPage}<a href="{NextPage}"><font size="4"><b>→</b></font></a>{/block:NextPage}
  673. {/block:Pagination}{/block:ifnotEndlessScroll}</div>
  674.  
  675.  
  676.  
  677. </center>
  678.  
  679. {block:ifshadowlinks}<style type="text/css">a:hover {
  680.  
  681. color:{color:Text};
  682.  
  683. text-decoration: none;
  684.  
  685. font-style: none;
  686.  
  687. text-shadow:0px 0px 5px #02305A;}</style>{/block:ifshadowlinks}
  688.  
  689. <div id="pagination">
  690. <div align="center">
  691. <div id="posts">
  692.  
  693. {block:Posts}
  694. <div id="entry">
  695.  
  696. {block:IndexPage}
  697. <div class="perma">
  698. <a href="{permalink}">{NoteCountWithLabel}</a> / &nbsp;<a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  699. {/block:IndexPage}
  700.  
  701. {block:Photo}
  702. {block:IndexPage}
  703. <div id="base">
  704. <a href="{permalink}">
  705. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width=470px / border="0"></div>
  706. </a>
  707. {/block:IndexPage}
  708. {block:PermalinkPage}
  709. {LinkOpenTag}<center><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=470px/ border="0"></center>
  710. {/block:PermalinkPage}
  711. {/block:Photo}
  712.  
  713. {block:Photoset}
  714. {Block:ifPosthover}<a href="{ReblogUrl}"><Span class="permalinkdate"></span></a>{/Block:ifPosthover}<a href="{permalink}">
  715. {Photoset-500}</a>
  716.  
  717. {/block:Photoset}
  718.  
  719. {block:Text}
  720. {block:indexpage}
  721. <span class="permalinktext"><a href="{permalink}"></span><div style="padding: 3px;"></div>
  722. {/block:indexpage}
  723. {block:Title}
  724. <span class="title">{Title}</span>
  725. <div style="padding: 3px;"></div>
  726. {/block:Title}
  727. <span class="entrytext">{Body}</span>
  728. <a href="{Permalink}"></a>
  729. {/block:Text}
  730.  
  731. {block:Link}<div style="padding-top:5px; padding-bottom:0px; ">
  732. <a href="{permalink}">
  733. <font size="3">
  734. <a href="{URL}">{Name} </a></font></div>
  735. {block:Description}{Description}{/block:Description}
  736. {block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}<div style="padding-top:0px; padding-bottom:3px;"><a href="{Permalink}"></div>
  737. {/block:Link}
  738.  
  739.  
  740. {block:Quote}<a href="{Permalink}">
  741. <div style="padding:2px;"></div>
  742. <span class="title">{Quote}</span>
  743. {block:Source}
  744. {Source}
  745. <div style="padding:2px;"></div>
  746. {/block:Source}
  747. </a>
  748. {/block:Quote}
  749.  
  750. {block:Chat}
  751. <span class="permalinktext"><a href="{permalink}"></span><div style="padding:3px;"></div>
  752. {block:Title}<span class="title">{Title}</span>{/block:Title}
  753. <ul class="chat">
  754. {block:Lines}
  755. <li class="user_{UserNumber}">
  756. {block:Label}
  757. <span class="label">{Label}</span>
  758. {/block:Label}
  759.  
  760. {Line}
  761. </li>
  762. {/block:Lines}
  763. </ul>
  764. {block:ifShowCaptions}
  765. {block:Caption}{Caption}{/block:Caption}
  766. {/block:ifShowCaptions}
  767. <a href="{Permalink}"></a>
  768. <div style="padding:3px;"></div>
  769. {/block:Chat}
  770.  
  771. {block:Audio}
  772. <span class="permalinktext">
  773. <a href="{permalink}">
  774. </span>
  775. <div style="width:470px; height:8px;">
  776. <div style="float:left">
  777. {AudioPlayerGrey}
  778. </div>
  779. <div style="margin-top:8px; float:right; padding-right: 10px;">
  780. <small>
  781. {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}
  782. </small>
  783. </div>
  784. </div>
  785.  
  786. {/block:Audio}
  787.  
  788. {block:Video}
  789. {Video-500}
  790. {block:ifShowCaptions}
  791. {block:Caption}{Caption}{/block:Caption}
  792. {/block:ifShowCaptions}
  793. <span class="permalink">
  794. <div style="padding-top:0px; padding-bottom:3px;">
  795. <a href="{Permalink}"></a></div>
  796. </span>
  797. {/block:Video}
  798.  
  799. {block:PermalinkPage}
  800. <div id="permapage">
  801.  
  802. {block:ifshownotecount}{block:NoteCount}{notecountwithlabel}{/block:NoteCount}
  803. <br>{/block:ifshownotecount}
  804. {block:ifshowcaptions}{block:RebloggedFrom}
  805. Reblogged from
  806. <a href="{ReblogParentURL}">{ReblogParentName}</a>
  807. <br>
  808. Posted by
  809. <a href="{ReblogRootURL}">{ReblogRootName}</a>
  810. {/block:RebloggedFrom}{/block:ifshowcaptions}
  811. <div align="left">
  812.  
  813. {block:ifshownotes}{block:PostNotes}
  814. <BR>
  815. <BR>{PostNotes}
  816. {/block:PostNotes}{/block:ifshownotes}
  817. </div>
  818. </div>
  819.  
  820. </center>
  821. </div>
  822. {/block:PermalinkPage}
  823. </div>
  824.  
  825.  
  826. {/block:Posts}
  827.  
  828.  
  829. </div>
  830. </div>
  831. </div>
  832. </div>
  833. </center>
  834. </div>
  835.  
  836.  
  837. {block:indexpage}
  838.  
  839. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
  840.  
  841.  
  842.  
  843. <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
  844.  
  845. <script src='http://static.tumblr.com/ubmlcww/w98ltklfg/posts.txt' type='text/javascript'></script>
  846. <script type="text/javascript" src="http://static.tumblr.com/jnmer2r/WKhljk73d/jquery.infinitescroll.min.js"></script>
  847.  
  848. <script>
  849. jQuery(window).load(function(){
  850. var $wall = $('#posts');
  851. $wall.imagesLoaded(function(){
  852. $wall.masonry({
  853. singleMode: true,
  854. animate: false,
  855. resizeable: false,
  856. columnWidth: 480,
  857. itemSelector: '#entry'
  858. });
  859. });
  860. $wall.infinitescroll({
  861. navSelector : '#page-nav',
  862. nextSelector : '#page-nav a',
  863. itemSelector : '#entry',
  864. bufferPx : 10000,
  865. extraScrollPx: 11000,
  866. loadingImg : '',
  867. donetext : 'No more pages to load.'
  868. },
  869.  
  870. function( newElements ){
  871. $(newElements).hide();
  872. setTimeout(function(){
  873. $wall.masonry({ appendedContent: $(newElements) });
  874. },2000);
  875. setTimeout(function(){
  876. $(newElements).fadeIn('slow');
  877. },2100);
  878. },1000);
  879. });
  880. </script>
  881.  
  882.  
  883. <script>
  884. $.fn.imagesLoaded = function(callback){
  885. var elems = this.find('img'),
  886. len = elems.length,
  887. _this = this;
  888. if ( !elems.length ) {
  889. callback.call( this );}
  890. elems.bind('load',function(){
  891. if (--len <= 0){
  892. callback.call( _this );}
  893. }).each(function(){
  894. // cached images don't fire load sometimes, so we reset src.
  895. if (this.complete || this.complete === undefined){
  896. var src = this.src;
  897. // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
  898. // data uri bypasses webkit log warning (thx doug jones)
  899. this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
  900. this.src = src;}
  901. });
  902. return this;};
  903. </script>
  904.  
  905.  
  906.  
  907. {/block:indexpage}
  908.  
  909. <!--
  910. Theme by h4te
  911. http://h4te.tumblr.com
  912. Please don't remove the credit.
  913. -->
  914.  
  915. </body>
  916. </html>
Add Comment
Please, Sign In to add comment