Advertisement
Sebastianstnn

Theme 09: Sirens

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