jcegers

FRICTION

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