Advertisement
ten-tation

Theme #15 by thedoctorknows

Jun 15th, 2013
1,401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 17.27 KB | None | 0 0
  1. <!-- THEME #15 BY THEDOCTORKNOWS
  2.  
  3. Please don't remove the credit, claim this code as your own nor use this as a base code. Thank you!-->
  4.  
  5. <html>
  6.  
  7. <head>
  8.  
  9. <meta name="color:Background" content="#000000" />
  10. <meta name="color:Text" content="#8a8989" />
  11. <meta name="color:Link" content="#464545" />
  12. <meta name="color:LinkHover" content="#686869" />
  13. <meta name="color:PostsBg" content="#191919" />
  14. <meta name="color:InfoBg" content="#242424" />
  15. <meta name="color:Tags" content="#4b4b4b" />
  16. <meta name="color:SidebarBg" content="#000000" />
  17. <meta name="color:DescAndLinks" content="#8a8989" />
  18. <meta name="color:Info" content="#8a8989" />
  19. <meta name="color:Building" content="#272727">
  20. <meta name="color:Roof" content="#3f3f3f">
  21. <meta name="text:FontSize" content="10" />
  22. <meta name="text:TagsFontSize" content="8" />
  23. <meta name="text:DescFontSize" content="10" />
  24. <meta name="text:LinksFontSize" content="8" />
  25. <meta name="text:Link 1 URL" content="/" />
  26. <meta name="text:Link 1" content="" />
  27. <meta name="text:Link 2 URL" content="/" />
  28. <meta name="text:Link 2" content="" />
  29. <meta name="text:Link 3 URL" content="/" />
  30. <meta name="text:Link 3" content="" />
  31. <meta name="text:Link 4 URL" content="/" />
  32. <meta name="text:Link 4" content="" />
  33. <meta name="if:LinksStyleOne" content="1" />
  34. <meta name="if:LinksStyleTwo" content="0" />
  35. <meta name="if:Tags In Italics" content="1" />
  36. <meta name="if:Info Right" content="1" />
  37. <meta name="if:Info Top" content="1" />
  38. <meta name="if:Greyscale" content="1" />
  39. <meta name="if:Faded Images" content="1" />
  40. <meta name="if:Statue" content="1" />
  41.  
  42. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  43. <title>{Title}</title>
  44.  
  45. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
  46. <script src="http://static.tumblr.com/ccsibxa/Oopmn4e38/function1.js" type="text/javascript" charset="utf-8"></script>
  47. <script src="http://static.tumblr.com/ccsibxa/nOUmn4eau/function2.js" type="text/javascript" charset="utf-8"></script>
  48. <script src="http://static.tumblr.com/ccsibxa/M5amn4ef8/function3.js" type="text/javascript" charset="utf-8"></script>
  49. <script src="http://static.tumblr.com/ccsibxa/vcsmn4i5e/function4.js" type="text/javascript" charset="utf-8"></script>
  50. <link href="http://fonts.googleapis.com/css?family=Merriweather+Sans" rel="stylesheet" type="text/css">
  51.  
  52. <style type="text/css" media="screen">
  53.  
  54. body {
  55.     background:{color:Background};
  56.     color:{color:Text};
  57.     font-family:Calibri;
  58.     font-size:{text:FontSize}px;
  59.     line-height:120%;
  60. }
  61.  
  62. a {
  63.     text-decoration: none;
  64.     color: {color:Link};
  65.     -webkit-transition: all 0.5s ease-out;
  66.     -moz-transition: all 0.5s ease-out;
  67.     transition: all 0.5s ease-out;
  68. }
  69.  
  70. #posts a {
  71.     font-style:italic;
  72. }
  73.  
  74. a:hover {
  75.     text-decoration:underline;
  76.     color:{color:LinkHover};
  77. }
  78.  
  79. blockquote {
  80.     border-left:3px solid {color:Text};
  81.     padding-left:5px;
  82. }
  83.  
  84. {Block:IfGreyscale}
  85.     #content a img, #posts img, #photop {
  86.        filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  87.     filter: gray;
  88.     -webkit-filter: grayscale(100%);
  89.     -webkit-transition: all 0.8s ease-out;
  90.     -moz-transition: all 0.8s ease-out;
  91.     transition: all 0.8s ease-out;
  92.     }
  93.  
  94.     #content a:hover img, #posts img:hover, #photop:hover {
  95.        filter:none;
  96.        -webkit-filter:none;
  97.     }
  98. {/Block:IfGreyscale}
  99.  
  100. {Block:IfFadedImages}
  101.     #posts a img, #posts img, #photop {
  102.        border: 0px;
  103.        opacity: .60;
  104.        filter: alpha(opacity=100);
  105.        -o-transition: opacity 0.7s linear;
  106.        -webkit-transition: opacity 0.7s linear;
  107.        -moz-transition: opacity 0.7s linear;
  108.     }
  109.  
  110.     #posts a:hover img, #posts img:hover, #photop:hover {
  111.        opacity: 1;
  112.        filter: alpha(opacity=80);
  113.        -o-transition: opacity 0.5s linear;
  114.        -webkit-transition: opacity 0.5s linear;
  115.        -moz-transition: opacity 0.5s linear;
  116.     }
  117. {/Block:IfFadedImages}
  118.  
  119. .blocks {
  120.     width: 60px;
  121.     height: 145px;
  122.     position: absolute;
  123.     bottom:235px;
  124. }
  125.  
  126. #block1 {
  127.     margin-left:240px;
  128. }
  129.  
  130. #block2 {
  131.     margin-left:100px;
  132. }
  133.  
  134. #bx {
  135.     width:100px;
  136.     height:100px;
  137.     background:transparent;
  138.     margin-top:-400px;
  139. }
  140.  
  141. #container {
  142.     position:fixed;
  143.     top:0px;
  144.     left:0px;
  145.     width:400px;
  146.     height:120%;
  147.     background:{color:SidebarBg};
  148. }
  149.  
  150. #statue {
  151.     position:fixed;
  152.     bottom:0px;
  153.     left:-20px;
  154.     opacity:0.3;
  155.     -webkit-transition: all 0.5s ease-out;
  156.     -moz-transition: all 0.5s ease-out;
  157.     transition: all 0.5s ease-out;
  158.     filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
  159.     filter: gray;
  160.     -webkit-filter: grayscale(100%);
  161. }
  162.  
  163. #statue img {
  164.     width:450px;
  165. }
  166.  
  167. #building1 {
  168.     position:fixed;
  169.     bottom:0px;
  170.     left:20px;
  171.     width:350px;
  172.     height:60px;
  173.     background:{color:Building};
  174. }
  175.  
  176. #building2 {
  177.     position:fixed;
  178.     bottom:60px;
  179.     left:20px;
  180.     border-bottom: 20px solid {color:Roof};
  181.     border-left: 30px solid transparent;
  182.     border-right: 30px solid transparent;
  183.     height:0;
  184.     width:290px;
  185. }
  186.  
  187. #gravity {
  188.     height:120%;
  189.     width:400px;
  190. }
  191.  
  192. #posts2 {
  193.     width:500px;
  194. }
  195.  
  196. #posts, ol.notes {
  197.     width:500px;
  198.     padding:30px;
  199.     background:{color:PostsBg};
  200.     overflow:hidden;
  201.     {Block:IfInfoTop}
  202.         border-top:5px solid {color:InfoBg};
  203.         margin:40px 0px 0px 442px;
  204.     {/Block:IfInfoTop}
  205.     {Block:IfNotInfoTop}
  206.         border-bottom:5px solid {color:InfoBg};
  207.         margin:5px 0px 40px 442px;
  208.     {/Block:IfNotInfoTop}
  209.     -webkit-transition: all 0.5s ease-out;
  210.     -moz-transition: all 0.5s ease-out;
  211.     transition: all 0.5s ease-out;
  212. }
  213.  
  214. ol.notes {
  215.         list-style:none;
  216.         line-height:100%;
  217. }
  218.  
  219. .quotepost {
  220.     padding-top:10px;
  221. }
  222.  
  223. .belowposts {
  224.     position:absolute;
  225.     width:220px;
  226.     font-size:9px;
  227.     padding:2px 5px;
  228.     text-transform:uppercase;
  229.     text-align:center;
  230.     line-height:140%;
  231.     {Block:IfInfoRight}margin-left:772px;{/Block:IfInfoRight}
  232.     {Block:IfNotInfoRight}margin-left:442px;{/Block:IfNotInfoRight}
  233.     {Block:IfInfoTop}margin-top:-5px;{/Block:IfInfoTop}
  234.     {Block:IfNotInfoTop}margin-top:-50px;{/Block:IfNotInfoTop}
  235.     background:{color:InfoBg};
  236.     font-style:normal;
  237.     -webkit-transition: all 0.5s ease-out;
  238.     -moz-transition: all 0.5s ease-out;
  239.     transition: all 0.5s ease-out;
  240. }
  241.  
  242. .belowposts a {
  243.     font-style:normal;
  244.     color:{color:Info};
  245. }
  246.  
  247. .belowposts a:hover {
  248.     text-decoration:none;
  249. }
  250.  
  251. .tags {
  252.     width:500px;
  253.     margin-top:0px;
  254.     margin-left:450px;
  255.     font-size:{text:TagsFontSize}px;
  256.     text-transform:lowercase;
  257.     {Block:IfTagsInItalics}font-style:italic;{/Block:IfTagsInItalics}
  258.     text-align:left;
  259.     opacity:0;
  260.     color:{color:Tags};
  261.     -webkit-transition: all 0.5s ease-out;
  262.     -moz-transition: all 0.5s ease-out;
  263.     transition: all 0.5s ease-out;
  264. }
  265.  
  266. #posts2:hover .tags {
  267.     opacity:1;
  268. }
  269.  
  270. .tags a {
  271.     color:{color:Tags};
  272. }
  273.  
  274. .tags a:hover {
  275.     text-decoration:none;
  276. }
  277.  
  278. .lks a:hover {
  279.     text-decoration:none;
  280. }
  281.  
  282. #desc {
  283.     font-size:{text:DescFontSize}px;
  284.     -webkit-transition: all 0.5s ease-out;
  285.     -moz-transition: all 0.5s ease-out;
  286.     transition: all 0.5s ease-out;
  287.     line-height:120%;
  288. }
  289.  
  290. #inf {
  291.     top:10px;
  292.     width:270px;
  293.     position:fixed;
  294.     left:55px;
  295. }
  296.  
  297. #pagination {
  298.     position:fixed;
  299.     bottom:10px;
  300.     left:0px;
  301.     width:400px;
  302.     text-align:center;
  303.     color:{color:Roof};
  304.     font-size:20px;
  305. }
  306.  
  307. #pagination a {
  308.     color:{color:Roof};
  309. }
  310.  
  311. #pagination a:hover {
  312.     text-decoration:none;
  313. }
  314.  
  315. .lks {
  316.     font-size:{text:LinksFontSize}px;
  317. }
  318.  
  319. #posts .tags {
  320.     font-style:normal;
  321.     opacity:1;
  322.     left:0px;
  323.     top:0px;
  324. }
  325.  
  326. {Block:IfLinksStyleOne}
  327.  
  328. .lks {
  329.     position:absolute;
  330.     list-style:none;
  331.     display:inline;
  332.     width:250px;
  333.     padding:10px;
  334.     text-transform:uppercase;
  335.     text-align:center;
  336.     background: rgb(255, 255, 255) transparent;
  337.     background: rgba(255, 255, 255, 0.1);
  338.     line-height:200%;
  339. }
  340.  
  341. .lks li {
  342.     display:inline;
  343.     padding-right:10px;
  344.     padding-left:10px;
  345.     -webkit-transition: all 0.5s ease-out;
  346.     -moz-transition: all 0.5s ease-out;
  347.     transition: all 0.5s ease-out;
  348. }
  349.  
  350. .lks li:hover {
  351.     opacity:1;
  352. }
  353.  
  354. .lks a {
  355.     color:{color:DescAndLinks};
  356. }
  357.  
  358. #desc {
  359.     margin-top:40px;
  360.     width:230px;
  361.     padding:20px;
  362.     background: rgb(255, 255, 255) transparent;
  363.     background: rgba(255, 255, 255, 0.1);
  364.     color:{color:DescAndLinks};
  365. }
  366.  
  367. #desc a {
  368.     color:{color:DescAndLinks};
  369. }
  370.  
  371. {/Block:IfLinksStyleOne}
  372.  
  373. {Block:IfLinksStyleTwo}
  374.  
  375. .lks {
  376.     position:absolute;
  377.     list-style:none;
  378.     display:inline;
  379.     width:250px;
  380.     padding:0px 10px 10px 10px;
  381.     font-style:italic;
  382.     text-align:center;
  383.     line-height:170%;
  384. }
  385.  
  386. .lks li {
  387.     display:inline;
  388.     padding-right:10px;
  389.     padding-left:10px;
  390.     -webkit-transition: all 0.5s ease-out;
  391.     -moz-transition: all 0.5s ease-out;
  392.     transition: all 0.5s ease-out;
  393. }
  394.  
  395. .lks li:hover {
  396.     opacity:1;
  397. }
  398.  
  399. .lks a {
  400.     color:{color:DescAndLinks};
  401. }
  402.  
  403. #desc {
  404.     margin-top:40px;
  405.     width:230px;
  406.     padding:20px;
  407.     background: rgb(255, 255, 255) transparent;
  408.     background: rgba(255, 255, 255, 0.1);
  409.     color:{color:DescAndLinks};
  410. }
  411.  
  412. #desc a {
  413.     color:{color:DescAndLinks};
  414. }
  415.  
  416. {/Block:IfLinksStyleTwo}
  417.  
  418. .caption {
  419.     margin-top:10px;
  420. }
  421.  
  422. .portrait {
  423.     width:48px;
  424.     height:48px;
  425.     border:5px solid {color:InfoBg};
  426. }
  427.  
  428. .asker {
  429.     text-transform:uppercase;
  430.     padding:5px 10px;
  431.     width:422px;
  432.     margin-left:58px;
  433.     text-align:right;
  434.     font-style:italic;
  435.     font-size:9px;
  436.     background:{color:InfoBg};
  437.     color:{color:Info};
  438.     margin-top:-58px;
  439.     letter-spacing:0px;
  440. }
  441.  
  442. .asker a {
  443.     color:{color:Info};
  444. }
  445.  
  446. .question {
  447.     font-style:italic;
  448.     width:422px;
  449.     height:auto;
  450.     padding:10px;
  451.     margin-left:58px;
  452.     text-align:right;
  453.     margin-top:-5px;
  454.     overflow:hidden;
  455. }
  456.  
  457. .answer {
  458.     margin-top:20px;
  459. }
  460.  
  461. ul.chat {
  462.     list-style:none;
  463. }
  464.  
  465. .chat1, .chat {
  466.     margin-left:0px;
  467. }
  468.  
  469. .chat, .chat1, .chat2 {
  470.     margin-top:-3px;
  471.     margin-bottom: -7px;
  472.     padding:5px;
  473. }
  474.  
  475. .chat2odd {
  476.     padding:5px;
  477.     background:{color:InfoBg};
  478.     color:{color:Text};
  479. }
  480.  
  481. .chat2even {
  482.     padding:5px;
  483. }
  484.  
  485. #player {
  486.     width:30px;
  487.     height:30px;
  488.     overflow:hidden;
  489.     position:absolute;
  490.     margin-top:40px;
  491.     margin-bottom:45px;
  492.     margin-left:40px;
  493.     z-index:9999;
  494. }
  495.  
  496. #albumart {
  497.     float:left;
  498.     border:4px solid {color:InfoBg};
  499.     background:{color:PostsBg};
  500.     padding-bottom:-3px;
  501.     margin-right:10px;
  502.     width:100px;
  503.     height:100px;
  504. }
  505.  
  506. #albumart img {
  507.     width:100px;
  508.     height:100px;
  509. }
  510.  
  511. #aud {
  512.     min-height:100px;
  513. }
  514.  
  515. .credit {
  516.     text-transform: uppercase;
  517.     position: fixed;
  518.     background:{color:InfoBg};
  519.     color:{color:Info};
  520.     bottom:-40px;
  521.     right:5px;
  522.     font-size:9px;
  523.     border:1px solid {color:Info};
  524.     padding:1px 10px;
  525.     opacity:0.9;
  526.     -webkit-border-top-left-radius: 5px;
  527. -webkit-border-top-right-radius: 5px;
  528. -moz-border-radius-topleft: 5px;
  529. -moz-border-radius-topright: 5px;
  530. border-top-left-radius: 5px;
  531. border-top-right-radius: 5px;
  532. -webkit-transition: all 0.5s ease-out;
  533.     -moz-transition: all 0.5s ease-out;
  534.     transition: all 0.5s ease-out;
  535. }
  536.  
  537. .credit a {
  538.     color:{color:Info};
  539. }
  540.  
  541. .credit:hover {
  542.     bottom:0px;
  543.     opacity:1;
  544. }
  545.    
  546. </style>
  547.  
  548. </head>
  549.  
  550. <body>
  551.  
  552. <div id="container">
  553.     <div id="gravity">
  554.         {Block:IfStatue}<div id="statue"><img src="http://static.tumblr.com/ccsibxa/LjOmog3al/sol.png"></div>{/Block:IfStatue}
  555.         <div id="building1"></div>
  556.         <div id="building2"></div>
  557.         <div id="block1" class="blocks"><img src="http://static.tumblr.com/ccsibxa/eTimogau5/rory2.png"></div>
  558.         <div id="block2" class="blocks"><img src="http://static.tumblr.com/ccsibxa/UH9mogauu/amy2.png"></div>
  559.     </div>
  560.     <div id="bx"></div>
  561. </div>
  562.  
  563. <div id="pagination">
  564.     {block:Pagination}
  565.         {block:PreviousPage}
  566.             <a href="{PreviousPage}">«</a>
  567.         {/block:PreviousPage}
  568.         {block:NextPage}
  569.             <a href="{NextPage}">»</a>
  570.         {/block:NextPage}
  571.     {/block:Pagination}
  572. </div>
  573.  
  574. <div id="inf">
  575.     <div id="desc">{block:Description}
  576.         {Description}
  577.     {/block:Description}</div>
  578.     <ul class="lks">
  579.         <a href="/"><li>index</li></a>
  580.         <a href="/ask"><li>message</li></a>
  581.         <a href="/archive"><li>archive</li></a>
  582.         {Block:IfLink1}<a href="{text:Link 1 URL}"><li>{text:Link 1}</li></a>{/Block:IfLink1}
  583.         {Block:IfLink2}<a href="{text:Link 2 URL}"><li>{text:Link 2}</li></a>{/Block:IfLink2}
  584.         {Block:IfLink3}<a href="{text:Link 3 URL}"><li>{text:Link 3}</li></a>{/Block:IfLink3}
  585.         {Block:IfLink4}<a href="{text:Link 4 URL}"><li>{text:Link 4}</li></a>{/Block:IfLink4}
  586.     </ul>
  587. </div>
  588.  
  589. <div id="content">
  590. {block:Posts}
  591. {block:ContentSource}
  592. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  593. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  594. {/block:SourceLogo}
  595. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  596. {/block:ContentSource}
  597. <div id="posts2">
  598.  
  599. {Block:IfInfoTop}<div class="belowposts">{block:Date}<a href="{Permalink}" target="_blank">{TimeAgo}</a><a href="{ReblogRootURL}"><a href={ReblogURL} target=_blank>&nbsp;&nbsp;&nbsp;reblog</a> {/block:Date}{block:NoteCount}<a href="{Permalink}" target="_blank">&nbsp;&nbsp;&nbsp;{NoteCountWithLabel}</a>{/block:NoteCount} {block:RebloggedFrom}<a href="{ReblogParentURL}">&nbsp;&nbsp;&nbsp;via</a><a href="{ReblogRootURL}">&nbsp;&nbsp;&nbsp;©</a>{/block:RebloggedFrom}</div>{/Block:IfInfoTop}
  600.  
  601. {Block:IfNotInfoTop}<div class="tags">{block:HasTags}tagged as:{block:Tags} <a href="{TagURL}" target="_blank">&nbsp;&nbsp;&nbsp;{Tag}</a>{/block:Tags}{/block:HasTags}</div>{/Block:IfNotInfoTop}
  602.  
  603. <div id="posts">
  604.  
  605. {block:Text}
  606. <div class="textpost">
  607. {block:Title}
  608. <a href="{Permalink}"><h2>{Title}</h2></a>
  609. {/block:Title}
  610.  
  611. {Body}
  612. </div>
  613. {/block:Text}
  614.  
  615.  
  616. {Block:Photo}
  617. {LinkOpenTag}
  618. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  619. {LinkCloseTag}
  620.  
  621. {block:Caption}
  622. <div class="caption">{Caption}</div>
  623. {/block:Caption}
  624. {/Block:Photo}
  625.  
  626. {block:Photoset}
  627. <div class="photopost">
  628. <center><div id="photop">{Photoset-500}</div></center>
  629.  
  630. {block:Caption}
  631. <div class="caption">{Caption}</div>
  632. {/block:Caption}
  633. </div>
  634. {/block:Photoset}
  635.  
  636. {block:Quote}
  637. <div class="quotepost"><center>"{Quote}"</center></div>
  638. {block:Source}<div class="source">—{Source}{/block:Source}</div>{/block:Quote}
  639.  
  640. {block:Link}
  641. <div class="linkpost">
  642. <a href="{URL}" class="link" {Target}><h2>{Name}</h2></a></div>
  643. {block:Description}
  644. <div class="description">{Description}</div>
  645. {/block:Description}
  646. {/block:Link}
  647.  
  648. {block:Chat}
  649.     <ul class="chat">
  650.       <div class="chat">
  651.         <div class="chat1">
  652.             {Block:Lines}
  653.                 <div class="chat2{Alt}">
  654.                 {Block:Label}
  655.                     <span>{Label}</span>
  656.                 {/Block:Label}
  657.             {Line}
  658.                 </div>
  659.             {/Block:Lines}
  660.         </div>
  661.         </div>
  662.     </ul>
  663. {/block:Chat}
  664.  
  665. {block:Answer}<div class="portrait"><img src="{AskerPortraitURL-48}"></div>
  666. <div class="asker">{Asker}asked</div>
  667. <div class="question">{Question}</div>
  668. <div class="answer">{Answer}</div>
  669. {/block:Answer}
  670.  
  671. {block:Video}<div class="videopost">
  672. <center>{Video-500}</center>
  673. {block:Caption}
  674. <div class="caption">{Caption}</div>
  675. {/block:Caption}
  676. </div>
  677. {/block:Video}
  678.  
  679. {block:Audio}<div id="aud">
  680. <div id="player">{AudioPlayerGrey}</div>      
  681. <div id="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div>
  682. {PlayCountWithLabel}
  683. {block:Caption}<div class="acaption">{caption}</div>{/block:Caption}
  684. </div>
  685. {/block:Audio}
  686.  
  687. </div>
  688.  
  689. {Block:IfInfoTop}<div class="tags">{block:HasTags}tagged as:{block:Tags} <a href="{TagURL}" target="_blank">&nbsp;&nbsp;&nbsp;{Tag}</a>{/block:Tags}{/block:HasTags}</div>{/Block:IfInfoTop}
  690.  
  691. {Block:IfNotInfoTop}<div class="belowposts">{block:Date}<a href="{Permalink}" target="_blank">{TimeAgo}</a><a href="{ReblogRootURL}"><a href={ReblogURL} target=_blank>&nbsp;&nbsp;&nbsp;reblog</a> {/block:Date}{block:NoteCount}<a href="{Permalink}" target="_blank">&nbsp;&nbsp;&nbsp;{NoteCountWithLabel}</a>{/block:NoteCount} {block:RebloggedFrom}<a href="{ReblogParentURL}">&nbsp;&nbsp;&nbsp;via</a><a href="{ReblogRootURL}">&nbsp;&nbsp;&nbsp;©</a>{/block:RebloggedFrom}</div>{/Block:IfNotInfoTop}
  692. {/block:Posts}
  693. {block:PostNotes}{PostNotes}{/block:PostNotes}
  694.  
  695. </div>
  696.  
  697. <div class="credit"><center>credit:</center><br /><center><a href="http://lumos5000.tumblr.com/">artwork</a></center><center><a href="http://thedoctorknows.tumblr.com/">theme</a></center></div>
  698.  
  699. </body>
  700.    
  701. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement