niehauscosima

splinter

Jun 15th, 2018
3,241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.65 KB | None | 0 0
  1. <!--
  2.  
  3. splinter - captainmarvels
  4. base code @ sorrism
  5. visit /credits for full credits
  6.  
  7. -->
  8.  
  9. <!DOCTYPE html>
  10. <head>
  11.  
  12. <title>{block:PostSummary}{PostSummary} : {/block:PostSummary}{Title}</title>
  13.  
  14. <link rel="shortcut icon" href="{favicon}">
  15.  
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <!--Default Variables-->
  20.  
  21. <meta name="color:Background" content="#ffffff"/>
  22. <meta name="color:Text" content="#444444"/>
  23. <meta name="color:Link" content="#888888"/>
  24. <meta name="color:Link Hover" content="#888888"/>
  25. <meta name="color:Bold" content="#000000"/>
  26. <meta name="color:Title"content="#000000"/>
  27. <meta name="color:Permalink"content="#000000"/>
  28. <meta name="color:Accent" content="#f8f8f6" />
  29. <meta name="color:Tags" content="#888888"/>
  30.  
  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.  
  40. <meta name="text:Home Title" content="index"/>
  41. <meta name="text:Ask Title" content="message"/>
  42. <meta name="text:Archive Title" content="history"/>
  43.  
  44. <meta name="image:Sidebar" content=""/>
  45.  
  46. <link href="https://fonts.googleapis.com/css?family=Roboto:400,700|Changa:400,500,600,700" rel="stylesheet">
  47. <link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
  48. <!-- this is vital for my theme credit don't delete this-->
  49. <link href="//dl.dropbox.com/s/50g6fbds3rh4m0j/saturnicons.css" rel="stylesheet"> <!-- don't delete-->
  50.  
  51. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  52. <script src ="//static.tumblr.com/fwgzvyf/Oj1o08f6h/shythemes.vr.js"></script>
  53. <script src="http://static.tumblr.com/wgg6svp/I8Yobwo15/unnest.min.js"></script>
  54. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
  55. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  56. <script src="http://static.tumblr.com/yxfeliq/hHwojmt8m/bctphotoset.min.js"></script>
  57.  
  58. <!--CSS customization here. -->
  59.  
  60. <style type="text/css">
  61.  
  62. /*tumblr controls and lightbox*/
  63.  
  64. .tmblr-full img {
  65. max-width: 100%;
  66. }
  67.  
  68. .vignette, #vignette {
  69. opacity:0;
  70. }
  71.  
  72. .lightbox-image, #tumblr_lightbox img {
  73. box-shadow:none !important;
  74. border-radius:0 !important;
  75. max-width:none;
  76. }
  77.  
  78. .tmblr-lightbox, #tumblr_lightbox {
  79. background-color:rgba(255,255,255,.8) !important;
  80. }
  81.  
  82. #tumblr_lightbox img {
  83. padding:5px;
  84. -moz-box-sizing:border-box;
  85. box-sizing:border-box;
  86. }
  87.  
  88. .lightbox-image {
  89. padding:0px;
  90. background-color:rgba(255,255,255,1) !important;
  91. }
  92.  
  93.  
  94. iframe.tmblr-iframe { z-index:99999999999999!important;
  95. top:0!important;
  96. right:0!important;
  97. opacity:0.4;
  98. /* delete from here */
  99. filter:invert(1);
  100. -webkit-filter:invert(1);
  101. -o-filter:invert(1);
  102. -moz-filter:invert(1);
  103. -ms-filter:invert(1);
  104. /* to here if your blog has a dark background */
  105. transform:scale(0.6);
  106. transform-origin:100% 0;
  107. -webkit-transform:scale(0.6);
  108. -webkit-transform-origin:100% 0;
  109. -o-transform:scale(0.6);
  110. -o-transform-origin:100% 0;
  111. -moz-transform:scale(0.6);
  112. -moz-transform-origin:100% 0;
  113. -ms-transform:scale(0.6);
  114. -ms-transform-origin:100% 0;
  115. transition: opacity 0.6s ease-in-out;
  116. -moz-transition: opacity 0.6s ease-in-out;
  117. -webkit-transition: opacity 0.6s ease-in-out;
  118. }
  119.  
  120. iframe.tmblr-iframe:hover {opacity:0.6!important;}
  121.  
  122.  
  123. /*tooltip*/
  124.  
  125. .ui-tooltip {
  126. position:absolute;
  127. z-index:9999;
  128. padding-top:10px;
  129. border-radius:10%;
  130. }
  131.  
  132. .ui-tooltip-content {
  133. color:{color:permalink};
  134. text-transform:lowercase;
  135. text-decoration:none;
  136. margin-right:1em;
  137. font-size:11px;
  138. font-weight:400;
  139. background: {color:accent};
  140. padding:5px;
  141. -moz-border-radius: 3px;
  142. -webkit-border-radius: 3px;
  143. border-radius:3px;
  144. }
  145.  
  146. /*scrollbar*/
  147.  
  148. ::-webkit-scrollbar{
  149. height:11px;
  150. width:11px;
  151. background:inherit;
  152. }
  153.  
  154. ::-webkit-scrollbar-thumb {background:{color:text};}
  155.  
  156. ::-webkit-scrollbar-track {background:#ffffff; height:15px;}
  157.  
  158. ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-track {border:5px solid {color:background};}
  159.  
  160. /*selection*/
  161.  
  162. ::selection {
  163. background: #f8f8f8;
  164. color: {color:text};
  165. }
  166.  
  167. ::-moz-selection {
  168. background: #f8f8f8;
  169. color: #f8f8f8;
  170. }
  171.  
  172. ::-webkit-selection {
  173. background: #f8f8f8;
  174. color: #f8f8f8;
  175. }
  176.  
  177. /*main structure*/
  178.  
  179. body {
  180. background:{color:background};
  181. color:{color:text};
  182. font-family:'Roboto', sans-serif;
  183. font-size:12px;
  184. word-wrap:break-word;
  185. text-align:justify;
  186. line-height:1.6em;
  187. }
  188.  
  189. a {
  190. color:{color:link};
  191. text-decoration:none;
  192. transition:all .3s linear;
  193. -webkit-transition:all .3s linear;
  194. -o-transition:all .3s linear;
  195. -moz-transition:all .3s linear;
  196. }
  197.  
  198. a, a img {cursor:pointer;}
  199.  
  200. a:hover {
  201. color:{color:link hover};
  202. }
  203.  
  204. img {
  205. opacity:1;
  206. border:0;
  207. text-decoration:none;
  208. max-width:100%;
  209. height:auto;
  210. display:block;
  211. }
  212.  
  213. b, strong, b a, strong a {
  214. font-weight:bold!important;
  215. color:{color:bold};
  216. }
  217.  
  218. small, big, sub, pre {
  219. font-size:1em!important;
  220. line-height:1.4em!important;
  221. vertical-align:baseline!important;
  222. }
  223.  
  224. i {
  225. font-style:italic;
  226. }
  227.  
  228. h1, h2, h3, h4 {
  229. margin:1em 0;
  230. font-size:17px;
  231. padding:0;
  232. color:{color:title};
  233. font-weight: 500;
  234. }
  235.  
  236. blockquote, ol, ul, p, pre, figure {margin:1em 0;}
  237.  
  238. .posts h1:first-child, .posts h2:first-child, .posts h3:first-child, .posts h4:first-child {margin-top:0;}
  239.  
  240. hr {
  241. border:none;
  242. box-shadow:0;
  243. margin:2em auto;
  244. width:75px;
  245. border-top:1px solid #eee;
  246. }
  247.  
  248. blockquote {
  249. padding:.25em 0 .25em 1em;
  250. margin:1em 0;
  251. border-left:1px solid {color:accent};
  252. }
  253.  
  254. pre {
  255. padding:0;
  256. margin:0;
  257. line-height:inherit!important;
  258. background:transparent;
  259. font-family:inherit!Important;
  260. font-size:inherit!important;
  261. white-space:pre-wrap;
  262. white-space:-moz-pre-wrap;
  263. white-space:-pre-wrap;
  264. white-space:-o-pre-wrap;
  265. word-wrap:break-word;
  266. }
  267.  
  268. code {
  269. background: {color:accent};
  270. padding: 3px;
  271. border-radius: 3px;
  272. font-size: 11px;
  273. color: {color:text};
  274. }
  275.  
  276. /*sidebar*/
  277.  
  278. sidebar {
  279. position: fixed;
  280. width: 250px;
  281. top: 120px;
  282. left: 160px;
  283. padding:20px;
  284. border-radius:4px;
  285. }
  286.  
  287. .sb img {
  288. width: 45px;
  289. border-radius:8px;
  290. margin:0 0 1em auto;
  291. }
  292.  
  293. nav {
  294. margin:1em 0;
  295. text-align:right;
  296. }
  297.  
  298. nav a {
  299. line-height:23px;
  300. font-size:12px;
  301. letter-spacing:0.5px;
  302. font-family: 'Changa', sans-serif;
  303. color:{color:text};
  304. text-transform:uppercase;
  305. font-weight: 500;
  306. display:block;
  307. }
  308.  
  309. nav a:hover {
  310. color:{color:link hover};
  311. }
  312.  
  313. #description {
  314. margin:1em 0;
  315. text-align:right;
  316. }
  317.  
  318. /*pagination*/
  319.  
  320. .pagination {
  321. text-align: right;
  322. margin-top:10px;
  323. }
  324.  
  325. .pagination a {
  326. color: {color:text};
  327. text-decoration: none;
  328. font-weight: 500;
  329. font-size:10px;
  330. margin-right:10px;
  331. }
  332.  
  333. /*posts*/
  334.  
  335. section {
  336. width:540px;
  337. margin-left:530px;
  338. margin-top:100px;
  339. margin-bottom:50px;
  340. }
  341.  
  342. .posts {
  343. width:540px;
  344. {block:indexpage}
  345. margin-bottom:100px;
  346. {/block:indexpage}
  347. {block:permalinkpage}
  348. margin-bottom:30px;
  349. {/block:permalinkpage}
  350. text-align:justify;
  351. {block:Posts}
  352. {/block:Posts}
  353. border-radius:1px;
  354. padding:20px;
  355. }
  356.  
  357. .posts ul li {
  358. list-style:none;
  359. margin-left:0px;
  360. }
  361.  
  362. .posts ul li:before {
  363. content:"∗";
  364. color:{color:accent};
  365. padding-right:5px;
  366. }
  367.  
  368. /*titles*/
  369.  
  370. .title {
  371. font-size:13px;
  372. font-family: 'Changa', sans-serif;
  373. color:{color:text};
  374. text-transform:uppercase;
  375. letter-spacing:1px;
  376. font-weight: 500;
  377. }
  378.  
  379. .title a {color:{color:title};}
  380.  
  381. .title a:hover {color:{color:link};}
  382.  
  383. /*captions*/
  384.  
  385. .comment {
  386. padding:1em 0;
  387. list-style:none;
  388. }
  389.  
  390. .comment:last-of-type {padding-bottom:0px;}
  391.  
  392. .user {
  393. font-size:11px;
  394. line-height:20px;
  395. display:inline-block;
  396. font-weight:600;
  397. color:{color:title};
  398. }
  399.  
  400. .user img {
  401. width:18px;
  402. height:18px;
  403. margin-right:7px;
  404. display:inline-block;
  405. float:left;
  406. border-radius:3px;
  407. }
  408.  
  409. .captioned .comment:first-of-type {margin-top:2em;}
  410.  
  411. .tex li, .tex blockquote {text-align:left;}
  412.  
  413. /*quote*/
  414.  
  415. .quote {
  416. font-size:13px;
  417. font-family: 'Changa', sans-serif;
  418. color:{color:text};
  419. font-style:italic;
  420. letter-spacing:0.5px;
  421. }
  422.  
  423. .source {margin-top:5px;}
  424.  
  425. /*asks*/
  426.  
  427. .q {
  428. text-align:left;
  429. padding:15px;
  430. background: #fbfbfb;
  431. -moz-border-radius: 3px;
  432. -webkit-border-radius: 3px;
  433. border-radius:3px;
  434. }
  435.  
  436. .asker {
  437. letter-spacing:0.5px;
  438. font-weight:500;
  439. font-family:'Changa', sans-serif;
  440. text-transform:uppercase;
  441. color:{color:title};
  442. }
  443.  
  444. /*chat*/
  445.  
  446. .chat {
  447. text-align:left;
  448. padding:1em 0;
  449. list-style:none;
  450. }
  451.  
  452. .l {
  453. padding:8px;
  454. }
  455.  
  456. .label {
  457. font-weight: 500;
  458. color:{color:title};
  459. display:inline-block;
  460. }
  461.  
  462. .l.even {
  463. border-radius:3px;
  464. border:1px solid #eaeaea;
  465. background:#f4f4f4;
  466. }
  467.  
  468. /*permalink and notes*/
  469.  
  470. .permalink {
  471. padding-top:0.5em;
  472. width:540px;
  473. margin:10px 20px 0px 0px;
  474. text-align:left;
  475. }
  476.  
  477. .permalink a {
  478. letter-spacing:0.5px;
  479. font-family: 'Changa', sans-serif;
  480. color:{color:permalink};
  481. text-transform:uppercase;
  482. font-weight: 500;
  483. text-decoration:none;
  484. margin-right:1em;
  485. font-size:10px;
  486. background: {color:accent};
  487. padding:3px 5px;
  488. -moz-border-radius: 3px;
  489. -webkit-border-radius: 3px;
  490. border-radius:3px;
  491. }
  492.  
  493. .permalink a:hover {
  494. color:{color:link hover};
  495. }
  496.  
  497. .permalink img {
  498. display:inline-block;
  499. border-radius:3px;
  500. }
  501.  
  502. .tags {
  503. width:540px;
  504. padding-top:8px;
  505. }
  506.  
  507. .tags a {
  508. color:{color:tags};
  509. font-size:11px;
  510. font-weight:none;
  511. line-height:20px;
  512. display:inline;
  513. margin-right:1em;
  514. text-transform:normal;
  515. text-decoration:none;
  516. }
  517.  
  518. .pagenotes {
  519. padding-top:2em;
  520. }
  521.  
  522. ol li:before {
  523. content:'';
  524. }
  525.  
  526. ol.notes {
  527. list-style-type:none;
  528. padding:0px;
  529. margin:0px;
  530. }
  531.  
  532. ol.notes li.note {
  533. display:block;
  534. padding:0;
  535. margin:5px 0;
  536. }
  537.  
  538. ol.notes li.note img.avatar {display:none!important;}
  539.  
  540. a.more_notes_link {
  541. display:block;
  542. text-align:center;
  543. color:{color:title};
  544. }
  545.  
  546. .credit {
  547. position:fixed;
  548. right:10px;
  549. bottom:15px;
  550. font-weight:bold;
  551. }
  552.  
  553. .credit a {
  554. color:#000000;
  555. }
  556.  
  557. {CustomCSS}
  558.  
  559. /*smooth loading*/
  560.  
  561. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  562. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  563. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  564. .fade-in {
  565. opacity:0;
  566. -webkit-animation:fadeIn ease-in 1;
  567. -moz-animation:fadeIn ease-in 1;
  568. animation:fadeIn ease-in 1;
  569. -webkit-animation-fill-mode:forwards;
  570. -moz-animation-fill-mode:forwards;
  571. animation-fill-mode:forwards;
  572. -webkit-animation-duration:1s;
  573. -moz-animation-duration:1s;
  574. animation-duration:1s;}
  575. .fade-in.one {
  576. -webkit-animation-delay:0s;
  577. -moz-animation-delay:0s;
  578. animation-delay:0s;}
  579. .fade-in.two {
  580. -webkit-animation-delay:0.8s;
  581. -moz-animation-delay:0.8s;
  582. animation-delay:0.8s;}
  583.  
  584. </style>
  585.  
  586. </head>
  587. <body>
  588.  
  589. <sidebar>
  590. <div class="sb"><a href="/" {block:ifNotHeader}title="{Title}"{/block:ifNotHeader}>{block:ifSidebarImage}<img src="{image:Sidebar}">{/block:ifSidebarImage} {block:ifNotSidebarImage}<img src="{PortraitURL-40}">{/block:ifNotSidebarImage}</a></div>
  591. <div id="description">{Description}</div>
  592.  
  593. <nav>{block:ifHomeTitle}<a href="/">{text:home title}</a>{/block:ifHomeTitle}{block:ifAskTitle}<a href="/ask">{text:ask title}</a>{/block:ifAskTitle}{block:ifArchiveTitle}<a href="/archive">{text:archive title}</a>{/block:ifArchiveTitle}{block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}{block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}{block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}{block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}</nav>
  594.  
  595. <div class="pagination">
  596. {block:PreviousPage}<a href="{PreviousPage}">←</a>{/block:PreviousPage}
  597. {block:NextPage}<a href="{NextPage}">→</a>{/block:NextPage}
  598. </div>
  599. </sidebar>
  600.  
  601.  
  602. <section id="entries" class="fade-in one">{block:posts}
  603. <article class="posts" id="{PostID}">
  604.  
  605. {block:Quote}
  606. <div class="quote">{quote}</div>
  607. {block:Source}<div class="source">— {source}</div>{/block:Source}
  608. {/block:Quote}
  609.  
  610. {block:Text}
  611. {block:Title}<div class="title">{title}</div>{/block:Title}
  612. {block:RebloggedFrom}
  613. {block:Reblogs}
  614. <li class="comment {block:Title}ted{/block:Title}">
  615. <a {block:haspermalink}href="{Permalink}"{/block:haspermalink} class="user" target="_blank"><img src="{PortraitURL-64}"> {username}</a></a>
  616. <div class="tex">{body}</div>
  617. </li>
  618. {/block:Reblogs}
  619. {/block:RebloggedFrom}
  620. {block:NotReblog}
  621. <li class="comment {block:Title}ted{/block:Title}">
  622. <div class="tex">{body}</div>
  623. </li>
  624. {/block:NotReblog}
  625. {/block:Text}
  626.  
  627. {block:Link}<div class="title"><a href="{URL}">{name}</a></div>
  628. {block:Description}
  629. {block:NotReblog}
  630. <li class="comment ted">
  631. <div class="tex">{description}</div>
  632. </li>
  633. {/block:NotReblog}
  634. {/block:Description}
  635. {block:RebloggedFrom}
  636. {block:Reblogs}
  637. <li class="comment">
  638. <a {block:haspermalink}href="{Permalink}"{/block:haspermalink} class="user" target="_blank"><img src="{PortraitURL-64}"> {username}</a>
  639. <div class="tex">{body}</div>
  640. </li>
  641. {/block:Reblogs}
  642. {/block:RebloggedFrom}
  643. {/block:Link}
  644.  
  645. {block:Chat}
  646. {block:Title}<div id="title">{title}</div>{/block:Title}
  647. <ol class="chat {block:Title}ted{/block:Title}">
  648. {block:lines}
  649. <li class="l {Alt}">
  650. {block:label}<span class="label">{label}</span>{/block:label} {line}
  651. </li>
  652. {/block:lines}
  653. </ol>
  654. {/block:Chat}
  655.  
  656. {block:Photo}{linkopentag}<img src="{photoURL-HighRes}" alt="{PhotoAlt}"/>{linkclosetag}{/block:Photo}
  657.  
  658. {block:Photoset}
  659. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">{block:Photos}<div class="photo-data"><div class="pxu-photo"><img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div><a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a></div>{/block:Photos}</div>
  660. {/block:Photoset}
  661.  
  662. {block:Video}<div class="video">{Video-500}</div>{/block:Video}
  663.  
  664. {block:Audio}
  665. <div class="audio">
  666. {block:AudioEmbed}{AudioEmbed width="540px"}{/block:AudioEmbed}
  667. </div>
  668. {/block:Audio}
  669.  
  670. {block:caption}
  671. {block:Reblogs}
  672. <li class="comment">
  673. <a {block:haspermalink}href="{Permalink}"{/block:haspermalink} class="user" target="_blank"> <img src="{PortraitURL-64}"> {username}</a>
  674. <div class="tex">{body}</div>
  675. </li>
  676. {/block:Reblogs}
  677. {block:NotReblog}
  678. <li class="comment">
  679. <div class="tex">{caption}</div>
  680. </li>
  681. {/block:NotReblog}
  682. {/block:caption}
  683.  
  684. {block:Answer}
  685. <div class="q">{Asker}: {Question}</div>
  686. {block:Answerer}
  687. <li class="comment">
  688. <div class="user"><img src="{AnswererPortraitURL-64}"> {username}</a> {answerer}</div>
  689. <div class="tex">{answer}</div>
  690. </li>
  691. {/block:Answerer}
  692. {block:NotReblog}
  693. <div class="tex">{replies}</div>
  694. {/block:NotReblog}
  695. {block:RebloggedFrom}
  696. {block:Reblogs}
  697. <li class="comment">
  698. <a {block:haspermalink}href="{Permalink}"{/block:haspermalink} class="user" target="_blank"><img src="{PortraitURL-64}"> {username}</a>
  699. <div class="tex">{body}</div>
  700. </li>
  701. {/block:Reblogs}
  702. {/block:RebloggedFrom}
  703. {/block:Answer}
  704.  
  705. {block:Date}
  706. <div class="permalink"><a href="{permalink}">{TimeAgo}</a> {block:NoteCount}<a href="{permalink}">{notecountwithlabel}</a>{/block:NoteCount} <a href="{ReblogURL}" target="_blank">reblog</a>
  707.  
  708. {block:permalinkpage}{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> {block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}{/block:permalinkpage}
  709. </div>
  710.  
  711. {block:hastags}
  712. <div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}.</a>{/block:Tags}</div>
  713. {/block:hasTags}
  714. {/block:Date}
  715.  
  716. </article>
  717.  
  718. {/block:Posts}
  719.  
  720. {block:PostNotes}
  721. <article class="posts pagenotes" style="padding:0 20px">
  722. {PostNotes}
  723. </article>
  724. {/block:PostNotes}
  725.  
  726. </section>
  727.  
  728. <script>
  729. $(document).ready(function(){
  730. $('body').tooltip({track:true});
  731. });
  732. var $container = $('.posts');
  733. $container.find('.notecount').each(function(){
  734. var n = $(this).html().split(' ')[0].replace(/,/g, '');
  735. if (n > 999) {
  736. n = Math.floor(n / 100) / 10;
  737. $(this).text(n + 'k');
  738. }
  739. });
  740. $(document).ready(function() {
  741. $('iframe.tumblr_audio_player').load( function() {
  742. $('iframe.tumblr_audio_player').contents().find("head")
  743. .append($("<style type='text/css'> .audio-player{background:{color:accent} !important} </style>"));
  744. });
  745. });
  746. $(document).ready(function(){
  747. $('.photo-slideshow').pxuPhotoset({
  748. lightbox: true,
  749. rounded: false,
  750. gutter: '4px',
  751. borderRadius: '0px',
  752. photoset: '.photo-slideshow',
  753. photoWrap: '.photo-data',
  754. photo: '.pxu-photo'
  755. });
  756. });
  757. </script>
  758.  
  759. {block:ContentSource}
  760. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  761. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  762. {/block:SourceLogo}
  763. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  764. {/block:ContentSource}
  765.  
  766. <div class="credit"><a href="http://captainmarvels.tumblr.com/" title="ananda themes"><span class="sf sf-alien-o"></span></a></div>
  767.  
  768. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment