xmisa0923

400

Mar 3rd, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.22 KB | None | 0 0
  1. <!-- (c) theme #4 by harlequinades
  2. http://harlequinades.tumblr.com
  3. do not remove credit! thank you
  4. -->
  5.  
  6.  
  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. <html lang="en">
  10.  
  11. <head>
  12.  
  13.  
  14. <script type="text/javascript" src="http://www.freewebs.com/p.js"></script><script type='text/javascript'>
  15.  
  16.  
  17.  
  18. //<![CDATA[
  19.  
  20.  
  21.  
  22. var rate = 20;
  23.  
  24.  
  25.  
  26. if (document.getElementById)
  27.  
  28.  
  29.  
  30. window.onerror=new Function("return true")
  31.  
  32.  
  33.  
  34. var objActive; // The object which event occured in
  35.  
  36.  
  37.  
  38. var act = 0; // Flag during the action
  39.  
  40.  
  41.  
  42. var elmH = 0; // Hue
  43.  
  44.  
  45.  
  46. var elmS = 128; // Saturation
  47.  
  48.  
  49.  
  50. var elmV = 255; // Value
  51.  
  52.  
  53.  
  54. var clrOrg; // A color before the change
  55.  
  56.  
  57.  
  58. var TimerID; // Timer ID
  59.  
  60.  
  61.  
  62. if (document.all) {
  63.  
  64.  
  65.  
  66. document.onmouseover = doRainbowAnchor;
  67.  
  68.  
  69.  
  70. document.onmouseout = stopRainbowAnchor;
  71.  
  72.  
  73.  
  74. }
  75.  
  76.  
  77.  
  78. else if (document.getElementById) {
  79.  
  80.  
  81.  
  82. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  83.  
  84.  
  85.  
  86. document.onmouseover = Mozilla_doRainbowAnchor;
  87.  
  88.  
  89.  
  90. document.onmouseout = Mozilla_stopRainbowAnchor;
  91.  
  92.  
  93.  
  94. }
  95.  
  96.  
  97.  
  98. function doRainbow(obj)
  99.  
  100.  
  101.  
  102. {
  103.  
  104.  
  105.  
  106. if (act == 0) {
  107.  
  108.  
  109.  
  110. act = 1;
  111.  
  112.  
  113.  
  114. if (obj)
  115.  
  116.  
  117.  
  118. objActive = obj;
  119.  
  120.  
  121.  
  122. else
  123.  
  124.  
  125.  
  126. objActive = event.srcElement;
  127.  
  128.  
  129.  
  130. clrOrg = objActive.style.color;
  131.  
  132.  
  133.  
  134. TimerID = setInterval("ChangeColor()",100);
  135.  
  136.  
  137.  
  138. }
  139.  
  140.  
  141.  
  142. }
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150. function stopRainbow()
  151.  
  152.  
  153.  
  154. {
  155.  
  156.  
  157.  
  158. if (act) {
  159.  
  160.  
  161.  
  162. objActive.style.color = clrOrg;
  163.  
  164.  
  165.  
  166. clearInterval(TimerID);
  167.  
  168.  
  169.  
  170. act = 0;
  171.  
  172.  
  173.  
  174. }
  175.  
  176.  
  177.  
  178. }
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186. function doRainbowAnchor()
  187.  
  188.  
  189.  
  190. {
  191.  
  192.  
  193.  
  194. if (act == 0) {
  195.  
  196.  
  197.  
  198. var obj = event.srcElement;
  199.  
  200.  
  201.  
  202. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  203.  
  204.  
  205.  
  206. obj = obj.parentElement;
  207.  
  208.  
  209.  
  210. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  211.  
  212.  
  213.  
  214. break;
  215.  
  216.  
  217.  
  218. }
  219.  
  220.  
  221.  
  222. if (obj.tagName == 'A' && obj.href != '') {
  223.  
  224.  
  225.  
  226. objActive = obj;
  227.  
  228.  
  229.  
  230. act = 1;
  231.  
  232.  
  233.  
  234. clrOrg = objActive.style.color;
  235.  
  236.  
  237.  
  238. TimerID = setInterval("ChangeColor()",100);
  239.  
  240.  
  241.  
  242. }
  243.  
  244.  
  245.  
  246. }
  247.  
  248.  
  249.  
  250. }
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258. function stopRainbowAnchor()
  259.  
  260.  
  261.  
  262. {
  263.  
  264.  
  265.  
  266. if (act) {
  267.  
  268.  
  269.  
  270. if (objActive.tagName == 'A') {
  271.  
  272.  
  273.  
  274. objActive.style.color = clrOrg;
  275.  
  276.  
  277.  
  278. clearInterval(TimerID);
  279.  
  280.  
  281.  
  282. act = 0;
  283.  
  284.  
  285.  
  286. }
  287.  
  288.  
  289.  
  290. }
  291.  
  292.  
  293.  
  294. }
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302. function Mozilla_doRainbowAnchor(e)
  303.  
  304.  
  305.  
  306. {
  307.  
  308.  
  309.  
  310. if (act == 0) {
  311.  
  312.  
  313.  
  314. obj = e.target;
  315.  
  316.  
  317.  
  318. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  319.  
  320.  
  321.  
  322. obj = obj.parentNode;
  323.  
  324.  
  325.  
  326. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  327.  
  328.  
  329.  
  330. break;
  331.  
  332.  
  333.  
  334. }
  335.  
  336.  
  337.  
  338. if (obj.nodeName == 'A' && obj.href != '') {
  339.  
  340.  
  341.  
  342. objActive = obj;
  343.  
  344.  
  345.  
  346. act = 1;
  347.  
  348.  
  349.  
  350. clrOrg = obj.style.color;
  351.  
  352.  
  353.  
  354. TimerID = setInterval("ChangeColor()",100);
  355.  
  356.  
  357.  
  358. }
  359.  
  360.  
  361.  
  362. }
  363.  
  364.  
  365.  
  366. }
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374. function Mozilla_stopRainbowAnchor(e)
  375.  
  376.  
  377.  
  378. {
  379.  
  380.  
  381.  
  382. if (act) {
  383.  
  384.  
  385.  
  386. if (objActive.nodeName == 'A') {
  387.  
  388.  
  389.  
  390. objActive.style.color = clrOrg;
  391.  
  392.  
  393.  
  394. clearInterval(TimerID);
  395.  
  396.  
  397.  
  398. act = 0;
  399.  
  400.  
  401.  
  402. }
  403.  
  404.  
  405.  
  406. }
  407.  
  408.  
  409.  
  410. }
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418. function ChangeColor()
  419.  
  420.  
  421.  
  422. {
  423.  
  424.  
  425.  
  426. objActive.style.color = makeColor();
  427.  
  428.  
  429.  
  430. }
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438. function makeColor()
  439.  
  440.  
  441.  
  442. {
  443.  
  444.  
  445.  
  446. // Don't you think Color Gamut to look like Rainbow?
  447.  
  448.  
  449.  
  450. // HSVtoRGB
  451.  
  452.  
  453.  
  454. if (elmS == 0) {
  455.  
  456.  
  457.  
  458. elmR = elmV; elmG = elmV; elmB = elmV;
  459.  
  460.  
  461.  
  462. }
  463.  
  464.  
  465.  
  466. else {
  467.  
  468.  
  469.  
  470. t1 = elmV;
  471.  
  472.  
  473.  
  474. t2 = (255 - elmS) * elmV / 255;
  475.  
  476.  
  477.  
  478. t3 = elmH % 60;
  479.  
  480.  
  481.  
  482. t3 = (t1 - t2) * t3 / 60;
  483.  
  484.  
  485.  
  486. if (elmH < 60) {
  487.  
  488.  
  489.  
  490. elmR = t1; elmB = t2; elmG = t2 + t3;
  491.  
  492.  
  493.  
  494. }
  495.  
  496.  
  497.  
  498. else if (elmH < 120) {
  499.  
  500.  
  501.  
  502. elmG = t1; elmB = t2; elmR = t1 - t3;
  503.  
  504.  
  505.  
  506. }
  507.  
  508.  
  509.  
  510. else if (elmH < 180) {
  511.  
  512.  
  513.  
  514. elmG = t1; elmR = t2; elmB = t2 + t3;
  515.  
  516.  
  517.  
  518. }
  519.  
  520.  
  521.  
  522. else if (elmH < 240) {
  523.  
  524.  
  525.  
  526. elmB = t1; elmR = t2; elmG = t1 - t3;
  527.  
  528.  
  529.  
  530. }
  531.  
  532.  
  533.  
  534. else if (elmH < 300) {
  535.  
  536.  
  537.  
  538. elmB = t1; elmG = t2; elmR = t2 + t3;
  539.  
  540.  
  541.  
  542. }
  543.  
  544.  
  545.  
  546. else if (elmH < 360) {
  547.  
  548.  
  549.  
  550. elmR = t1; elmG = t2; elmB = t1 - t3;
  551.  
  552.  
  553.  
  554. }
  555.  
  556.  
  557.  
  558. else {
  559.  
  560.  
  561.  
  562. elmR = 0; elmG = 0; elmB = 0;
  563.  
  564.  
  565.  
  566. }
  567.  
  568.  
  569.  
  570. }
  571.  
  572.  
  573.  
  574. elmR = Math.floor(elmR).toString(16);
  575.  
  576.  
  577.  
  578. elmG = Math.floor(elmG).toString(16);
  579.  
  580.  
  581.  
  582. elmB = Math.floor(elmB).toString(16);
  583.  
  584.  
  585.  
  586. if (elmR.length == 1) elmR = "0" + elmR;
  587.  
  588.  
  589.  
  590. if (elmG.length == 1) elmG = "0" + elmG;
  591.  
  592.  
  593.  
  594. if (elmB.length == 1) elmB = "0" + elmB;
  595.  
  596.  
  597.  
  598. elmH = elmH + rate;
  599.  
  600.  
  601.  
  602. if (elmH >= 360)
  603.  
  604.  
  605.  
  606. elmH = 0;
  607.  
  608.  
  609.  
  610. return '#' + elmR + elmG + elmB;
  611.  
  612.  
  613.  
  614. }
  615.  
  616.  
  617.  
  618. //]]>
  619.  
  620.  
  621.  
  622. </script>
  623.  
  624.  
  625. <title>{Title}</title>
  626. <link rel="shortcut icon" href="http://i.imgur.com/RCc8j.gif">
  627. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  628. <meta name="description" content="{MetaDescription}" />
  629. {/block:Description}
  630. {block:ifinfinitescrolling}
  631. <script type="text/javascript" src="http://k003.kiwi6.com/hotlink/2jbbu56k6h/infinitecode.js"></script>
  632. {/block:ifinfinitescrolling}
  633.  
  634. <meta name="color:pagelinks background" content="#fff" />
  635. <meta name="color:pagelinks hover" content="#fff" />
  636. <meta name="text:custom link one url" content="" />
  637. <meta name="text:custom link one" content="" />
  638. <meta name="text:custom link two url" content="" />
  639. <meta name="text:custom link two" content="" />
  640. <meta name="text:custom link three url" content="" />
  641. <meta name="text:custom link three" content="" />
  642. <meta name="if:show captions" content="0" />
  643. <meta name="if:infinite scrolling" content="0"/>
  644.  
  645.  
  646. <style type="text/css">
  647.  
  648. #musicplayer {text-align: center;font-size: 11px;position:fixed;left:10px; top:-43px;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-o-transition: all .5s ease-in-out;z-index:999;}
  649.  
  650. #musicplayer:hover {top:-10px;}
  651.  
  652. #music {padding: 20px 5px 5px 5px;background:#fff;width:120px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;z-index: 9999;}
  653.  
  654. #musictab {font-family:century gothic;text-shadow: 0 1px 0 #000;height:30px;padding: 0 0 8px 0;background:#fff;border-bottom-left-radius: 5px;-moz-border-radius-bottomleft: 5px;-webkit-border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;-moz-border-radius-bottomright: 5px;-webkit-border-bottom-right-radius: 5px;width: 30px;}
  655.  
  656. body {
  657. margin: 0px;
  658. padding: 0px;
  659. background:#F8F8F8 url('http://media.tumblr.com/tumblr_lu81puUFhg1qc5p14.png') center center fixed;
  660. cursor: url(http://media.tumblr.com/tumblr_lu8052Ou5m1qc5p14.png), auto;
  661. }
  662.  
  663. a {
  664. color: #ffabd9;
  665. text-decoration: none;
  666. text-transform: lowercase;
  667. cursor: url(http://media.tumblr.com/tumblr_lu8052Ou5m1qc5p14.png), auto;
  668. -webkit-transition: all 0.8s ease;
  669. -moz-transition: all 0.8s ease;
  670. -o-transition: all 0.8s ease;
  671. }
  672.  
  673. a:hover {
  674. color: #eee;
  675. text-decoration: none;
  676. cursor: url(http://media.tumblr.com/tumblr_lu8052Ou5m1qc5p14.png), auto;
  677. -webkit-transition: all 0.8s ease;
  678. -moz-transition: all 0.8s ease;
  679. -o-transition: all 0.8s ease;
  680. }
  681.  
  682. #posts {
  683. width: 400px;
  684. padding: 5px;
  685. margin-top: 0px;
  686. margin-left: 200px;
  687. }
  688.  
  689. .entry {
  690. margin-bottom: 5px;
  691. width: 400px;
  692. padding: 5px;
  693. background-color: #fff;
  694. font-family: lucida console;
  695. font-size: 9px;
  696. font-color: {color:Body};
  697. text-transform: none;
  698. text-align: justify;
  699. }
  700.  
  701. .caption {
  702. text-align: center;
  703. font-weight: bold;
  704. }
  705.  
  706. .title {
  707. text-align: center;
  708. letter-spacing: 2px;
  709. }
  710.  
  711. #contue {
  712. margin-top:-5px;
  713. margin-bottom:-9px;
  714. }
  715.  
  716. #sidebar {
  717. position: absolute;
  718. top: 5px;
  719. left: 620px;
  720. width: 116px;
  721. height: auto;
  722. padding: 3px;
  723. background-color: #fff;
  724. font-family: lucida console;
  725. font-size: 9px;
  726. font-color: {color:body font};
  727. text-transform: none;
  728. z-index: 999;
  729. -webkit-transition: all 0.5s ease;
  730. -moz-transition: all 0.5s ease;
  731. -o-transition: all 0.5s ease;
  732. }
  733.  
  734. .pagelinks {background-color:{color:pagelinks background};}
  735. .pagelinks a{text-transform:; font-size:8px; font-family:'lucida console', Courier, monospace; text-align:right; padding-bottom:4px; padding-bottom:1px; padding-left:4px; padding-right:4px; color:#ffabd9;}
  736.  
  737. .pagelinks a:hover {color:{color:pagelinks hover}; }
  738.  
  739. .permalink {
  740. width: 50px;
  741. font-family: lucida console;
  742. font-size: 9px;
  743. background-color: #fff;
  744. text-transform: none;
  745. text-align: center;
  746. letter-spacing: 2px;
  747. margin-left: 0px;
  748. margin-bottom: 0px;
  749. position: absolute;
  750. opacity: 0;
  751. -webkit-transition: all 0.5s ease;
  752. -moz-transition: all 0.5s ease;
  753. -o-transition: all 0.5s ease;
  754. }
  755.  
  756. .permalink a {
  757. color: #ffabd9;
  758. }
  759.  
  760. .permalink a:hover {
  761. color: #ff94c2;
  762. }
  763.  
  764. .permalink:hover {
  765. background: #fff;
  766. font-color: #000;
  767. }
  768.  
  769. .entry:hover .permalink {
  770. margin-left: -55px;
  771. opacity: 0.8;
  772. text-align: center;
  773. width: 50px;
  774. -webkit-transition: all 1s ease;
  775. -moz-transition: all 1s ease;
  776. -o-transition: all 1s ease;
  777. }
  778.  
  779. .soohyun img, .dead img, blockquote img {max-width:390px;}
  780.  
  781. blockquote{padding:0 0 0 4px; margin:0 0 0 5px; border-left: 2px solid {color:link};}
  782. ol.notes li.note { padding:7px;}
  783.  
  784. #next {
  785. position: fixed;
  786. bottom: 5px;
  787. left: 620px;
  788. z-index: 999;
  789. }
  790.  
  791. .img {
  792. width: 400px;
  793. min-width: 400px;
  794. max-width: 400px;
  795. }
  796.  
  797.  
  798. iframe#tumblr_controls {
  799.  
  800. right:3px !important;
  801.  
  802. position: fixed !important;
  803.  
  804. -webkit-transition: opacity 0.7s linear;
  805.  
  806. opacity: 0.2;
  807.  
  808. -webkit-transition: all 0.8s ease-out;
  809.  
  810. -moz-transition: all 0.8s ease-out;
  811.  
  812. transition: all 0.8s ease-out;}
  813.  
  814. iframe#tumblr_controls:hover{
  815.  
  816. -webkit-transition: opacity 0.7s linear;
  817.  
  818. opacity: 1;
  819.  
  820. -webkit-transition: all 0.4s ease-out;
  821.  
  822. -moz-transition: all 0.4s ease-out;
  823.  
  824. transition: all 0.4s ease-out;}
  825.  
  826.  
  827.  
  828. </style>
  829.  
  830. <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js?ver=1.3.2'></script>
  831. <script type="text/javascript">
  832. $(function() {
  833.  
  834. var offset = $("#sidebar").offset();
  835. var topPadding = 5;
  836.  
  837. $(window).scroll(function() {
  838.  
  839. if ($(window).scrollTop() > offset.top) {
  840.  
  841. $("#sidebar").stop().animate({
  842.  
  843. marginTop: $(window).scrollTop() - offset.top + topPadding
  844.  
  845. });
  846.  
  847. } else {
  848.  
  849. $("#sidebar").stop().animate({
  850.  
  851. marginTop: 0
  852.  
  853. });
  854.  
  855. }
  856.  
  857.  
  858. });
  859.  
  860. });
  861. </script>
  862.  
  863.  
  864. </head>
  865.  
  866. <body>
  867. <div id=sidebar>
  868. {block:Description}
  869. {Description}
  870. {/block:Description}
  871. <div class="pagelinks"><center>{block:PreviousPage}<a href="{PreviousPage}">◀</a>
  872. {/block:PreviousPage}
  873. {block:JumpPagination length="3"}
  874. {block:CurrentPage}
  875. <span class="current_page">{PageNumber}</span>
  876. {/block:CurrentPage}
  877. {block:JumpPage}
  878. <a class="jump_page" href="{URL}">{PageNumber}</a>
  879. {/block:JumpPage}
  880. {/block:JumpPagination}
  881. {block:NextPage}
  882. <a href="{NextPage}">▶</a>
  883. {/block:NextPage}
  884. </div>
  885. </div>
  886.  
  887. {block:ifnotinfinitescrolling}
  888. {/block:ifnotinfinitescrolling}
  889.  
  890.  
  891. <div id="posts">
  892. {block:ifinfinitescrolling}
  893. <div class= "autopagerize_page_element">
  894. {/block:ifinfinitescrolling}
  895. {block:Posts}
  896.  
  897.  
  898. {block:Text}
  899. <div class="entry">
  900. <span class="permalink"><a href="{Permalink}">
  901. {block:NoteCount}({NoteCount}){/block:NoteCount}
  902. {TimeAgo}
  903. </a></span>
  904. <div style="padding: 0px">
  905. <div class="title">{block:Title}
  906. <h3><a href="{Permalink}">{Title}</a></h3>
  907. {/block:Title}</div>
  908. <div class="soohyun" id="contue"><p align=justify>{Body}</p></div>
  909. </div></div>
  910. {/block:Text}
  911.  
  912. {block:Photo}
  913. <div class="entry">
  914. <span class="permalink"><a href="{Permalink}">
  915. {block:NoteCount}({NoteCount}){/block:NoteCount}
  916. {TimeAgo}
  917. </a></span>
  918. <a href="{Permalink}">
  919. <img class="img" src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  920. </a>
  921. {block:PermalinkPage}<br>{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  922. </div>
  923. {/block:Photo}
  924.  
  925. {block:Photoset}
  926. <div class="entry">
  927. <span class="permalink"><a href="{Permalink}">
  928. {block:NoteCount}({NoteCount}){/block:NoteCount}
  929. {TimeAgo}
  930. </a></span>
  931. {Photoset-400}
  932. {block:PermalinkPage}<br>{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  933. </div>
  934. {/block:Photoset}
  935.  
  936. {block:Quote}
  937. <div class="entry">
  938. <span class="permalink"><a href="{Permalink}">
  939. {block:NoteCount}({NoteCount}){/block:NoteCount}
  940. {TimeAgo}
  941. </a></span>
  942. <div style="padding: 10px; text-align: center;">
  943. "{Quote}"
  944. {block:Source}
  945. <div class="source"><b>{Source}</b></div>
  946. {/block:Source}
  947. </div></div>
  948. {/block:Quote}
  949.  
  950. {block:Link}
  951. <div class="entry">
  952. <span class="permalink"><a href="{Permalink}">
  953. {block:NoteCount}({NoteCount}){/block:NoteCount}
  954. {TimeAgo}
  955. </a></span>
  956. <div style="padding: 10px">
  957. <a href="{URL}" class="link" {Target}>{Name}</a>
  958. {block:Description}
  959. <div class="description">{Description}</div>
  960. {/block:Description}
  961. </div></div>
  962. {/block:Link}
  963.  
  964. {block:Chat}
  965. <div class="entry">
  966. <span class="permalink"><a href="{Permalink}">
  967. {block:NoteCount}({NoteCount}){/block:NoteCount}
  968. {TimeAgo}
  969. </a></span>
  970. <div style="padding: 10px">
  971. {block:Title}
  972. <a href="{Permalink}">{Title}</a>
  973. {/block:Title}
  974. {block:Lines}
  975. {block:Label}
  976. <b>{Label}</b>
  977. {/block:Label}
  978. {Line}<br />
  979. {/block:Lines}
  980. </div></div>
  981. {/block:Chat}
  982.  
  983. {block:Video}
  984. <div class="entry">
  985. <span class="permalink"><a href="{Permalink}">
  986. {block:NoteCount}({NoteCount}){/block:NoteCount}
  987. {TimeAgo}
  988. </a></span>
  989. {Video-400}
  990. {block:PermalinkPage}<br>{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  991. </div>
  992. {/block:Video}
  993.  
  994. {block:Audio}
  995. <div class="entry">
  996. <span class="permalink"><a href="{Permalink}">
  997. {block:NoteCount}({NoteCount}){/block:NoteCount}
  998. {TimeAgo}
  999. </a></span>
  1000. <div style="padding: 0px">
  1001. <div align="center">
  1002. {AudioPlayerGrey}
  1003. {block:PermalinkPage}<br>{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  1004. </div></div></div>
  1005. {/block:Audio}
  1006.  
  1007. {block:Answer}
  1008. <div class="entry">
  1009. <span class="permalink"><a href="{Permalink}">
  1010. {block:NoteCount}({NoteCount}){/block:NoteCount}
  1011. {TimeAgo}
  1012. </a></span>
  1013. <div style="padding: 0px">
  1014. <div align="center">
  1015. <b>{Asker}</b>: "{Question}"
  1016. <br />--------------<br />
  1017. <div class="dead" id="contue"><div style="padding:0px;">{Answer}</div></div>
  1018. </div></div></div>
  1019. {/block:Answer}
  1020.  
  1021. {block:PermalinkPage}
  1022. <div style="font-family:lucida console; font-size:9px; text-transform:uppercase;">
  1023. <div align="center"><div style="letter-spacing: 2px; background-color:#fffff; font-color:#000000;">
  1024. {block:Date}{12Hour}:{Minutes}{AmPm} on {DayOfMonthWithZero}/{MonthNumberWithZero}/{ShortYear}{/block:Date}
  1025. <br />
  1026. {block:RebloggedFrom}reblogged from:<a href="{ReblogRootURL}">{ReblogRootName}</a> origin:<a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  1027. <br />
  1028. {block:HasTags}tags:{block:Tags} <a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
  1029. </div></div>
  1030. {block:PostNotes}{PostNotes}{/block:PostNotes}
  1031. </div>
  1032. {/block:PermalinkPage}
  1033.  
  1034.  
  1035. {/block:Posts}
  1036. {block:ifinfinitescrolling}</div>{/block:ifinfinitescrolling}
  1037. </div>
  1038.  
  1039. </body>
  1040. </html>
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050. <script type="text/javascript">
  1051. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  1052. function tb8_makeArray(n){
  1053. this.length = n;
  1054. return this.length;
  1055. }
  1056.  
  1057. tb8_messages = new tb8_makeArray(2);
  1058. tb8_messages[0] = "haleyrenee";
  1059. tb8_rptType = 'infinite';
  1060. tb8_rptNbr = 5;
  1061. tb8_speed = 230;
  1062. tb8_delay = 2000;
  1063. var tb8_counter=1;
  1064. var tb8_currMsg=0;
  1065. var tb8_tekst ="";
  1066. var tb8_i=0;
  1067. var tb8_TID = null;
  1068. function tb8_pisi(){
  1069. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  1070. document.title = tb8_tekst;
  1071. tb8_sp=tb8_speed;
  1072. tb8_i++;
  1073. if (tb8_i==tb8_messages[tb8_currMsg].length){
  1074. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  1075. }
  1076. if (tb8_currMsg == tb8_messages.length){
  1077. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  1078. clearTimeout(tb8_TID);
  1079. return;
  1080. }
  1081. tb8_counter++;
  1082. tb8_currMsg = 0;
  1083. }
  1084. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  1085. }
  1086. tb8_pisi()
  1087. </script>
Advertisement
Add Comment
Please, Sign In to add comment