kalder

Theme #9 - Knee Socks by kalder

Apr 4th, 2014
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.15 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <head><title>{Title}</title>
  6.  
  7. <link rel="shortcut icon" href="{Favicon}">
  8.  
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10.  
  11. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  12.  
  13.  
  14. <!---- theme #9 - knee socks by kalder, don't copy/repost. protected over creative commons license. --->
  15.  
  16.  
  17. <link href='http://fonts.googleapis.com/css?family=Mrs+Saint+Delafield' rel='stylesheet' type='text/css'>
  18. <link href='http://fonts.googleapis.com/css?family=Parisienne' rel='stylesheet' type='text/css'>
  19.  
  20. <meta name="color:Background" content="#ffffff"/>
  21.  
  22. <meta name="color:Text" content="#838282"/>
  23.  
  24. <meta name="color:Link" content="#b8b8b8"/>
  25.  
  26. <meta name="color:Link hover" content="#b8b8b8"/>
  27.  
  28. <meta name="color:sidebar links" content="#b8b8b8"/>
  29.  
  30. <meta name="color:sidebar links hover" content="#b8b8b8"/>
  31.  
  32. <meta name="color:sidebar links background" content="#b8b8b8"/>
  33.  
  34. <meta name="image:sidebar" content=""/>
  35.  
  36.  
  37. <meta name="text:linkA" content="">
  38.  
  39.  
  40.  
  41. <meta name="text:linkA url" content="/">
  42.  
  43. <meta name="text:linkB" content="">
  44.  
  45. <meta name="text:linkB url" content="/">
  46.  
  47. <meta name="text:linkC" content="">
  48.  
  49. <meta name="text:linkC url" content="/">
  50.  
  51. <meta name="text:linkD" content="">
  52.  
  53. <meta name="text:linkD url" content="/">
  54.  
  55.  
  56. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  57. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  58. <script>
  59. (function($){
  60. $(document).ready(function(){
  61. $("a[title]").style_my_tooltips({
  62. tip_follows_cursor:true,
  63. tip_delay_time:90,
  64. tip_fade_speed:600,
  65. attribute:"title"
  66. });
  67. });
  68. })(jQuery);
  69. </script>
  70.  
  71. <script type="text/javascript"
  72. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  73. <script>
  74.  
  75. $(document).ready(function() {
  76. //
  77.  
  78. //When you click on a link with class of poplight and the href starts with a #
  79. $('a.poplight[href^=#]').click(function() {
  80. var popID = $(this).attr('rel'); //Get Popup Name
  81. var popURL = $(this).attr('href'); //Get Popup href to define size
  82.  
  83. //Pull Query & Variables from href URL
  84. var query= popURL.split('?');
  85. var dim= query[1].split('&');
  86. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  87.  
  88. //Fade in the Popup and add close button
  89. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  90.  
  91. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  92. var popMargTop = ($('#' + popID).height() + 80) / 2;
  93. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  94.  
  95. //Apply Margin to Popup
  96. $('#' + popID).css({
  97. 'margin-top' : -popMargTop,
  98. 'margin-left' : -popMargLeft
  99. });
  100.  
  101. //Fade in Background
  102. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  103. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  104.  
  105. return false;
  106. });
  107.  
  108. //Close Popups and Fade Layer
  109. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  110. $('#fade , .popup_block').fadeOut(function() {
  111. $('#fade, a.close').remove(); //fade them both out
  112. });
  113. return false;
  114. });
  115.  
  116. });
  117. </script>
  118.  
  119. <link href='http://static.tumblr.com/qxlvltu/H6zmrzzjl/chentrada.css' media='screen' rel='stylesheet'/>
  120.  
  121.  
  122.  
  123.  
  124. <style type="text/css">
  125.  
  126.  
  127.  
  128.  
  129.  
  130. body {
  131. font-family: 'Arial';
  132.  
  133. background:{color:background};
  134.  
  135. margin:0px;
  136.  
  137. color:{color:text};
  138.  
  139. font-size:9px;
  140.  
  141. line-height:100%;
  142.  
  143. }
  144.  
  145.  
  146.  
  147. a {
  148.  
  149. text-decoration:none;
  150.  
  151. outline:none;
  152.  
  153. -moz-outline-style:none;
  154.  
  155. color:{color:link};
  156. -moz-transition-duration:0.3s;
  157. -webkit-transition-duration:0.3s;
  158. -o-transition-duration:0.3s;
  159.  
  160. }
  161.  
  162.  
  163.  
  164. a:hover{
  165.  
  166. color:{color:link hover};
  167. -moz-transition-duration:0.3s;
  168. -webkit-transition-duration:0.3s;
  169. -o-transition-duration:0.3s;
  170. }
  171.  
  172.  
  173.  
  174. img {
  175.  
  176. border:none;
  177.  
  178. }
  179.  
  180.  
  181.  
  182.  
  183. blockquote {
  184. font-size: 12px;
  185.  
  186. padding-left:5px;
  187.  
  188. border-left:2px solid;
  189. line-height: 12px;
  190.  
  191. }
  192.  
  193.  
  194.  
  195. blockquote blockquote {
  196.  
  197. padding-left:5px;
  198.  
  199. border-left:2px solid;
  200.  
  201. }
  202.  
  203.  
  204.  
  205. h1 {
  206.  
  207. font-size:10px;
  208.  
  209. }
  210.  
  211.  
  212.  
  213.  
  214.  
  215. #entries {
  216.  
  217. padding:10px;
  218.  
  219. width:500px;
  220.  
  221. margin-left:580px;
  222.  
  223. margin-top:0px;
  224.  
  225. padding:0px;
  226.  
  227. }
  228.  
  229.  
  230.  
  231.  
  232. #post {
  233.  
  234. width:500px;
  235. margin-top: 73px ;
  236. background: #ffffff;
  237. padding: 10px;
  238.  
  239.  
  240. }
  241.  
  242.  
  243.  
  244.  
  245. #sidebar {
  246. width:245px;
  247. position:fixed;
  248. margin-left:230px;
  249. margin-top:105px;
  250. background: #ffffff;
  251. padding: 10px;
  252.  
  253.  
  254. }
  255.  
  256.  
  257.  
  258. #sidebarimage {
  259. width:245px;
  260.  
  261. }
  262.  
  263. #sidebarimage img {
  264.  
  265. width:245px;
  266.  
  267. }
  268.  
  269.  
  270. #pagbox{
  271. background: #ffffff;
  272. width: 148px;
  273.  
  274.  
  275. top: 20px;
  276. margin-left: 92px;
  277. position: static;
  278. padding: 5px;
  279. z-index: 999999999999999999999999999999999999;
  280. }
  281.  
  282. #pagbox a{
  283. color: #000000;
  284. text-transform: uppercase;
  285. font-size: 8px;
  286. font-family: calibri;
  287. }
  288.  
  289. #description {
  290.  
  291.  
  292. width:245px;
  293.  
  294. text-align: justify;
  295. font-family:'Arial';
  296. margin-top:-12px;
  297. margin-left:-10px;
  298. font-size:9px;
  299. position:relative;
  300. line-height: 14px;
  301. padding:10px;
  302.  
  303. color:#6E6E6E;
  304.  
  305.  
  306. word-spacing:0px;
  307.  
  308.  
  309.  
  310. }
  311.  
  312.  
  313. #ari{
  314. font-size:12px;
  315. font-weight:bold;
  316. display:inline;
  317. }
  318.  
  319. #ari a{
  320. color: #e46c91;
  321. }
  322.  
  323.  
  324. #links {
  325. font-family: calibri;
  326. font-size: 8px;
  327. color: {color:sidebar links};
  328. text-transform: uppercase;
  329.  
  330.  
  331. position: relative;
  332. margin-top: 9px;
  333. text-align:center;
  334.  
  335. padding: 6px;
  336.  
  337.  
  338.  
  339.  
  340. }
  341. #links a {
  342.  
  343. font-family: calibri;
  344. font-size: 8px;
  345. text-transform: uppercase;
  346.  
  347.  
  348. color: {color:sidebar links};
  349. padding: 6px;
  350. -webkit-transition:all 0.5s ease-in-out;
  351. -moz-transition:all 0.5s ease-in-out;
  352. -o-transition:all 0.5s ease-in-out;
  353. transition:all 0.5s ease-in-out;
  354.  
  355.  
  356.  
  357. }
  358.  
  359.  
  360. #links a:hover {
  361. color: {color:sidebar links hover};
  362. background: {color:sidebar links background};
  363. padding: 6px;
  364. -webkit-transition:all 0.5s ease-in-out;
  365. -moz-transition:all 0.5s ease-in-out;
  366. -o-transition:all 0.5s ease-in-out;
  367. transition:all 0.5s ease-in-out;
  368.  
  369.  
  370.  
  371. }
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380. .caption {
  381.  
  382. width:500px;
  383.  
  384. text-align:justify;
  385.  
  386. line-height:120%;
  387.  
  388. }
  389.  
  390.  
  391.  
  392. .ask {
  393.  
  394. padding:10px;
  395.  
  396. text-align:left;
  397.  
  398. color:{color:text};
  399.  
  400. background-color:#eee;
  401.  
  402. border-bottom:1px solid #eee;
  403.  
  404. }
  405.  
  406.  
  407.  
  408. .ans {
  409.  
  410. text-align:left;
  411.  
  412. padding:10px;
  413.  
  414. color:{color:text};
  415.  
  416. }
  417.  
  418.  
  419.  
  420. .audio {
  421.  
  422. width:500px;
  423.  
  424. padding-bottom:10px;
  425.  
  426. background-color:{color:infobg};
  427.  
  428. }
  429.  
  430.  
  431.  
  432. .albumart {
  433.  
  434. float:left;
  435.  
  436. padding:0px 10px 10px 0px;
  437.  
  438. }
  439.  
  440.  
  441.  
  442. .albumart img {
  443.  
  444. width:45px;
  445.  
  446. height:45px;
  447.  
  448. }
  449.  
  450.  
  451.  
  452. .playercontainer {
  453.  
  454. text-align:left;
  455.  
  456. padding:10px;
  457.  
  458. background-color:#ffffff;
  459.  
  460. width:480px;
  461.  
  462. }
  463.  
  464.  
  465.  
  466. .audioinfo {
  467.  
  468. padding:10px;
  469.  
  470. color:{color:text};
  471.  
  472. }
  473.  
  474.  
  475.  
  476. #info {
  477. width:500px;
  478.  
  479. font-family:calibri;
  480. margin-top:10px;
  481. margin-left:px;
  482. letter-spacing:1px;
  483. font-size:8px;
  484. font-style:none;
  485.  
  486. line-height:10px;
  487. text-transform:uppercase;
  488.  
  489. }
  490.  
  491. #info a {
  492. text-align:center;
  493. color:{color:link};
  494. }
  495.  
  496. #info a:hover {
  497. -moz-transition-duration:0.3s;
  498. -webkit-transition-duration:0.3s;
  499. -o-transition-duration:0.3s;
  500. color: {color:link hover};
  501. }
  502.  
  503. #date{
  504.  
  505.  
  506. color: #ffffff;
  507. display: inline;
  508. }
  509. #date a {
  510. color:#ffffff;
  511. padding: 5px;
  512. background: #000000;
  513. -moz-transition-duration:0.3s;
  514. -webkit-transition-duration:0.3s;
  515. -o-transition-duration:0.3s;
  516. }
  517.  
  518. #date a:hover {
  519. color: #000000;
  520. background: #ffffff;
  521. -moz-transition-duration:0.3s;
  522. -webkit-transition-duration:0.3s;
  523. -o-transition-duration:0.3s;
  524. }
  525.  
  526.  
  527. #tags{display:inline;
  528. position:relative;
  529. text-align:right;
  530. width:350px;
  531. margin-top:-9px;
  532.  
  533. }
  534.  
  535. .note {
  536.  
  537. text-transform:lowercase;
  538.  
  539. font-style:normal;
  540.  
  541. letter-spacing:0px;
  542.  
  543. font-size: 9px;
  544.  
  545. text-align:left;
  546.  
  547. line-height:90%;
  548.  
  549. margin-left:-40px;
  550.  
  551. }
  552.  
  553.  
  554.  
  555. .note li {
  556.  
  557. list-style-type:none;
  558.  
  559. border-bottom:1px solid {color:border};
  560.  
  561. padding:10px 25px 10px 25px;
  562.  
  563. text-align:left;
  564.  
  565. margin:0px;
  566.  
  567. -moz-transition-duration:0.5s;
  568.  
  569. -webkit-transition-duration:0.5s;
  570.  
  571. -o-transition-duration:0.5s;
  572.  
  573. }
  574.  
  575.  
  576.  
  577. .tags {
  578.  
  579. font-style:normal;
  580.  
  581. width:500px;
  582.  
  583. text-transform:uppercase;
  584.  
  585. font-style:normal;
  586.  
  587. color:{color:tags};
  588.  
  589. letter-spacing:2px;
  590.  
  591. line-height:120%;
  592.  
  593. font-size:8px;
  594.  
  595. text-align:left;
  596.  
  597. padding:2px;
  598.  
  599. -moz-transition-duration:0.5s;
  600.  
  601. -webkit-transition-duration:0.5s;
  602.  
  603. -o-transition-duration:0.5s;
  604.  
  605. }
  606.  
  607.  
  608.  
  609. .tags a {
  610.  
  611. color:{color:tags};
  612.  
  613. letter-spacing:1px;
  614.  
  615. padding:1px;
  616.  
  617. }
  618.  
  619.  
  620.  
  621. .tags a:hover {
  622.  
  623. color:{color:link};
  624.  
  625. }
  626.  
  627.  
  628. ul.chat, .chat ol, .chat li {
  629.  
  630. list-style:none;
  631.  
  632. margin:0px;
  633.  
  634. padding:2px;
  635.  
  636. }
  637.  
  638.  
  639.  
  640. .label {
  641.  
  642. text-decoration:underline;
  643.  
  644. font-weight:300;
  645.  
  646. background-color:{color:infobg};
  647.  
  648. margin-right:5px;
  649.  
  650. }
  651.  
  652.  
  653.  
  654.  
  655. .user_1 .label {color:{color:text}; font-weight:bold}
  656.  
  657. .user_2 .label {color:{color:link}; font-weight:bold}
  658.  
  659. .user_3 .label {color:{color:text}; font-weight:bold}
  660.  
  661. .user_4 .label {color:{color:link}; font-weight:bold}
  662.  
  663. .user_5 .label {color:{color:text}; font-weight:bold}
  664.  
  665. .user_6 .label {color:{color:link}; font-weight:bold}
  666.  
  667. ul.chat, .chat ol, .chat li {list-style:none; padding:2px}
  668.  
  669. @font-face { font-family: "basket";src: url('http://static.tumblr.com/ejm8w78/E7bmdzk1u/kgthefighter.ttf');,}
  670.  
  671.  
  672. #s-m-t-tooltip {-webkit-animation: Beeh 500ms;
  673.  
  674. max-width:300px; /* largura máxima */
  675.  
  676. background-color:#fff; /* background */
  677.  
  678. border:1px solid #e7e9ea; /* cor e espessura da borda */
  679.  
  680. font-family:'calibri'; /* fonte */
  681.  
  682. font-size:10px; /* tamanho */
  683.  
  684. color:#aaaaaa; /* cor */
  685.  
  686. letter-spacing:1px; /* espaçamento */
  687.  
  688. text-transform:lowercase; /* uppercase(maiúscula), lowercase(minúscula) ou none(nenhum) */
  689.  
  690. padding:3px 4px 3px 4px; /* tamanho do padding */
  691.  
  692. margin:20px 0px 0px 20px; /* tamanho da margem */
  693.  
  694. z-index:99999999999; /* deixa acima de tudo, não mexa */}
  695.  
  696. @-webkit-keyframes Beeh {
  697. 0% {-webkit-transform: scale(.4);}
  698. 50% {-webkit-transform: scale(1.04);}
  699. 70% {-webkit-transform: scale(.9);}
  700. 100% {-webkit-transform: scale(1);}}
  701.  
  702.  
  703.  
  704.  
  705.  
  706. #credits{ position:fixed; bottom:10px; right:10px; padding:5px;
  707. font-size:8px;
  708. text-transform: uppercase;
  709. font-family: calibri;
  710.  
  711. color: #000000;
  712.  
  713.  
  714.  
  715. text-align:center;}
  716.  
  717. #credits a{ color: #000000;}
  718. #credits a:hover{ color: #000000; text-transform: uppercase;}
  719.  
  720. .heart{
  721. display: inline;
  722. color: #d94848;
  723. }
  724.  
  725. .dot {
  726. display: inline;
  727. color: {color:sidebar links background};
  728. }
  729.  
  730.  
  731.  
  732. iframe#tumblr_controls {
  733. white-space:nowrap; filter: invert(100%); -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%);opacity:0.2;
  734. }
  735. #tumblr_controls{
  736. position:fixed !important;
  737. -webkit-filter: invert(100%)
  738. }
  739.  
  740.  
  741.  
  742.  
  743. /** Estilo de Ask por ruby [connectionhtml], usou ? creditou ! **/
  744. .pergunta{background:#eee;padding-left:4px;padding:7px;margin-left:0px;margin-right: 0;overflow: hidden;font-size:9px; font-family:trebuchet ms;text-shadow:1px 1px 0px #fff;margin-top:1px;}
  745.  
  746. #simbol1{color:#000000;font-size:15px;font-family:tahoma;margin-top:15px;-webkit-transform: rotate(45deg);z-index:9;margin-left:39px;width:15px;height:15px;position:absolute;}
  747.  
  748. .pergunta2{background:#fff;padding-left:4px;margin-left:0px;margin-right:3;overflow: hidden;font-size:9px; font-family:trebuchet ms;margin-top:1px;padding-top:-2px;border-bottom:1px solid #eee;}
  749.  
  750. .asker{font-family:georgia;font-size:9px;background-color:#E3E3E3; overflow:hidden;color:#7D7D7D;margin-left:0px;padding:7px;text-shadow:1px 1px 0px #ffffff;margin-top:0px;position:relative;line-height:26px;height:26px;font-style:italic;}
  751.  
  752. .asker a {color: #000000;}
  753. .fotoask {opacity: 1;-webkit-transition: all 0.6s ease-out;float:left;margin-right:1px;border-right:4px solid #000000;}
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760. {CustomCSS}</style></head><body>
  761.  
  762.  
  763.  
  764. <div id="sidebar">
  765.  
  766.  
  767. <div id="sidebarimage">
  768.  
  769. <img src="{image:sidebar}">
  770. </div>
  771.  
  772. <div class="CHentrada">
  773. <div id="links">
  774.  
  775.  
  776. <a href="{text:LinkA url}">{text:LinkA}</a>
  777. <a href="{text:LinkB url}">{text:LinkB}</a>
  778. <a href="{text:LinkC url}">{text:LinkC}</a>
  779. <a href="{text:LinkD url}">{text:LinkD}</a>
  780.  
  781.  
  782. </div>
  783. </div>
  784.  
  785. <br>
  786.  
  787.  
  788.  
  789.  
  790. <div id="description">{Description}</div>
  791.  
  792. <div id="pagbox">
  793.  
  794.  
  795. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back</a> {/block:PreviousPage}
  796. {block:NextPage}— <a href="{NextPage}">forth</a>{/block:NextPage}{/block:Pagination}
  797.  
  798.  
  799.  
  800.  
  801.  
  802. </div>
  803.  
  804.  
  805. </div>
  806.  
  807.  
  808.  
  809.  
  810.  
  811. <div id="entries">
  812. {block:Posts}
  813. <div id="post">
  814.  
  815. {block:Text}
  816. <div id="topinho">{block:Title}{Title}{/block:Title}</div>
  817. {Body}{/block:Text}
  818.  
  819. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  820. {block:Caption}{Caption}{/block:Caption}{/block:Photo}
  821.  
  822. {block:Photoset}{Photoset-500}{block:Caption}{Caption}
  823. {/block:Caption}{/block:Photoset}
  824.  
  825. {block:Quote}<h2>"{Quote}"</h2>
  826. {block:Source}<div class="qsource"> —{Source}</div>
  827. {/block:Source}{/block:Quote}
  828.  
  829. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  830.  
  831. {block:Chat}{block:Title}{Title}{/block:Title}{block:Lines}{block:Label}<b><u>{Label}</u></b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  832.  
  833. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
  834. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  835. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  836. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times <br>
  837. {/block:Audio}<br>
  838.  
  839. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  840.  
  841. {block:Answer}<img src="{AskerPortraitURL-40}" align="left" class="fotoask">
  842. <div id="simbol1">◥</div>
  843. <div class="asker"> &nbsp; {Asker} asked {TimeAgo}</div>
  844. <div class="pergunta">{Question} </div>
  845. <div class="pergunta2">{Answer}</div>{/block:answer}
  846.  
  847. <div id="info">
  848. <div id="date"><a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a></div>
  849. {block:RebloggedFrom} <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  850. • {block:ContentSource} <a href="{SourceURL}"><a href="{SourceURL}">source</a>{/block:ContentSource}
  851. {block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}
  852. with <div class="heart">♥</div> {NoteCountWithLabel}</a>
  853. {block:HasTags}
  854. <div id="tags" style="float:right"> tagged with:
  855.  
  856. {block:Tags}<a href="/tagged/{Tag}">#{Tag}</a>&nbsp;{/block:Tags}
  857. </div>{block:HasTags}
  858. </div>
  859. </div>
  860. {/block:Posts}
  861. <br><br>{block:PostNotes}<div id="notes"><left>{PostNotes}</div>{/block:PostNotes}
  862.  
  863. {/block:Posts}</div></div></div>
  864. <br><br><br><br>
  865.  
  866.  
  867.  
  868.  
  869.  
  870.  
  871. </div>
  872.  
  873.  
  874.  
  875.  
  876.  
  877. </div>
  878.  
  879. </div>
  880.  
  881. </div>
  882.  
  883.  
  884.  
  885. </body>
  886.  
  887.  
  888.  
  889.  
  890. <div id="credits">
  891.  
  892. <a href="http://kalder.tumblr.com/">kt</a>
  893.  
  894. </div>
  895.  
  896. </html>
Add Comment
Please, Sign In to add comment