dansmilth

Fansite Theme Base

Feb 27th, 2016
3,401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!----------- FANSITE THEME BASE by mattdraddario :> ------------>
  5.  
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <!--------DEFAULT VARIABLES-------->
  13.  
  14. <meta name="color:background" content="#ffffff"/>
  15. <meta name="color:text" content="#000000"/>
  16. <meta name="color:links" content="#626262"/>
  17. <meta name="color:link hover" content="#905976"/>
  18. <meta name="color:navigation" content="#000000"/>
  19. <meta name="color:nav links" content="#ffffff"/>
  20. <meta name="color:nav links hover" content="#d31e1e"/>
  21. <meta name="color:borders" content="#eeeeee"/>
  22. <meta name="color:question" content="#f8f8f8"/>
  23. <meta name="color:scrollbar" content="#000000"/>
  24. <meta name="color:scrollbar background" content="#ffffff"/>
  25. <meta name="color:sidebar" content="#ffffff"/>
  26. <meta name="color:titles" content="#000000"/>
  27. <meta name="color:titles bg" content="#ffffff"/>
  28. <meta name="color:titles border" content="#eeeeee"/>
  29. <meta name="color:content background" content="#f8f8f8"/>
  30. <meta name="color:posts background" content="#ffffff"/>
  31.  
  32.  
  33. <meta name="image:header" content=""/>
  34. <meta name="image:sidebar" content=""/>
  35.  
  36. <meta name="text:link 1 title" content="link"/>
  37. <meta name="text:link 1 url" content=""/>
  38. <meta name="text:link 2 title" content="link"/>
  39. <meta name="text:link 2 url" content=""/>
  40. <meta name="text:link 3 title" content="link"/>
  41. <meta name="text:link 3 url" content=""/>
  42. <meta name="text:link 4 title" content="link"/>
  43. <meta name="text:link 4 url" content=""/>
  44. <meta name="text:link 5 title" content="link"/>
  45. <meta name="text:link 5 url" content=""/>
  46. <meta name="text:link 6 title" content="link"/>
  47. <meta name="text:link 6 url" content=""/>
  48.  
  49.  
  50. <meta name="text:official link 1 title" content="link"/>
  51. <meta name="text:official link 1 url" content=""/>
  52. <meta name="text:official link 2 title" content="link"/>
  53. <meta name="text:official link 2 url" content=""/>
  54. <meta name="text:official link 3 title" content="link"/>
  55. <meta name="text:official link 3 url" content=""/>
  56. <meta name="text:official link 4 title" content="link"/>
  57. <meta name="text:official link 4 url" content=""/>
  58.  
  59. <!----------------SCRIPTS---------------->
  60.  
  61. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  62. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  63. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  64. <script>
  65. (function($){
  66. $(document).ready(function(){
  67. $("[title]").style_my_tooltips({
  68. tip_follows_cursor:true,
  69. tip_delay_time:200,
  70. tip_fade_speed:300
  71. });
  72. });
  73. })(jQuery);
  74. </script>
  75.  
  76.  
  77.  
  78. <style type="text/css">
  79.  
  80. /*----------SCROLLBAR---------*/
  81.  
  82. ::-webkit-scrollbar {
  83. background-color: {color:scrollbar bg};
  84. height:8px;
  85. width:5px;
  86. }
  87.  
  88. ::-webkit-scrollbar-thumb:vertical {
  89. background-color:{color:scrollbar};
  90. height:50px;
  91. }
  92.  
  93. ::-webkit-scrollbar-thumb:horizontal {
  94. background-color:{color:scrollbar bg};
  95. height:8px;
  96. }
  97.  
  98. /*----------TOOLTIPS---------*/
  99.  
  100. #s-m-t-tooltip {
  101. max-width:300px;
  102. margin:15px;
  103. padding:5px;
  104. border:1px solid #eeeeee;
  105. border-radius:0px;
  106. background:#ffffff;
  107. color:{color:text};
  108. z-index:999999;
  109. font-size:7px;
  110. font-style:none;
  111. letter-spacing:2px;
  112. font-family:arial;
  113. text-transform:uppercase;
  114. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  115. }
  116.  
  117. /*----------BASICS---------*/
  118.  
  119. body {
  120. background:{color:background};
  121. color:{color:text};
  122. font-family:arial;
  123. font-size:11px;
  124. line-height:150%;
  125. margin:0;
  126. text-align:left;
  127. }
  128.  
  129. small {
  130. font-size:11px;
  131. }
  132.  
  133. a {
  134. color:{color:links};
  135. text-decoration:none;
  136. }
  137.  
  138. a:hover {
  139. color:{color:link hover};
  140. transition:1s;
  141. -webkit-transition:1s;
  142. -moz-transition:1s;
  143. -o-transition:1s;
  144. }
  145.  
  146. img {
  147. opacity:1;
  148. text-decoration:none;
  149. }
  150.  
  151. h1 {
  152. font-size:14px;
  153. font-weight:bold;
  154. font-family:arial;
  155. line-height:150%;
  156. text-transform:uppercase;
  157. }
  158.  
  159. blockquote {
  160. padding-left:10px;
  161. margin:10px;
  162. border-left:1px solid #eee;
  163. }
  164.  
  165. /*----------HEADER---------*/
  166.  
  167. .header img {
  168. margin-bottom:0px;
  169. }
  170.  
  171. .navigation {
  172. width:1100px;
  173. background:{color:navigation};
  174. margin-top:-5px;
  175. margin-left:calc(50% - 550px);
  176. }
  177.  
  178.  
  179. .links {
  180. text-align:center;
  181. padding:30px;
  182. text-transform:uppercase;
  183. font-size:15px;
  184. font-weight:bold;
  185. }
  186.  
  187. .links a {
  188. color:{color:nav links};
  189. margin-right:40px;
  190. }
  191.  
  192. .links a:hover {
  193. color:{color:link hover};
  194. }
  195.  
  196. /*----------SIDEBAR---------*/
  197.  
  198. .sidebar {
  199. position:absolute;
  200. width:350px;
  201. margin-top:50px;
  202. margin-left:20px;
  203.  
  204. }
  205.  
  206. .sideimg img {
  207. width:300px;
  208. }
  209.  
  210.  
  211. .cat {
  212. padding:20px;
  213. border:1px solid {color:borders};
  214. margin-bottom:50px;
  215. background:white;
  216. }
  217.  
  218. .cti {
  219. text-transform:uppercase;
  220. font-size:15px;
  221. font-weight:bold;
  222. padding:10px;
  223. border-bottom:1px solid #eee;
  224. margin-bottom:20px;
  225. color:{color:titles};
  226. background:{color:titles bg};
  227. }
  228.  
  229.  
  230. .description {
  231. text-align:justify;
  232. padding:20px;
  233. margin:5px;
  234. margin-top:0px;
  235. font-size:12px;
  236. }
  237.  
  238.  
  239. .projects {
  240. padding:5px;
  241. text-align:left;
  242. margin-top:0px;
  243.  
  244. }
  245.  
  246.  
  247. .projects img {
  248. padding:5px;
  249. width:100px;
  250. float:left;
  251. margin-right:10px;
  252. border:1px solid #eee;
  253.  
  254. }
  255.  
  256.  
  257. .pinfo {
  258. height:100px;
  259. margin-top:25px;
  260. }
  261.  
  262.  
  263.  
  264. .date {
  265. float:left;
  266. padding:10px;
  267. margin-right:10px;
  268. text-transform:uppercase;
  269. font-weight:bold;
  270. }
  271.  
  272. .e {
  273. padding:10px;
  274.  
  275. }
  276.  
  277.  
  278. .affiliates {
  279. width:300px;
  280. padding:5px;
  281. text-align:left;
  282. text-transform:uppercase;
  283. font-size:9px;
  284. letter-spacing:1px;
  285. margin-top:20px;
  286. }
  287.  
  288. .affiliates img {
  289. padding:5px;
  290. width:50px;
  291.  
  292.  
  293. }
  294.  
  295.  
  296.  
  297. .off a {
  298. display:block;
  299. padding:10px;
  300. border-bottom:1px solid #eee;
  301. text-transform:uppercase;
  302. font-size:10px;
  303. }
  304.  
  305. .off a:hover {
  306. margin-left:5px;
  307. }
  308.  
  309.  
  310. /*----------PAGINATION---------*/
  311.  
  312. #pagi {
  313. margin-top:40px;
  314. margin-left:750px;
  315. font-family:'roboto', sans-serif;
  316. text-transform:uppercase;
  317. font-size:20px;
  318. font-weight:bold;
  319. padding:20px;
  320. }
  321.  
  322. /*----------POSTS---------*/
  323.  
  324. .container {
  325. width:1060px;
  326. margin-left:calc(50% - 550px);
  327. background:{color:content background};
  328. padding:20px;
  329. margin-top:-5px;
  330.  
  331. }
  332.  
  333.  
  334. .entries {
  335. margin-top:50px;
  336. width:500px;
  337. margin-left:500px;
  338. background:{color:content background};
  339.  
  340. }
  341.  
  342. .posts {
  343. width:500px;
  344. margin-bottom:70px;
  345. background:{color:posts background};
  346. padding:20px;
  347. border:1px solid {color:borders};
  348. }
  349.  
  350.  
  351. /*----------QUOTE---------*/
  352.  
  353. .quote {
  354. padding:10px;
  355. font-size:15px;
  356. }
  357.  
  358. .quotesource {
  359. padding:10px;
  360. text-align:center;
  361. }
  362.  
  363. /*----------CHAT---------*/
  364.  
  365. .chat {
  366. line-height:150%;
  367. list-style:none;
  368. }
  369.  
  370. .line.odd {
  371. padding:10px;
  372. background:#f8f8f8;
  373. }
  374.  
  375. .line.even {
  376. padding:10px;
  377. }
  378.  
  379. .label {
  380. text-transform:uppercase;
  381. font-size:10px;
  382. letter-spacing:1px;
  383. font-weight:bold;
  384. }
  385.  
  386. /*----------AUDIO---------*/
  387.  
  388. .cover {
  389. position:relative;
  390. z-index:1;
  391. max-width:100px;
  392. padding:10px;
  393. float:left;
  394. }
  395.  
  396. .playbutton {
  397. width:20px;
  398. height:30px;
  399. overflow:hidden;
  400. position:relative;
  401. z-index:2;
  402.  
  403. }
  404.  
  405.  
  406. .playbox {
  407. background-color:#000;
  408. position:absolute;
  409. z-index:2;
  410. padding:15px 24px 13px 16px;
  411. margin-top:30px;
  412. margin-left:30px;
  413. opacity:0.5;
  414. }
  415.  
  416. .trackdetails {
  417. padding:10px;
  418. width:auto;
  419. height:100px;
  420. margin-top:10px;
  421. margin-left:100px;
  422. }
  423.  
  424. /*----------ASK---------*/
  425.  
  426. .question {
  427. padding:10px;
  428. background:{color:question};
  429. }
  430.  
  431.  
  432. .asker {
  433. text-transform:uppercase;
  434. }
  435.  
  436. .answer {
  437. margin:10px;
  438. }
  439.  
  440. /*----------INFO---------*/
  441.  
  442. .info {
  443. padding:10px;
  444. text-transform:uppercase;
  445. border-top:1px solid #eee;
  446. margin-top:25px;
  447. }
  448.  
  449.  
  450. .tags {
  451. margin-left:10px;
  452. margin-top:-5px;
  453. }
  454.  
  455. .tags a {
  456. margin-right:10px;
  457. letter-spacing:1px;
  458. }
  459.  
  460. /*----------POST NOTES---------*/
  461.  
  462. ol.notes {
  463. padding:0px;
  464. margin:25px 0px 0px -10px;
  465. list-style-type:none;
  466. }
  467.  
  468. ol.notes li.note {
  469. padding:10px;
  470. }
  471.  
  472. ol.notes li.note img.avatar {
  473. vertical-align:-4px;
  474. margin-right:10px;
  475. width:16px;
  476. height:16px;
  477. }
  478.  
  479. ol.notes li.note span.action {
  480. font-weight:none;
  481. }
  482.  
  483. ol.notes li.note .answer_content {
  484. font-weight:normal;
  485. }
  486.  
  487. ol.notes li.note blockquote {
  488. padding:4px 10px;
  489. margin:10px 0px 0px 25px;
  490. }
  491.  
  492. ol.notes li.note blockquote a {
  493. text-decoration:none;
  494. }
  495.  
  496. /*----------CREDIT---------*/
  497.  
  498. .credit {
  499. font-size:10px;
  500. position:fixed;
  501. font-weight:bold;
  502. bottom:5px;
  503. right:15px;
  504. z-index:10;
  505. text-align:right;
  506. letter-spacing:1px;
  507. padding:2px;
  508. }
  509.  
  510. .credit a {
  511. color:{color:links};
  512. text-decoration:none;
  513. }
  514.  
  515. .credit a:hover {
  516. color:{color:links hover};
  517. text-decoration:none;
  518. }
  519.  
  520. </style>
  521. </head>
  522.  
  523. <body>
  524.  
  525. <div class="credit">
  526. <a title="theme" href="http://mattdraddario.tumblr.com/" target="_blank">MD</a></div>
  527.  
  528.  
  529.  
  530.  
  531. <div class="navigation">
  532.  
  533. <div class="links">
  534. <a href="/">Home</a>
  535. <a href="/ask">Inbox</a>
  536. <a href="{text:link 1 url}">{text:link 1 title}</a>
  537. <a href="{text:link 2 url}">{text:link 2 title}</a>
  538. <a href="{text:link 3 url}">{text:link 3 title}</a>
  539. <a href="{text:link 4 url}">{text:link 4 title}</a>
  540. <a href="{text:link 5 url}">{text:link 5 title}</a>
  541. <a href="{text:link 6 url}">{text:link 6 title}</a>
  542. </div>
  543.  
  544.  
  545. </div>
  546.  
  547. <center><div class="header"><img src="{image:header}"></div></center>
  548.  
  549. <div class="container">
  550.  
  551. <div class="sidebar">
  552.  
  553.  
  554.  
  555. <!-- WELCOME -->
  556.  
  557. <div class="cat">
  558. <div class="cti">Welcome</div>
  559. <center><div class="sideimg"><img src="{image:sidebar}"></div></center>
  560. <div class="description">{Description}</div>
  561. </div>
  562.  
  563.  
  564. <!-- OFFICIAL LINKS -->
  565.  
  566. <div class="cat">
  567. <div class="cti">Official Links</div>
  568. <div class="off">
  569. <a href="{text:official link 1 url}">{text:official link 1 title} <i class="fa fa-twitter" style="float:right"></i></a>
  570. <a href="{text:official link 2 url}">{text:official link 2 title} <i class="fa fa-instagram" style="float:right"></i></a>
  571. <a href="{text:official link 3 url}">{text:official link 3 title} <i class="fa fa-youtube-play" style="float:right"></i></a>
  572. <a href="{text:official link 4 url}">{text:official link 4 title} <i class="fa fa-globe" style="float:right"></i></a>
  573. </div>
  574. </div>
  575.  
  576.  
  577. <!-- UPCOMING EVENTS -->
  578.  
  579. <div class="cat">
  580. <div class="cti">Upcoming events</div>
  581.  
  582.  
  583. <div class="date">November 12</div><div class="e">Badlands: Seattle</div><br>
  584.  
  585. <div class="date">November 13</div><div class="e">Badlands: Vancouver</div><br>
  586.  
  587. <div class="date">November 14</div><div class="e">Badlands: Portland </div><br>
  588.  
  589. <div class="date">November 16</div><div class="e">Badlands: San Francisco </div><br>
  590.  
  591.  
  592. </div>
  593.  
  594.  
  595.  
  596. <!-- PROJECTS -->
  597.  
  598. <div class="cat">
  599. <div class="cti">Projects</div>
  600.  
  601.  
  602. <div class="projects">
  603.  
  604. <img src="http://static.tumblr.com/zy3qjic/ljzo37s2h/875564.png">
  605. <div class="pinfo"><ul> <b>Title</b><br>
  606. <b>Info</b>: Info<br>
  607. <b>Info</b>: Info<br>
  608. <b>Info</b>: Info</ul></div>
  609.  
  610.  
  611. <img src="http://static.tumblr.com/zy3qjic/ljzo37s2h/875564.png">
  612. <div class="pinfo"><ul> <b>Title</b><br>
  613. <b>Info</b>: Info<br>
  614. <b>Info</b>: Info<br>
  615. <b>Info</b>: Info</ul></div>
  616.  
  617.  
  618. <img src="http://static.tumblr.com/zy3qjic/ljzo37s2h/875564.png">
  619. <div class="pinfo"><ul> <b>Title</b><br>
  620. <b>Info</b>: Info<br>
  621. <b>Info</b>: Info<br>
  622. <b>Info</b>: Info</ul></div>
  623.  
  624.  
  625. </div></div>
  626.  
  627.  
  628. <!-- AFFILIATES -->
  629.  
  630. <div class="cat">
  631. <div class="cti">Affiliates</div>
  632.  
  633. <div class="affiliates">
  634.  
  635. <center><a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/By0o37sbp/sdfg.png"/></a>
  636. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/By0o37sbp/sdfg.png"/></a>
  637. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/By0o37sbp/sdfg.png"/></a>
  638. <a href="/" title="apply"><img src="http://static.tumblr.com/zy3qjic/By0o37sbp/sdfg.png"/></a></center>
  639.  
  640.  
  641. </div>
  642. </div>
  643.  
  644.  
  645. <!-- MEMBERS -->
  646.  
  647. <div class="cat">
  648. <div class="cti">Members</div>
  649.  
  650. {block:GroupMembers}
  651. <table style="margin-top:0px;">
  652. {block:GroupMember}
  653. <tr>
  654. <td style="width:40px;">
  655. <img src="{GroupMemberPortraitURL-40}" width="40px;" height="auto;" style="margin-right: 10px; padding: 5px; border: 1px solid #f1f1f1">
  656. </td>
  657. <td style="width:290px; height:auto;">
  658. <div id="m" style="margin-bottom:10px;">
  659. <a href="{GroupMemberURL}" style="font-weight:bold; text-transform:uppercase; font-family:arial; letter-spacing:0px; font-size:8px;">{GroupMemberName}</a><br>{GroupMemberTitle}</div>
  660.  
  661. </tr>
  662. {/block:GroupMember}
  663. </table>
  664. {/block:GroupMembers}
  665. </div>
  666.  
  667.  
  668. <!-- INFO -->
  669.  
  670. <div class="cat">
  671. <div class="cti">About the site</div>
  672. <div class="sinfo">
  673. <b>About:</b> <br>
  674. <b>Admins:</b> <br>
  675. <b>Designed by:</b> <br>
  676. <b>Online:</b> <br>
  677. <b>Visits:</b> <br><br>
  678.  
  679. Our site claims no credit for any images posted on this site unless stated otherwise. Images and information on this blog are copyright to their respectful owners.
  680. </div>
  681.  
  682.  
  683.  
  684. </div>
  685.  
  686. </div>
  687.  
  688. <div class="entries">
  689.  
  690. {block:Posts}
  691.  
  692. <div class="posts">
  693.  
  694. {block:Text}
  695. <h1>{block:Title}{Title}{/block:Title}</h1>
  696. {Body}{/block:Text}
  697.  
  698.  
  699. {block:Photo}
  700. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  701. {block:Caption}{Caption}{/block:Caption}
  702. {/block:Photo}
  703.  
  704.  
  705. {block:Photoset}
  706. {Photoset-500}
  707. {block:Caption}{Caption}{/block:Caption}
  708. {/block:Photoset}
  709.  
  710.  
  711. {block:Quote}
  712. <div class="quote">"{Quote}"</div>
  713. {block:Source}<div class="quotesource"> — {Source}</div>
  714. {/block:Source}{/block:Quote}
  715.  
  716.  
  717. {block:Link}
  718. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  719. {block:Description}{Description}{/block:Description}
  720. {/block:Link}
  721.  
  722.  
  723. {block:Chat}
  724. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  725. {/block:Chat}
  726.  
  727.  
  728. {block:Audio}
  729.  
  730. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  731.  
  732. {block:AlbumArt}
  733. <img src="{AlbumArtURL}" class="cover">
  734. {/block:AlbumArt}
  735.  
  736.  
  737. <div class="trackdetails"><br>
  738. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  739.  
  740. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  741.  
  742. <b>PLAYS:</b> {FormattedPlayCount}</div>
  743.  
  744.  
  745. {block:Caption}
  746. <div class="caption">{Caption}</div>
  747. {/block:Caption}
  748. {/block:Audio}
  749.  
  750.  
  751. {block:Video}
  752. {Video-500}
  753. {block:Caption}{Caption}{/block:Caption}
  754. {/block:Video}
  755.  
  756.  
  757. {block:Answer}
  758. <div class="question">
  759. <div class="asker"><b>{Asker} said:</b></div>
  760. {Question}</div>
  761. <div class="answer">
  762. {Answer}</div>
  763. {/block:Answer}
  764.  
  765.  
  766. <div class="info">
  767. {block:Date}
  768. <b><a href="{Permalink}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}</b></a>
  769. {/block:Date}
  770.  
  771. &nbsp;&nbsp;
  772. <a href="{Permalink}">{NoteCount}</a>
  773. &nbsp;&nbsp;
  774.  
  775. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>&nbsp;&nbsp;<b>Posted by</b> <a href="{PostAuthorURL}">{PostAuthorName}</a>
  776.  
  777. <font style="float:right">
  778. {block:RebloggedFrom}
  779. <a href="{ReblogParentURL}" title="{ReblogParentName}">via </a>
  780. {block:ContentSource}
  781. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}">/ src</a>
  782. {/block:ContentSource}
  783. {/block:RebloggedFrom}
  784. </font style>
  785.  
  786.  
  787. </div>
  788.  
  789.  
  790. {block:HasTags}
  791. <div class="tags">
  792. {block:Tags}
  793. #<a href="{TagURL}">{Tag}</a>
  794. {/block:Tags}
  795. </div>
  796. {/block:HasTags}
  797.  
  798. </div>
  799.  
  800.  
  801. {block:PostNotes}
  802. {PostNotes}
  803. {/block:PostNotes}
  804. {/block:Posts}</div>
  805.  
  806. <div id="pagi">
  807. {block:IndexPage}
  808. <div id="pagination">
  809. {block:Pagination}
  810. {block:JumpPagination length="5"}
  811. {block:CurrentPage}
  812. <span class="current_page">{PageNumber}</span>
  813. {/block:CurrentPage}
  814. {block:JumpPage}
  815. <a class="jump_page" href="{URL}">{PageNumber}</a>
  816. {/block:JumpPage}
  817. {/block:JumpPagination}
  818. {/block:Pagination}
  819. </div>
  820. {/block:IndexPage}
  821. </div>
  822.  
  823. {block:ContentSource}
  824. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  825. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  826. {/block:SourceLogo}
  827. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  828. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  829.  
  830. </body>
Advertisement
Add Comment
Please, Sign In to add comment