BabeJeSuisParfait

personalblog49(h4te)

Apr 29th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.38 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="#d3d2d5"/>
  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="0"/>
  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="0"/>
  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: 1%;
  386. margin-left: ;
  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:300px; height:auto;}
  403. {block:PermalinkPage}
  404. width:300px;
  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:150px;
  427. padding:4px;
  428. line-height:auto;
  429. {block:ifnotinfinitescroll}padding-bottom: 8px;{block:ifnotinfinitescroll}
  430. position:fixed !important;
  431. width:150px;
  432. margin-left: 30px;
  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:700px;
  458. margin-left:;}
  459.  
  460. #entry{
  461. z-index:1000;
  462. margin-left:-200px;
  463. float: left;
  464. width: 300px;
  465. height: auto;
  466. line-height:8px;
  467. background-color:{color:box};
  468. padding:0px;
  469. margin-right:8px;
  470. overflow:hidden;
  471. margin-bottom:10px;
  472. {block:ifpostsshadow}-moz-box-shadow: 5px 5px 6px rgba(0,0,0,0.6);
  473. -webkit-box-shadow: 5px 5px 6px rgba(0,0,0,0.6);
  474. box-shadow: 5px 5px 6px rgba(0,0,0,0.6);{/block:ifpostsshadow}
  475. {block:ifsolidborderposts}border: 1px solid black;{/block:ifsolidborderposts}
  476. {block:ifdottedborderposts}border: 1px dotted black;{/block:ifdottedborderposts}
  477. }
  478.  
  479. #entry .perma a{
  480. color: {color:Links} }
  481.  
  482. #entry .perma{
  483. width:300px;
  484. position: absolute;
  485. font-family: cambria;
  486. font-size: 10px;
  487. line-height: 15px;
  488. text-align: center;
  489. overflow:hidden;
  490. opacity: 0.0;
  491. background-color:#fff;
  492. }
  493.  
  494. {block:ifnotesonhomepage}#entry:hover .perma{
  495. overflow:visible;
  496. -webkit-transition: opacity 0.2s linear; opacity: 0.8;
  497. -webkit-transition: all 0.2s linear;
  498. -moz-transition: all 0.2s linear;
  499. transition: all 0.2s linear;
  500. }{/block:ifnotesonhomepage}
  501.  
  502.  
  503. #pagination{
  504. font-size: 10px;}
  505.  
  506. #permapage{
  507. padding-top:7px;
  508. font-family: century gothic;
  509. font-size: 11px;
  510. line-height: 11px;
  511. text-align: center;
  512. padding-bottom:5px;
  513. z-index:100;}
  514.  
  515. #notes{
  516. {block:permalinkpage}
  517. background-color: {color:box};
  518. display:block;
  519. width:300px;
  520. list-style:none;
  521. float: left;
  522. padding:2px;
  523. overflow:hidden;
  524. z-index:1;
  525. margin-top: -5px;
  526. text-align: left;{/block:permalinkpage}
  527. }
  528.  
  529. ol.notes img.avatar { display: true; padding:2px 0 0 2px; border:0px;}
  530.  
  531. .title{
  532. font-family: {font:Title};
  533. font-size: {text:Title font size};
  534. line-height: {text:Title font size};
  535. color: {color:Title};
  536. font-weight: normal;
  537. }
  538.  
  539. .blogtitle{
  540. {block:ifnotshowphoto}padding-bottom: 10px;{/block:ifnotshowphoto}
  541. {block:ifshowphoto}padding-bottom:5px;{/block:ifshowphoto}
  542. font-family:georgia;
  543. text-align:center;
  544. color: {color:title};
  545. line-height:18px;
  546. font-size:18px;
  547. }
  548.  
  549. .video embed, .post div.video object {
  550. width:300px !important;
  551. height:auto !important;
  552. }
  553.  
  554. blockquote{
  555. padding:0px 0px 2px 3px;
  556. margin:0px 0px 2px 1px;
  557. border-left: 1px dashed {color:Text};
  558. }
  559.  
  560. a img{border: 0px;}
  561.  
  562. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  563.  
  564. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  565. .user_7 .label, .user_8 .label, .user_9 .label {color:#555;}
  566.  
  567. .notes img{width:10px; position:relative; top:3px;}
  568.  
  569. a.links {
  570. font-family: Arial;
  571. font-size: 10px;
  572. line-height: 9px;
  573. text-transform: normal;
  574. letter-spacing:0px;
  575. display:block;
  576. padding: 0px;
  577. margin-bottom: 0px;
  578. -moz-border-radius:0px; border-radius:0px;
  579. }
  580. a.links:hover {
  581. font-style: italic;
  582. text-decoration: underline;
  583. letter-spacing:10px;
  584.  
  585. }
  586.  
  587. .pft{font-family: Arial; font-size: 10px; text-align: center;}
  588.  
  589. </style>
  590. <link rel="shortcut icon" href="{Favicon}">
  591. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  592. <meta name="viewport" content="width=820" />
  593. {block:ifEndlessScroll}
  594. <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
  595. <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
  596. <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
  597. <script type="text/javascript">
  598. $(document).ready(function() {
  599. /*
  600. var defaults = {
  601. containerID: 'moccaUItoTop', // fading element id
  602. containerHoverClass: 'moccaUIhover', // fading element hover class
  603. scrollSpeed: 1200,
  604. easingType: 'linear'
  605. };
  606. */
  607. $().UItoTop({ easingType: 'easeOutQuart' });
  608. });
  609. </script>
  610. {/block:ifEndlessSCroll}
  611. </head>
  612.  
  613. <body>
  614.  
  615.  
  616.  
  617. <div id="picture">
  618. <div id="center">
  619. <div id="side">
  620.  
  621.  
  622. <center>
  623. {block:ifShowTitle}
  624. <span style="position: relative; top: 1px z-index:1000;">
  625. <div class="blogtitle"><a href="/">{Title}</a></div>
  626. </span>
  627. {/block:ifShowTitle}
  628.  
  629. {block:ifShowPhoto}
  630. <div style="padding-top:0px; padding-bottom:5px;">
  631. <div align="center">
  632. <a href="/">
  633. <span style="position: relative;">
  634. <img src="{image:sidebar}" WIDTH=150 style=" opacity:0.98;filter:alpha(opacity=98)" border="0" /></span></div>
  635. </div>
  636. </a>
  637. {/block:ifShowPhoto}
  638. <center>
  639. {description}
  640. <p>
  641. {block:ifLinkOneTitle}
  642. {block:ifdescription}<BR>
  643. <BR>
  644. <BR>
  645. <BR>{/block:ifdescription}
  646. <a href="{text:Link One}" class="link">{text:Link One Title}</a>&nbsp;
  647. {/block:ifLinkOneTitle}
  648. {block:ifLinkTwoTitle}
  649. <a href="{text:Link Two}" class="link">{text:Link Two Title}</a>&nbsp;
  650. {/block:ifLinkTwoTitle}
  651. {block:ifLinkThreeTitle}
  652. <a href="{text:Link Three}" class="link">{text:Link Three Title}</a>&nbsp;
  653. {/block:ifLinkThreeTitle}
  654. {block:ifLinkFourTitle}
  655. <a href="{text:Link Four}" class="link">{text:Link Four Title}</a>&nbsp;
  656. {/block:ifLinkFourTitle}
  657. {block:ifLinkFiveTitle}
  658. <a href="{text:Link Five}" class="link">{text:Link Five Title}</a>&nbsp;
  659. {/block:ifLinkFiveTitle}
  660.  
  661. {block:ifnotlinkonetitle}{block:ifdescription}<BR><BR><BR><BR>{block:ifdescription}{/block:ifnotlinkonetitle}{block:ifasklink}<a href="/ask">message</a>&nbsp;{/block:ifasklink}
  662.  
  663. {block:ifarchivelink}<a href="/archive">archive</a>&nbsp;{/block:ifarchivelink}
  664.  
  665. <script src='http://static.tumblr.com/ubmlcww/aXpls2t3m/posts.txt
  666. ' type='text/javascript'></script>
  667.  
  668. </center>
  669.  
  670. {block:ifnotEndlessScroll}<center>{block:Pagination}
  671. <BR>
  672. {block:PreviousPage}<a href="{PreviousPage}"><font size="4"><b>←</b></font></a>{/block:PreviousPage}
  673. {block:NextPage}<a href="{NextPage}"><font size="4"><b>→</b></font></a>{/block:NextPage}
  674. {/block:Pagination}{/block:ifnotEndlessScroll}</div>
  675.  
  676.  
  677.  
  678. </center>
  679.  
  680. {block:ifshadowlinks}<style type="text/css">a:hover {
  681.  
  682. color:{color:Text};
  683.  
  684. text-decoration: none;
  685.  
  686. font-style: none;
  687.  
  688. text-shadow:0px 0px 5px #02305A;}</style>{/block:ifshadowlinks}
  689.  
  690. <div id="pagination">
  691. <div align="center">
  692. <div id="posts">
  693.  
  694. {block:Posts}
  695. <div id="entry">
  696.  
  697. {block:IndexPage}
  698. <div class="perma">
  699. <a href="{permalink}">{NoteCountWithLabel}</a> / &nbsp;<a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  700. {/block:IndexPage}
  701.  
  702. {block:Photo}
  703. {block:IndexPage}
  704. <div id="base">
  705. <a href="{permalink}">
  706. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width=300px / border="0"></div>
  707. </a>
  708. {/block:IndexPage}
  709. {block:PermalinkPage}
  710. {LinkOpenTag}<center><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=300px/ border="0"></center>
  711. {/block:PermalinkPage}
  712. {/block:Photo}
  713.  
  714. {block:Photoset}
  715. {Block:ifPosthover}<a href="{ReblogUrl}"><Span class="permalinkdate"></span></a>{/Block:ifPosthover}<a href="{permalink}">
  716. {Photoset-250}</a>
  717.  
  718. {/block:Photoset}
  719.  
  720. {block:Text}
  721. {block:indexpage}
  722. <span class="permalinktext"><a href="{permalink}"></span><div style="padding: 3px;"></div>
  723. {/block:indexpage}
  724. {block:Title}
  725. <span class="title">{Title}</span>
  726. <div style="padding: 3px;"></div>
  727. {/block:Title}
  728. <span class="entrytext">{Body}</span>
  729. <a href="{Permalink}"></a>
  730. {/block:Text}
  731.  
  732. {block:Link}<div style="padding-top:5px; padding-bottom:0px; ">
  733. <a href="{permalink}">
  734. <font size="3">
  735. <a href="{URL}">{Name} </a></font></div>
  736. {block:Description}{Description}{/block:Description}
  737. {block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}<div style="padding-top:0px; padding-bottom:3px;"><a href="{Permalink}"></div>
  738. {/block:Link}
  739.  
  740.  
  741. {block:Quote}<a href="{Permalink}">
  742. <div style="padding:2px;"></div>
  743. <span class="title">{Quote}</span>
  744. {block:Source}
  745. {Source}
  746. <div style="padding:2px;"></div>
  747. {/block:Source}
  748. </a>
  749. {/block:Quote}
  750.  
  751. {block:Chat}
  752. <span class="permalinktext"><a href="{permalink}"></span><div style="padding:3px;"></div>
  753. {block:Title}<span class="title">{Title}</span>{/block:Title}
  754. <ul class="chat">
  755. {block:Lines}
  756. <li class="user_{UserNumber}">
  757. {block:Label}
  758. <span class="label">{Label}</span>
  759. {/block:Label}
  760.  
  761. {Line}
  762. </li>
  763. {/block:Lines}
  764. </ul>
  765. {block:ifShowCaptions}
  766. {block:Caption}{Caption}{/block:Caption}
  767. {/block:ifShowCaptions}
  768. <a href="{Permalink}"></a>
  769. <div style="padding:3px;"></div>
  770. {/block:Chat}
  771.  
  772. {block:Audio}
  773. <span class="permalinktext">
  774. <a href="{permalink}">
  775. </span>
  776. <div style="width:300px; height:8px;">
  777. <div style="float:left">
  778. {AudioPlayerGrey}
  779. </div>
  780. <div style="margin-top:8px; float:right; padding-right: 10px;">
  781. <small>
  782. {FormattedPlayCount} plays {block:ExternalAudio} // <a href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}
  783. </small>
  784. </div>
  785. </div>
  786.  
  787. {/block:Audio}
  788.  
  789. {block:Video}
  790. {Video-250}
  791. {block:ifShowCaptions}
  792. {block:Caption}{Caption}{/block:Caption}
  793. {/block:ifShowCaptions}
  794. <span class="permalink">
  795. <div style="padding-top:0px; padding-bottom:3px;">
  796. <a href="{Permalink}"></a></div>
  797. </span>
  798. {/block:Video}
  799.  
  800. {block:PermalinkPage}
  801. <div id="permapage">
  802.  
  803. {block:ifshownotecount}{block:NoteCount}{notecountwithlabel}{/block:NoteCount}
  804. <br>{/block:ifshownotecount}
  805. {block:ifshowcaptions}{block:RebloggedFrom}
  806. Reblogged from
  807. <a href="{ReblogParentURL}">{ReblogParentName}</a>
  808. <br>
  809. Posted by
  810. <a href="{ReblogRootURL}">{ReblogRootName}</a>
  811. {/block:RebloggedFrom}{/block:ifshowcaptions}
  812. <div align="left">
  813.  
  814. {block:ifshownotes}{block:PostNotes}
  815. <BR>
  816. <BR>{PostNotes}
  817. {/block:PostNotes}{/block:ifshownotes}
  818. </div>
  819. </div>
  820.  
  821. </center>
  822. </div>
  823. {/block:PermalinkPage}
  824. </div>
  825.  
  826.  
  827. {/block:Posts}
  828.  
  829.  
  830. </div>
  831. </div>
  832. </div>
  833. </div>
  834. </center>
  835. </div>
  836.  
  837.  
  838. {block:indexpage}
  839.  
  840. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
  841.  
  842.  
  843.  
  844. <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
  845.  
  846. <script src='http://static.tumblr.com/ubmlcww/w98ltklfg/posts.txt' type='text/javascript'></script>
  847. <script type="text/javascript" src="http://static.tumblr.com/jnmer2r/WKhljk73d/jquery.infinitescroll.min.js"></script>
  848.  
  849. <script>
  850. jQuery(window).load(function(){
  851. var $wall = $('#posts');
  852. $wall.imagesLoaded(function(){
  853. $wall.masonry({
  854. singleMode: true,
  855. animate: false,
  856. resizeable: false,
  857. columnWidth: 315,
  858. itemSelector: '#entry'
  859. });
  860. });
  861. $wall.infinitescroll({
  862. navSelector : '#page-nav',
  863. nextSelector : '#page-nav a',
  864. itemSelector : '#entry',
  865. bufferPx : 10000,
  866. extraScrollPx: 11000,
  867. loadingImg : '',
  868. donetext : 'No more pages to load.'
  869. },
  870.  
  871. function( newElements ){
  872. $(newElements).hide();
  873. setTimeout(function(){
  874. $wall.masonry({ appendedContent: $(newElements) });
  875. },2000);
  876. setTimeout(function(){
  877. $(newElements).fadeIn('slow');
  878. },2100);
  879. },1000);
  880. });
  881. </script>
  882.  
  883.  
  884. <script>
  885. $.fn.imagesLoaded = function(callback){
  886. var elems = this.find('img'),
  887. len = elems.length,
  888. _this = this;
  889. if ( !elems.length ) {
  890. callback.call( this );}
  891. elems.bind('load',function(){
  892. if (--len <= 0){
  893. callback.call( _this );}
  894. }).each(function(){
  895. // cached images don't fire load sometimes, so we reset src.
  896. if (this.complete || this.complete === undefined){
  897. var src = this.src;
  898. // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
  899. // data uri bypasses webkit log warning (thx doug jones)
  900. this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
  901. this.src = src;}
  902. });
  903. return this;};
  904. </script>
  905.  
  906.  
  907.  
  908. {/block:indexpage}
  909.  
  910. <!--
  911. Theme by h4te
  912. http://h4te.tumblr.com
  913. Please don't remove the credit.
  914. -->
  915.  
  916. </body>
  917. </html>
Add Comment
Please, Sign In to add comment