Advertisement
chrishasstiles

Greenberg theme

Jan 22nd, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.05 KB | None | 0 0
  1.  
  2.  
  3. <!--Farahmir base code-->
  4.  
  5. <!DOCTYPE html>
  6. <head>
  7.  
  8.  
  9. <title>{Title}</title>
  10.  
  11. <link rel="shortcut icon" href="{Favicon}">
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  14.  
  15. <!--Default Variables-->
  16.  
  17. <meta name="color:Background" content="#ffffff"/>
  18. <meta name="color:Text" content="#aaaaaa"/>
  19. <meta name="color:Link" content="#000000"/>
  20. <meta name="color:tags" content="#fff"/>
  21. <meta name="color:post background" content="#444"/>
  22. <meta name="color:hover" content="#fff"/>
  23. <meta name="color:bold" content=""/>
  24. <meta name="color:italic" content=""/>
  25.  
  26. <meta name="image:Sidebar Image" content=""/>
  27. <meta name="image:background" content=""/>
  28.  
  29. <meta name="text:Link 1 URL" content="" />
  30. <meta name="text:Link 1" content="" />
  31. <meta name="text:Link 2 URL" content="" />
  32. <meta name="text:Link 2" content="" />
  33. <meta name="text:Link 3 URL" content="" />
  34. <meta name="text:Link 3" content="" />
  35. <meta name="text:ask link" content=""/>
  36. <meta name="text:popup box 1" content=""/>
  37. <meta name="text:popup box 2" content=""/>
  38. <meta name="text:popup box 3" content=""/>
  39.  
  40.  
  41.  
  42.  
  43.  
  44. <!-- jquery for tooltips-->
  45.  
  46.  
  47. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  48.  
  49. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  50.  
  51. <script>
  52.  
  53. (function($){
  54.  
  55. $(document).ready(function(){
  56.  
  57. $("a[title]").style_my_tooltips({
  58.  
  59. tip_follows_cursor:true,
  60.  
  61. tip_delay_time:30,
  62.  
  63. tip_fade_speed:300,
  64.  
  65. attribute:"title"
  66.  
  67. });
  68.  
  69. });
  70.  
  71. })(jQuery);
  72.  
  73. </script>
  74.  
  75.  
  76. <script type="text/javascript"
  77. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  78. <script>
  79. $(document).ready(function() {
  80. //
  81. $('a.poplight[href^=#]').click(function() {
  82. var popID = $(this).attr('rel'); //Get Popup Name
  83. var popURL = $(this).attr('href'); //Get Popup href to define size
  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. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  88. var popMargTop = ($('#' + popID).height() + 80) / 2;
  89. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  90. //Apply Margin to Popup
  91. $('#' + popID).css({
  92. 'margin-top' : -popMargTop,
  93. 'margin-left' : -popMargLeft
  94. });
  95. $('body').append('<div id="fade"></div>');
  96. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  97. return false;
  98. });
  99. $('a.close, #fade').live('click', function() {
  100. $('#fade , .popup_block').fadeOut(function() {
  101. $('#fade, a.close').remove(); //fade them both out
  102. });
  103. return false;
  104. });
  105. });
  106. </script>
  107.  
  108.  
  109.  
  110. <!--CSS customization here. -->
  111.  
  112. <style type="text/css">
  113.  
  114. /* Let's get this party started */
  115. ::-webkit-scrollbar {
  116. width: 12px;
  117. }
  118.  
  119. /* Track */
  120. ::-webkit-scrollbar-track {
  121. -webkit-border-radius: 10px;
  122. border-radius: 10px;
  123. }
  124.  
  125. /* Handle */
  126. ::-webkit-scrollbar-thumb {
  127.  
  128. }
  129. #cred {
  130. position:absolute;
  131. bottom:15px;
  132. right:15px;
  133. }
  134.  
  135. #cred a {
  136. color: #eee;
  137. -webkit-filter: blur(2px);
  138. font-size: 15px;
  139. font-style:italic;
  140. -webkit-transition: all 0.7s ease;
  141. transition: all 0.7s ease;
  142. -moz-transition: all 0.7s ease;
  143. -o-transition: all 0.7s ease;
  144. }
  145.  
  146. #cred a:hover {
  147. -webkit-filter: blur(1px);
  148. -webkit-transform: rotate(70deg);
  149. transform: rotate(70deg);
  150. -moz-transform: rotate(70deg);
  151. -o-transform: rotate(70deg);
  152. margin-right: 5px;
  153. }
  154.  
  155. .popup_block{
  156. display:none;
  157. background:{color:post background};
  158. padding:20px;
  159. border:1px solid {color:background};
  160. /* if you want a solid white pop-up, delete this */
  161. float:left;
  162. position:fixed;
  163. top:50%;left:50%;
  164. z-index: 99999;
  165. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  166. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  167. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  168. max-height:500px;
  169. overflow-y:scroll;
  170. overflow-x:hidden;
  171. }
  172.  
  173. *html #fade {position: absolute;}
  174. *html .popup_block {position: absolute;}
  175. #fade {
  176. display:none;
  177. position:fixed;
  178. left:0px;
  179. top:0px;
  180. width:100%;
  181. height:100%;
  182. z-index:9999;
  183. background:; /* change to #fff for solid white#000 */
  184. opacity:1; /* change to opacity:1; */
  185. }
  186.  
  187. #s-m-t-tooltip{
  188. position:absolute;
  189. margin: 15px;
  190. z-index:9999;
  191. background:{color:post background};
  192. padding:5px;
  193. border: 1px solid {color:background};
  194. }
  195.  
  196.  
  197.  
  198. /*basics*/
  199. blockquote {padding:5px 0 5px 30px;
  200. border-left:1px solid {color:text};
  201. margin-left:30px;
  202. }
  203.  
  204. body {
  205. background: {color:background};
  206. background-image: url('{image:background}');
  207. background-position: top;
  208. background-size: cover;
  209. color:{color:text};
  210. font-family:arial;
  211. font-size:11px;
  212. text-align:justify;
  213. margin:0;
  214. line-height:16px;}
  215.  
  216.  
  217. a {
  218. color:{color:link};
  219. text-decoration:none;
  220. -webkit-transition: all 0.7s ease;
  221. transition: all 0.7s ease;
  222. -o-transition: all 0.7s ease;
  223. -moz-transition: all 0.7s ease;
  224. }
  225.  
  226. a:hover {
  227. text-decoration:none;
  228. color:{color:hover};
  229. }
  230.  
  231. img {
  232. opacity:1;
  233. border:none;
  234. text-decoration:none}
  235.  
  236.  
  237. small {
  238. font-size:11px;
  239. letter-spacing:0px;
  240. line-height: 2px;
  241. }
  242.  
  243. big {
  244. font-size:13px;
  245. line-height: -2px;
  246. }
  247.  
  248. sub {
  249. line-height: 2px;
  250. }
  251.  
  252. b {
  253. color:{color:bold};
  254. }
  255.  
  256. i {
  257. color:{color:italic};
  258. }
  259.  
  260. #title {
  261. font-size:12px;
  262. line-height:18px;
  263. font-weight:bold;
  264. margin-bottom:10px;
  265. text-transform:uppercase;
  266. text-align:left;
  267. padding:2px;
  268. }
  269.  
  270.  
  271. /*sidebar*/
  272. #sidebar {
  273. text-align:justify;
  274. position:fixed;
  275. margin-left:435px;
  276. margin-top:40px;
  277. width:180px;
  278. height:200px;
  279. }
  280.  
  281. #sidebarim {margin-bottom:20px}
  282.  
  283. #sidebarim img {width:125px}
  284.  
  285. #blogt {
  286. font-size:18px;
  287. font-weight:bold;
  288. padding:4px;
  289. text-align:justify;
  290. -webkit-transition: all 0.7s ease;
  291. -o-transition: all 0.7s ease;
  292. -moz-transition: all 0.7s ease;
  293. transition: all 0.7s ease;
  294. }
  295.  
  296. #blogt:hover {
  297. padding-top:10px;
  298. }
  299.  
  300. .link1:hover {
  301. font-size:18px;
  302. margin-top:5px;
  303. -webkit-filter: blur(0px);
  304. -webkit-transform: rotate(70deg);
  305. transform: rotate(70deg);
  306. -moz-transform: rotate(70deg);
  307. -o-transform: rotate(70deg);
  308. }
  309.  
  310. .link2:hover {
  311. font-size:18px;
  312. margin-top:5px;
  313. -webkit-filter: blur(0px);
  314. -webkit-transform: rotate(70deg);
  315. transform: rotate(70deg);
  316. -moz-transform: rotate(70deg);
  317. -o-transform: rotate(70deg);
  318. }
  319.  
  320. .link3:hover {
  321. font-size:18px;
  322. margin-top:5px;
  323. -webkit-filter: blur(0px);
  324. -webkit-transform: rotate(70deg);
  325. transform: rotate(70deg);
  326. -moz-transform: rotate(70deg);
  327. -o-transform: rotate(70deg);
  328. }
  329.  
  330. .linkask:hover {
  331. font-size:18px;
  332. margin-top:5px;
  333. -webkit-filter: blur(0px);
  334. -webkit-transform: rotate(70deg);
  335. transform: rotate(70deg);
  336. -moz-transform: rotate(70deg);
  337. -o-transform: rotate(70deg);
  338. }
  339.  
  340.  
  341. .link1 {
  342. position:fixed;
  343. left:65%;
  344. top: 68px;
  345. font-weight:bold;
  346. font-size:14px;
  347. -webkit-filter: blur(1px);
  348. }
  349.  
  350.  
  351. .link2 {
  352. position:fixed;
  353. left:69%;
  354. top:80px;
  355. font-weight:bold;
  356. font-size:14px;
  357. -webkit-filter: blur(1px);
  358. }
  359.  
  360. .link3 {
  361. position:fixed;
  362. left:73%;
  363. top:100px;
  364. font-weight:bold;
  365. font-size:14px;
  366. -webkit-filter: blur(1px);
  367. }
  368.  
  369.  
  370. .linkask {
  371. position:fixed;
  372. left:76%;
  373. top:50px;
  374. font-weight:bold;
  375. font-size:14px;
  376. -webkit-filter: blur(1px);
  377. }
  378.  
  379. /**
  380. #links {
  381. line-height:16px;
  382. text-transform:lowercase;
  383. }
  384.  
  385.  
  386. #links a {
  387. margin-right:5px;
  388. display:inline-block;
  389. margin-bottom:5px;
  390. }
  391. **/
  392.  
  393. #description {
  394. margin:15px 0;
  395. opacity:0.1;
  396. transition: all 0.7s ease;
  397. -moz-transition: all 0.7s ease;
  398. -o-transition: all 0.7s ease;
  399. -webkit-transition: all 0.7s ease;
  400. background:#111;
  401. padding: 5px;
  402. line-height:11px;
  403. text-align:justify;
  404. }
  405.  
  406. #description:hover {
  407. margin:20px 0;
  408. opacity:1;
  409. }
  410.  
  411. /*pagination*/
  412. #pagination {
  413. position:fixed;
  414. left: 230px;
  415. top: 168px;
  416. text-transform:lowercase;
  417. font-weight:bold;
  418. -webkit-transform: rotate(90deg);
  419. -moz-transform: rotate(90deg);
  420. -ms-transform: rotate(90deg);
  421. -o-transform: rotate(90deg);
  422. transform: rotate(90deg);
  423. }
  424. #pagination a {
  425. padding:0 15px;
  426. }
  427.  
  428. /*container*/
  429. #con {
  430. left:265px;
  431. top:125px;
  432. position:absolute;
  433. height: 500px;
  434. width: 450px;
  435. overflow-y: auto;
  436. overflow-x: hidden;
  437. padding: 10px;
  438. }
  439.  
  440.  
  441.  
  442. /*posts*/
  443.  
  444. #entries {
  445. margin:15px auto;
  446. width:auto;
  447. }
  448.  
  449. #posts {
  450. width: 400px;
  451. max-width:100%;
  452. margin:5px;
  453. border: 4px double {color:background};
  454. padding: 10px;
  455. border-radius: 3px;
  456. background:{color:post background};
  457. opacity:0.7;
  458. -webkit-transition: all 0.7s ease;
  459. -o-transition: all 0.7s ease;
  460. -moz-transition: all 0.7s ease;
  461. transition: all 0.7s ease;
  462. {block:IndexPage}
  463. margin-bottom:15px;
  464. margin-top:10px;
  465. -webkit-transition: all 0.7s ease;
  466. -o-transition: all 0.7s ease;
  467. -moz-transition: all 0.7s ease;
  468. transition: all 0.7s ease;
  469. {/block:IndexPage}
  470. {block:PermalinkPage}
  471. margin-bottom:15px;
  472. margin-top:10px;
  473. -webkit-transition: all 0.7s ease;
  474. -o-transition: all 0.7s ease;
  475. -moz-transition: all 0.7s ease;
  476. transition: all 0.7s ease;
  477. {/block:PermalinkPage}
  478.  
  479. }
  480.  
  481. #posts:hover {
  482. opacity:0.8;
  483. }
  484.  
  485.  
  486. .caption {
  487. max-width: 400px;
  488. margin-top:10px;
  489. text-align: justify;
  490. text-indent: 5px;
  491. }
  492.  
  493. /*quote*/
  494.  
  495. #titlequote{
  496. text-align:left;
  497. font-size:14px;
  498. line-height:18px;
  499. font-weight:bold;
  500. }
  501. #source {
  502. margin-top:15px;
  503. margin-left:15px;}
  504.  
  505. /*audio*/
  506.  
  507. .player {
  508. width:25px;
  509. height:25px;
  510. overflow:hidden;
  511. position:absolute;
  512. background:white;}
  513.  
  514. .audioinfo {
  515. margin-left:50px;
  516. }
  517.  
  518.  
  519. /*asks*/
  520. .q {margin-bottom:10px;
  521. }
  522. .as {
  523. font-weight:bold;}
  524.  
  525. .a {
  526. margin-top:10px;
  527. }
  528.  
  529.  
  530. /*chat*/
  531.  
  532. .chat ol {
  533. padding:0;
  534. list-style:none;
  535. }
  536. .line {padding:5px 0;}
  537.  
  538. .label {font-weight:bold;
  539. }
  540.  
  541.  
  542.  
  543.  
  544.  
  545. /*permalink and notes*/
  546.  
  547. #permalink {
  548. margin-top:15px;
  549. margin-right:64%;
  550. padding-left: 5px;
  551. font-size:10px;
  552. text-transform:uppercase;
  553. text-indent: 5px;
  554. background: #222;
  555. text-align: left;
  556. }
  557.  
  558. #permalink a {
  559. margin-right:17px;
  560. }
  561.  
  562. .tags {
  563. word-break:break-all;
  564. font-size:10px;
  565. text-align:left;
  566. background:#222;
  567. text-indent:2px;
  568. padding: 3px;
  569. opacity:0.9;
  570. }
  571.  
  572. .tags:hover {
  573. opacity:1;
  574. color:{color:hover};
  575. }
  576.  
  577. .tags a {
  578. color:{color:tags};
  579. }
  580. .tags a:hover {
  581. opacity:1;
  582. color:{color:hover};
  583. }
  584. .pagenotes {
  585. text-align: right;
  586. {block:IndexPage}
  587. display: none!important;
  588. {/block:IndexPage}
  589. width:400px;
  590. }
  591.  
  592. .pagenotes img {
  593. display:none!important;
  594. }
  595.  
  596. .pagenotes li {
  597. list-style-type:none;
  598. padding:5px 0px;
  599. text-align:right;
  600. margin:0 0 0 -40px;
  601. }
  602.  
  603. .notestuff {
  604. position:relative;
  605. right: 2px;
  606. text-align:right;
  607. background:#222;
  608. width:90%;
  609. font-size:10px;
  610. }
  611.  
  612. .source {
  613. text-align:center;
  614. background:#333;
  615. }
  616.  
  617. .photo {
  618. width: 400px;
  619. margin: 0 auto;
  620. }
  621. .photo img {
  622. max-width: 400px;
  623. margin: 0 auto;
  624. }
  625.  
  626. #hoverbox {
  627. position:fixed;
  628. top:30px;
  629. margin-left:30px;}
  630.  
  631. /*then we need to style the area for the content**/
  632.  
  633. #hovercontent {
  634. margin-top:10px;
  635. width:100px;
  636. color:{color:text};
  637. background:{color:post background};
  638. opacity:0;
  639. line-height:15px;
  640. padding: 10px;
  641. border: 1px solid {color:background};
  642. -webkit-transition: all 0.7S ease;
  643. -o-transition: all 0.7S ease;
  644. -moz-transition: all 0.7S ease;
  645. }
  646.  
  647. #hoverbox:hover #hovercontent {
  648. opacity:0.7;
  649. -webkit-transition: all 0.7s ease;
  650. -moz-transition: all 0.7s ease;
  651. -o-transition: all 0.7s ease;
  652. }
  653.  
  654. #hovercontent h3 {
  655. margin: 0px;
  656. }
  657.  
  658. #hovertitle {
  659. font-size: 10px;
  660. line-height: 15px;
  661. letter-spacing:2px;
  662. font-weight:normal;
  663. color:{color:link};
  664. margin-left: 20px;
  665. }
  666.  
  667.  
  668. {CustomCSS}
  669.  
  670.  
  671. </style>
  672.  
  673.  
  674.  
  675. </head>
  676.  
  677. <body>
  678. <div id="hoverbox">
  679. <div id="hovertitle">STAT BOX</div>
  680. <hr>
  681. <div id="hovercontent">
  682. <h3>STATS</h3>
  683. <hr>
  684. MEMES: 0<br>
  685. DRAFTS: 0<br>
  686. ASKS: 0<br>
  687. QUEUED: 0<br>
  688. </div>
  689. </div>
  690.  
  691. <div id="box1" class="popup_block">
  692. {text:popup box 1}
  693. </div>
  694.  
  695. </div></div></div></div></div></div></div></div></div></div>
  696.  
  697. <div id="box2" class="popup_block">
  698. {text:popup box 2}
  699. </div>
  700.  
  701. </div></div></div></div></div></div></div></div></div></div>
  702.  
  703. <div id="box3" class="popup_block">
  704. {text:popup box 3}
  705.  
  706. </div>
  707.  
  708. </div></div></div></div></div></div></div></div></div></div>
  709.  
  710. <div id="box4" class="popup_block">
  711. <p>
  712. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  713. </p>
  714. </div>
  715.  
  716. </div></div></div></div></div></div></div></div></div></div>
  717.  
  718.  
  719. <div id="con">
  720.  
  721. <div id="sidebar">
  722. <div id="sidebarim"><img src="{image:Sidebar Image}"></div>
  723. <div id="blogt"><a href="/" title="home">{Title}</a></div>
  724. <div id="description">{Description}</div>
  725. </div>
  726. <div class="linkask">
  727. <a href="#?w=400" rel="box4" class="poplight" title="ask">{text:ask link}</a>
  728.  
  729. </div>
  730. <div class="link1">
  731. {block:ifLink1}
  732. <a href="#?w=400" rel="box1" class="poplight" title="verses">{text:ask link}</a>
  733. {/block:ifLink1}
  734. </div>
  735. <div class="link2">
  736. {block:ifLink2}<a href="#?w=400" rel="box2" class="poplight" title="about">{text:ask link}</a>{/block:ifLink2}
  737. </div>
  738. <div class="link3">
  739. {block:ifLink3}<a href="#?w=400" rel="box3" class="poplight" title="rules">{text:ask link}</a> {/block:ifLink3}
  740. </div>
  741.  
  742.  
  743.  
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750. <div id="entries">
  751.  
  752. {block:Posts}
  753. <div id="posts">
  754.  
  755.  
  756. {block:Quote}
  757.  
  758.  
  759. <div id="titlequote">"{Quote}"</div>
  760. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  761. {/block:Quote}
  762.  
  763.  
  764.  
  765. {block:Text}
  766.  
  767. {block:Title}
  768. <div id="title">{Title}</div>{/block:Title}
  769. {Body}
  770. {/block:Text}
  771.  
  772. {block:Link}
  773. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  774. {/block:Link}
  775.  
  776. {block:Chat}
  777. {block:Title}
  778. <h1>{Title}</h1>
  779. {/block:Title}
  780. <div class="chat">
  781. <ol>{block:Lines}
  782. <li class="line {Alt}">
  783. {block:Label}
  784. <span class="label">
  785. {Label}</span>
  786. {/block:Label}{Line}</li>
  787. {/block:Lines}
  788. </ol></div>
  789. {/block:Chat}
  790.  
  791. {block:Photo}
  792. <div class="photo">
  793. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}
  794. </div>
  795. {/block:Photo}
  796.  
  797. {block:Photoset}
  798. {Photoset-400}
  799. {/block:Photoset}
  800.  
  801. {block:Video}
  802. {Video-400}
  803. {/block:Video}
  804.  
  805. {block:Audio}
  806. <div class="player">{AudioPlayerWhite}</div>
  807. <div class="audioinfo">
  808. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  809. </div>
  810. {/block:Audio}
  811.  
  812. {block:Answer}
  813. <div class="q">
  814. <div class="as">{Asker} said: </div>
  815. {Question}</div>
  816. <div class="a">{Answer}</div>
  817. {/block:Answer}
  818.  
  819. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  820.  
  821. {block:Date}
  822. <span id="permalink">
  823. <a href="{Permalink}" title="{12Hour}:{Minutes} {AmPm}">{text:ask link}</a></span> {block:NoteCount}<span class="notestuff"><a href="{Permalink}" title="Notes + {NoteCount}">{text:ask link}</a></span>{/block:NoteCount}{block:RebloggedFrom}<div class="source"><a href="{ReblogParentURL}" title="{ReblogParentName}">{text:ask link} </a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}</div>{/block:RebloggedFrom}
  824.  
  825. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a> {/block:Tags}</div>{/block:HasTags}
  826.  
  827. {/block:Date}
  828.  
  829.  
  830.  
  831. </div>
  832.  
  833.  
  834. {block:PostNotes}
  835. <div class="pagenotes">
  836. {PostNotes}
  837. </div>
  838. {/block:PostNotes}
  839.  
  840.  
  841. {/block:Posts}
  842.  
  843. <div id="pagination">
  844. {block:Pagination}
  845. {block:PreviousPage}
  846. <a href="{PreviousPage}">&larr; previous </a>
  847. {/block:PreviousPage}
  848.  
  849.  
  850. {block:NextPage}
  851. <a href="{NextPage}">next &rarr;</a>
  852. {/block:NextPage}
  853. {/block:Pagination}
  854. </div>
  855.  
  856.  
  857.  
  858. </div>
  859.  
  860. </div>
  861.  
  862.  
  863. {block:ContentSource}
  864. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  865. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  866. {/block:SourceLogo}
  867. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  868. {/block:ContentSource}
  869. <div id="cred">
  870. <a href="http://itsgreenbergsfault.tumblr.com" title="(c) Chris">C</a>
  871. </div>
  872. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement