rollyjogered

theme four: morning breeze

Sep 3rd, 2018 (edited)
6,474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5.  
  6. theme four: morning breeze by pirateskinned
  7.  
  8. please don't: edit & repost / claim as your own
  9. please don't: delete or move the credit
  10. please don't: steal bits of coding
  11.  
  12. if you need any help, feel free to
  13. message me at pirateskinned.tumblr.com
  14.  
  15. ------
  16.  
  17. image wrapping inspired by iniziare.tumblr.com
  18.  
  19. -->
  20.  
  21. <title>{Title}</title>
  22.  
  23. <link rel="shortcut icon" href="{Favicon}">
  24. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  25. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  26.  
  27. <!-- meta tags -->
  28.  
  29. <meta name="image:background" content=""/>
  30. <meta name="image:sidebar" content=""/>
  31.  
  32. <meta name="color:background" content="#ffffff"/>
  33. <meta name="color:container" content="#f6f6f6"/>
  34. <meta name="color:posts" content="#ffffff"/>
  35. <meta name="color:text" content="#1d1d1d"/>
  36. <meta name="color:link" content="#803c25"/>
  37. <meta name="color:link hover" content="#222222"/>
  38. <meta name="color:bold" content="#aa7a7a"/>
  39. <meta name="color:italic" content="#a7b1cc"/>
  40. <meta name="color:accent" content="#91a1ac"/>
  41. <meta name="color:gradient text" content="#ffffff"/>
  42. <meta name="color:gradient from" content="#dae2f8"/>
  43. <meta name="color:gradient to" content="#d6a4a4"/>
  44.  
  45. <meta name="if:background pattern" content="0"/>
  46. <meta name="if:image wrap" content="1"/>
  47. <meta name="if:500px posts" content="0"/>
  48.  
  49. <meta name="text:description title" content="description title" />
  50.  
  51. <meta name="text:link 1 url" content="/" />
  52. <meta name="text:link 1 title" content="home" />
  53. <meta name="text:link 2 url" content="/ask" />
  54. <meta name="text:link 2 title" content="ask" />
  55. <meta name="text:link 3 url" content="/" />
  56. <meta name="text:link 3 title" content="about" />
  57. <meta name="text:link 4 url" content="/" />
  58. <meta name="text:link 4 title" content="navigate" />
  59.  
  60. <!-- scripts -->
  61.  
  62. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css">
  63. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  64.  
  65. <!-- fonts -->
  66.  
  67. <link href="https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i" rel="stylesheet">
  68.  
  69. <!-- icon font -- http://suiomi.com/font -->
  70.  
  71. <link href="//solrainha.github.io/saturnicons/saturnicons.css" rel="stylesheet">
  72.  
  73.  
  74.  
  75. <!-- tooltips -->
  76.  
  77. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  78.  
  79. <script>
  80. (function($){
  81. $(document).ready(function(){
  82. $("a[title]").style_my_tooltips({
  83. tip_follows_cursor:true,
  84. tip_delay_time:30,
  85. tip_fade_speed:300,
  86. attribute:"title"
  87. });
  88. });
  89. })(jQuery);
  90. </script>
  91.  
  92. <!-- photosets -->
  93.  
  94. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  95.  
  96. <script>
  97. $(document).ready(function(){
  98. $('.photo-slideshow').pxuPhotoset({
  99. lightbox: true,
  100. rounded: false,
  101. gutter: '1px',
  102. borderRadius: '0px',
  103. photoset: '.photo-slideshow',
  104. photoWrap: '.photo-data',
  105. photo: '.pxu-photo'
  106. });
  107. });
  108. </script>
  109.  
  110. <style type="text/css">
  111.  
  112. /* --- fonts --- */
  113.  
  114. @font-face { font-family: "coco"; src: url('https://dl.dropboxusercontent.com/s/an7gqt732m1u90r/Cocogoose%20Pro-trial.ttf') ;}
  115.  
  116. /* --- basics --- */
  117.  
  118. #s-m-t-tooltip {
  119. position:absolute;
  120. margin-top: 15px;
  121. z-index:9999;
  122. padding:3px 5px;
  123. background:{color:posts};
  124. color:{color:text};
  125. border-radius:3px;
  126. font-size:10px;
  127. -webkit-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  128. -moz-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  129. box-shadow: 0px 0px 5px 0px rgba({RGBcolor:posts},0.8);
  130. }
  131.  
  132. ::-webkit-scrollbar-thumb:vertical {background-color:{color:accent};border-radius:3px;}
  133. ::-webkit-scrollbar-button:horizontal {display:none;}
  134. ::-webkit-scrollbar {background-color:transparent; width:3px;}
  135.  
  136. body {
  137. background-color:{color:background};
  138. background-image:url('{image:background}');
  139. background-attachment:fixed;
  140. background-position:center center;
  141. {block:ifnotbackgroundpattern}
  142. background-repeat:no-repeat;
  143. background-size:cover;
  144. {/block:ifnotbackgroundpattern}
  145. {block:ifbackgroundpattern}
  146. background-repeat:repeat;
  147. background-size:auto;
  148. {/block:ifbackgroundpattern}
  149. color:{color:text};
  150. font-family: 'Karla', sans-serif;
  151. font-size:10px;
  152. line-height:15px;
  153. font-weight:400;
  154. text-align:justify;
  155. margin:0;
  156. }
  157.  
  158. a {
  159. color:{color:link};
  160. text-decoration:none;
  161. -moz-transition-duration: 0.5s;
  162. -o-transition-duration: 0.5s;
  163. -webkit-transition-duration: 0.5s;
  164. transition-duration: 0.5s;
  165. }
  166.  
  167. a:hover {
  168. color:{color:link hover};
  169. text-decoration:none;
  170. }
  171.  
  172. img {
  173. border:none;
  174. text-decoration:none;
  175. border-radius:3px;
  176. }
  177.  
  178. b, strong, bold {
  179. color:{color:bold};
  180. font-weight:700;
  181. }
  182.  
  183. i, em, italic {
  184. color:{color:italic};
  185. }
  186.  
  187. u {
  188. border-bottom:1px solid {color:accent};
  189. text-decoration:none;
  190. }
  191.  
  192. s, strike {
  193. text-decoration-color:{color:accent};
  194. }
  195.  
  196. small, sub, sup, big {
  197. font-size:10px;
  198. line-height:14px;
  199. vertical-align:baseline;
  200. }
  201.  
  202. blockquote {
  203. padding:0px 5px 0px 20px;
  204. border-left:1px solid {color:accent};
  205. margin-left:5px;
  206. margin-right:0px;
  207. }
  208.  
  209. blockquote img {
  210. max-width:360px;
  211. height:auto;
  212. }
  213.  
  214. blockquote blockquote {
  215. margin-right:0px;
  216. }
  217.  
  218. blockquote blockquote img {
  219. max-width:350px;
  220. height:auto;
  221. }
  222.  
  223. pre {
  224. font-family:karla;
  225. font-size:9px;
  226. text-transform:uppercase;
  227. padding:10px;
  228. background-color:{color:accent};
  229. color:{color:posts};
  230. }
  231.  
  232. pre i, pre em {
  233. color:{color:posts};
  234. }
  235.  
  236. ul {
  237. padding-left:15px;
  238. }
  239.  
  240. ul li {
  241. list-style-type:none;
  242. }
  243.  
  244. ul li:before {
  245. content: "— ";
  246. text-indent: -5px;
  247. }
  248.  
  249. .firstletter {
  250. display:block;
  251. float:left;
  252. padding:12px 14px;
  253. background:{color:bold};
  254. color:{color:posts};
  255. font-family: 'coco', sans-serif;
  256. text-transform:uppercase;
  257. font-size:14px;
  258. margin:0px 10px 0px 0px;
  259. }
  260.  
  261. /* --- header styles --- */
  262.  
  263. h1 {
  264. font-family: 'coco';
  265. margin:0px;
  266. font-weight:bold;
  267. color:{color:text};
  268. }
  269.  
  270. h2 {
  271. font-family: 'coco';
  272. font-weight:normal;
  273. color:{color:accent};
  274. }
  275.  
  276. h2 b, b h2, h2 i, i h2 {
  277. color:{color:accent};
  278. }
  279.  
  280.  
  281. /* --- container --- */
  282.  
  283. .container {
  284. position:absolute;
  285. margin-top:-275px;
  286. top:50%;
  287. left:50%;
  288. {block:ifnot500pxposts}
  289. width:800px;
  290. margin-left:-400px;
  291. {/block:ifnot500pxposts}
  292. {block:if500pxposts}
  293. width:900px;
  294. margin-left:-450px;
  295. {/block:if500pxposts}
  296. height:550px;
  297. background-color:rgba({RGBcolor:container},0.9);
  298. overflow:hidden;
  299. border-radius:3px;
  300. -webkit-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  301. -moz-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  302. box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  303. }
  304.  
  305. /* --- sidebar --- */
  306.  
  307. .sidebar {
  308. position:absolute;
  309. z-index:7;
  310. top:40px;
  311. left:40px;
  312. width:240px;
  313. height:470px;
  314. border-radius:3px;
  315. overflow:hidden;
  316. background: {color:gradient from};
  317. background: -moz-linear-gradient(135deg, {color:gradient from} 10%, {color:gradient to} 100%);
  318. background: -webkit-linear-gradient(135deg, {color:gradient from} 10%,{color:gradient to} 100%);
  319. background: linear-gradient(135deg, {color:gradient from} 10%,{color:gradient to} 100%);
  320. }
  321.  
  322. .sideimg {
  323. position:absolute;
  324. width:200px;
  325. height:270px;
  326. top:0px;
  327. left:40px;
  328. background:gray;
  329. background-size:cover;
  330. background-position:center center;
  331. background-image:url('{image:sidebar}');
  332. }
  333.  
  334. .sidetitle {
  335. position:absolute;
  336. top:115px;
  337. left:-115px;
  338. width:270px;
  339. height:40px;
  340. text-align:center;
  341. line-height:40px;
  342. z-index:8;
  343. transform: rotate(-90deg);
  344. background-color:transparent;
  345. }
  346.  
  347. .sidetitle a {
  348. font-family: "coco";
  349. font-size:16px;
  350. line-height:40px;
  351. font-weight:bold;
  352. text-transform:uppercase;
  353. color:{color:gradient text};
  354. }
  355.  
  356.  
  357. .description {
  358. position:absolute;
  359. z-index:5;
  360. left:0px;
  361. top:270px;
  362. width:240px;
  363. height:160px;
  364. padding:15px;
  365. box-sizing:border-box;
  366. background-color:{color:posts};
  367. font-size:10px;
  368. line-height:16px;
  369. overflow-x:hidden;
  370. overflow-y:auto;
  371. }
  372.  
  373. /* --- navigation --- */
  374.  
  375. .nav {
  376. position:absolute;
  377. left:0px;
  378. top:430px;
  379. width:240px;
  380. height:40px;
  381. text-align:center;
  382. }
  383.  
  384. .nav a {
  385. -webkit-transition-duration: 0.6s;
  386. transition-duration: 0.6s;
  387. display:inline-block;
  388. width:auto;
  389. height:14px;
  390. line-height:14px;
  391. text-align:center;
  392. font-size:10px;
  393. margin:13px 5px;
  394. color:{color:gradient text};
  395. border-bottom:1px solid transparent;
  396. }
  397.  
  398. .nav a:hover {
  399. border-bottom:1px solid {color:gradient text};
  400. }
  401.  
  402. /* --- pagination --- */
  403.  
  404. .pagination {
  405. width:200px;
  406. height:20px;
  407. left:40px!important;
  408. top:250px;
  409. position:absolute;
  410. z-index:999;
  411. text-align:center;
  412. padding:0px!important;
  413. color:{color:posts};
  414. }
  415.  
  416. .pagination a {
  417. color:{color:posts};
  418. line-height:20px;
  419. }
  420.  
  421. .pagination .sf {
  422. font-size:7px;
  423. }
  424.  
  425. /* --- entries --- */
  426.  
  427. .entries {
  428. position:absolute;
  429. z-index:3;
  430. top:0px;
  431. right:0px;
  432. {block:ifnot500pxposts}
  433. width:520px;
  434. {/block:ifnot500pxposts}
  435. {block:if500pxposts}
  436. width:620px;
  437. {/block:if500pxposts}
  438. height:550px;
  439. overflow-x:hidden;
  440. overflow-y:auto;
  441. background-color:transparent;
  442. box-sizing:border-box;
  443. padding:40px;
  444. }
  445.  
  446. /* --- posts --- */
  447.  
  448. .post {
  449. {block:ifnot500pxposts}
  450. width:400px;
  451. {/block:ifnot500pxposts}
  452. {block:if500pxposts}
  453. width:500px;
  454. {/block:if500pxposts}
  455. padding:20px;
  456. overflow:hidden;
  457. {block:IndexPage}
  458. margin-bottom:75px;
  459. {/block:IndexPage}
  460. {block:PermalinkPage}
  461. margin-bottom:20px;
  462. {/block:PermalinkPage}
  463. background-color:{color:posts};
  464. border-radius:3px;
  465. }
  466.  
  467. .post img {
  468. max-width:100%;
  469. height:auto;
  470. }
  471.  
  472. /* --- texts --- */
  473.  
  474. .title {
  475. font-family: "coco";
  476. font-weight:normal;
  477. font-size:22px;
  478. line-height:24px;
  479. color:{color:accent};
  480. }
  481.  
  482. .title a {
  483. color:{color:accent};
  484. }
  485.  
  486. .more a {
  487. font-family: "coco";
  488. font-size:18px;
  489. color:{color:accent};
  490. }
  491.  
  492. .txt {
  493. margin-bottom:20px;
  494. }
  495.  
  496. .txt img {
  497. max-width:200px;
  498. height:auto;
  499. {block:ifimagewrap}
  500. float:left;
  501. margin-right:10px;
  502. {/block:ifimagewrap}
  503. }
  504.  
  505. .txt blockquote img {
  506. {block:ifimagewrap}
  507. float:right;
  508. margin-left:10px;
  509. margin-right:0px;
  510. {/block:ifimagewrap}
  511. }
  512.  
  513. /* --- photos --- */
  514.  
  515. .photo {
  516. margin:-20px -20px 0px -20px;
  517. }
  518.  
  519. .photo img {
  520. border-radius:3px 3px 0px 0px;
  521. }
  522.  
  523. .photo-slideshow {
  524. margin:-20px -20px 0px -20px;
  525. }
  526.  
  527. .photo-slideshow img {
  528. border-radius:0px;
  529. }
  530.  
  531. /* --- quotes --- */
  532.  
  533. .quote {
  534. font-family: "coco";
  535. text-align:left;
  536. font-size:18px;
  537. line-height:25px;
  538. }
  539.  
  540. .source {
  541. margin-top:4px;
  542. text-align:right;
  543. }
  544.  
  545.  
  546. /* --- audio --- */
  547.  
  548. .audio {
  549. float:left;
  550. width:70px;
  551. height:70px;
  552. position:relative;
  553. overflow:hidden;
  554. }
  555.  
  556. .audio:hover .play {opacity:1;width:30px;}
  557. .audio:hover img {margin-left:30px;}
  558.  
  559. .cover img {
  560. width:70px;
  561. position:absolute;
  562. transition:0.5s ease;
  563. -o-transition:0.5s ease;
  564. -moz-transition:0.5s ease;
  565. -webkit-transition:0.5s ease;
  566. }
  567.  
  568. .play {
  569. overflow:hidden;
  570. width:0px;
  571. height:30px;
  572. background:{color:posts};
  573. position:absolute;
  574. padding:20px 0px;
  575. transition:0.5s ease;
  576. -o-transition:0.5s ease;
  577. -moz-transition:0.5s ease;
  578. -webkit-transition:0.5s ease;
  579. }
  580.  
  581. .au b {
  582. color:{color:bold};
  583. font-weight:700;
  584. margin-right:2px;
  585. }
  586.  
  587. .au {
  588. height:45px;
  589. overflow:hidden;
  590. padding:12px 10px;
  591. line-height:15px;
  592. margin-left:70px;
  593. text-align:left;
  594. }
  595.  
  596. /* --- asks --- */
  597.  
  598. .asker {
  599. margin-right:15px;
  600. margin-bottom:-15px;
  601. float:right;
  602. font-family: "coco";
  603. font-size:25px;
  604. line-height:1px;
  605. font-weight:normal;
  606. color:{color:side title};
  607. background-color:{color:posts};
  608. padding:0px 5px 0px 7px;
  609. width:auto;
  610. display:block;
  611. }
  612.  
  613. .asker a {
  614. margin:0px;
  615. }
  616.  
  617. .question {
  618. margin-top:20px;
  619. margin-bottom:10px;
  620. border:1px solid {color:accent};
  621. padding:20px;
  622. }
  623.  
  624. /* --- chat --- */
  625.  
  626. .chat ul {
  627. list-style-type:none;
  628. padding-left:0px;
  629. }
  630.  
  631. .chat ul li {
  632. margin-bottom:5px;
  633. }
  634.  
  635. .chat ul li:last-of-type {
  636. margin-bottom:0px;
  637. }
  638.  
  639. .chat ul li:before {
  640. content: none;
  641. text-indent: 0px;
  642. }
  643.  
  644. /* --- permalinks --- */
  645.  
  646. .permalink {
  647. font-weight:700;
  648. margin:0px -20px -20px -20px;
  649. padding:10px;
  650. font-size:8px;
  651. letter-spacing:0px;
  652. text-transform:uppercase;
  653. background: {color:gradient from};
  654. background: -moz-linear-gradient(135deg, {color:gradient from} 10%, {color:gradient to} 100%);
  655. background: -webkit-linear-gradient(135deg, {color:gradient from} 10%,{color:gradient to} 100%);
  656. background: linear-gradient(135deg, {color:gradient from} 10%,{color:gradient to} 100%);
  657. border-radius:0px;
  658. color:{color:gradient text};
  659. }
  660.  
  661. .permalink a {
  662. display:inline-block;
  663. color:{color:gradient text};
  664. }
  665.  
  666. .reb {
  667. display:inline-block;
  668. vertical-align:middle;
  669. float:right;
  670. font-size:10px;
  671. }
  672.  
  673. .reb i {
  674. color:{color:gradient text};
  675. }
  676.  
  677. /* --- tags --- */
  678.  
  679. .tags {
  680. margin-top:0px;
  681. -webkit-transition-duration: 0.6s;
  682. transition-duration: 0.6s;
  683. text-align:justify;
  684. font-weight:400;
  685. }
  686.  
  687. .tags a {
  688. display:inline;
  689. text-transform:none;
  690. line-height:14px;
  691. padding-bottom:1px;
  692. margin:2px 4px 0px 0px;
  693. color:{color:gradient text};
  694. border-bottom:1px solid transparent;
  695. }
  696.  
  697. .tags a:hover {
  698. border-bottom:1px solid {color:gradient text};
  699. }
  700.  
  701. /* --- notes --- */
  702.  
  703. .pagenotes {
  704. {block:IndexPage}
  705. display: none!important;
  706. {/block:IndexPage}
  707. {block:ifnot500pxposts}
  708. width:400px;
  709. {/block:ifnot500pxposts}
  710. {block:if500pxposts}
  711. width:500px;
  712. {/block:if500pxposts}
  713. text-align:left;
  714. background-color:{color:posts};
  715. border-radius:3px;
  716. padding:20px;
  717. }
  718.  
  719. .pagenotes img {
  720. height:14px;
  721. width:14px;
  722. margin-right:10px;
  723. vertical-align:-4px;
  724. border-radius:3px;
  725. }
  726.  
  727. .pagenotes ol {
  728. list-style-type:none;
  729. margin:0px;
  730. padding:0px;
  731. }
  732.  
  733. .pagenotes ol li {
  734. margin:5px;
  735. }
  736.  
  737. /* --- credit --- */
  738.  
  739. .credit a {
  740. position:fixed;
  741. font-size:9px;
  742. text-transform:uppercase;
  743. font-weight:bold;
  744. right:10px;
  745. bottom:10px;
  746. text-align:center;
  747. background-color:rgba({RGBcolor:container},0.5);
  748. width:15px;
  749. height:15px;
  750. padding:5px;
  751. line-height:15px;
  752. border-radius:20px;
  753. color:{color:link};
  754. display:block;
  755. -webkit-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  756. -moz-box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  757. box-shadow: 0px 0px 5px 0px rgba({RGBcolor:container},0.5);
  758. }
  759.  
  760.  
  761. {CustomCSS}
  762.  
  763. </style>
  764. </head>
  765. <body>
  766.  
  767.  
  768. <div class="container">
  769.  
  770. <!-- start of sidebar -->
  771.  
  772. <div class="sidebar">
  773.  
  774. <div class="sideimg"></div>
  775.  
  776. <div class="sidetitle">
  777. <a href="/">{text:description title}</a>
  778. </div>
  779.  
  780. <div class="description">{Description}</div>
  781.  
  782. <!-- start of navigation -->
  783.  
  784. <div class="nav">
  785. <a href="{text:link 1 url}">{text:link 1 title}</a>
  786. <a href="{text:link 2 url}">{text:link 2 title}</a>
  787. <a href="{text:link 3 url}">{text:link 3 title}</a>
  788. <a href="{text:link 4 url}">{text:link 4 title}</a>
  789. </div>
  790.  
  791. {block:Pagination}
  792. <div class="pagination">
  793. {block:PreviousPage}
  794. <a href="{PreviousPage}"><span class="sf sf-chevron-left"></span></a>
  795. {/block:PreviousPage}
  796.  
  797. {CurrentPage} of {TotalPages}
  798.  
  799. {block:NextPage}
  800. <a href="{NextPage}"><span class="sf sf-chevron-right"></span></a>
  801. {/block:NextPage}
  802. </div>
  803. {/block:Pagination}
  804.  
  805. </div>
  806.  
  807. <!-- start of posts -->
  808.  
  809. <div class="entries">
  810.  
  811. {block:Posts}
  812. <div class="post" id="{PostID}">
  813.  
  814.  
  815. {block:Quote}
  816. <div class="txt">
  817. <div class="quote">{Quote}</div>
  818. {block:Source}
  819. <div class="source">&mdash; {Source}</div>
  820. {/block:Source}
  821. </div>
  822. {/block:Quote}
  823.  
  824.  
  825. {block:Text}
  826. <div class="txt">
  827. {block:Title}
  828. <div class="title">{Title}</div>
  829. {/block:Title}
  830.  
  831. {Body}
  832.  
  833. {block:More}
  834. <div class="more">
  835. <a href="{Permalink}">continue reading...</a>
  836. </div>
  837. {/block:More}
  838. </div>
  839. {/block:Text}
  840.  
  841. {block:Link}
  842. <div class="txt">
  843. <div class="title">
  844. <a href="{URL}">{Name}</a>
  845. </div>
  846.  
  847. {block:Description}{Description}{/block:Description}
  848. </div>
  849. {/block:Link}
  850.  
  851. {block:Chat}
  852. <div class="txt">
  853. {block:Title}
  854. <div class="title">{Title}</div>
  855. {/block:Title}
  856.  
  857. <div class="chat">
  858. <ul>
  859. {block:Lines}<li>{block:Label}<span class="label"><strong>{Label}</strong></span>{/block:Label}
  860. {Line}</li>{/block:Lines}
  861. </ul>
  862. </div>
  863. </div>
  864. {/block:Chat}
  865.  
  866. {block:Photo}
  867. <div class="photo">
  868. <img src="{PhotoURL-500}" alt="{PhotoAlt}">
  869. </div>
  870. {block:Caption}<div class="txt">{Caption}</div>{/block:Caption}
  871. {/block:Photo}
  872.  
  873. {block:Photoset}
  874. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  875. {block:Photos}
  876. <div class="photo-data">
  877. <div class="pxu-photo">
  878. <img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
  879. </div>
  880.  
  881. <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a>
  882. </div>
  883. {/block:Photos}
  884. </div>
  885. {block:Caption}<div class="txt">{Caption}</div>{/block:Caption}
  886. {/block:Photoset}
  887.  
  888. {block:Video}
  889. <div class="photo">{Video-500}</div>
  890. {block:Caption}<div class="txt">{Caption}</div>{/block:Caption}
  891. {/block:Video}
  892.  
  893. {block:Audio}
  894. <div class="txt">
  895. <div class="audio">
  896. {block:AlbumArt}
  897. <div class="cover">
  898. <img src="{AlbumArtURL}">
  899. </div>
  900. {/block:AlbumArt}
  901.  
  902. {block:AudioPlayer}
  903. <div class="play">{AudioPlayerWhite}</div>
  904. {/block:AudioPlayer}
  905. </div>
  906.  
  907. <div class="au">
  908. {block:TrackName}<b>Track:</b> {block:TrackName}{TrackName}<br>{/block:TrackName}
  909. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  910. <b>Plays:</b> {FormattedPlayCount}
  911. </div>
  912.  
  913. {block:Caption}{Caption}{/block:Caption}
  914. </div>
  915. {/block:Audio}
  916.  
  917. {block:Answer}
  918. <div class="txt">
  919. <div class="asker">{Asker}</div>
  920. <div class="question">
  921. {Question}
  922. </div>
  923. {Answer}
  924. </div>
  925. {/block:Answer}
  926.  
  927.  
  928. {block:Date}
  929. <div class="permalink">
  930. <a href="{Permalink}">
  931. posted {TimeAgo}{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
  932. </a>
  933.  
  934. <a class="reb" href="{ReblogURL}">
  935. <span class="sf sf-reblog"></span>
  936. </a>
  937.  
  938. {block:PermalinkPage}
  939. <br>
  940. {block:RebloggedFrom}
  941. via: <a href="{ReblogParentURL}">{ReblogParentName}</a>
  942. &nbsp;
  943. {/block:RebloggedFrom}
  944.  
  945. {block:ContentSource}
  946. source: <a href="{SourceURL}">{SourceTitle}</a>
  947. {/block:ContentSource}
  948. {/block:PermalinkPage}
  949.  
  950. <br>
  951.  
  952. {block:HasTags}
  953. <div class="tags">
  954. {block:Tags} <a href="{TagURL}">#{Tag}</a>{/block:Tags}
  955. </div>
  956. {/block:HasTags}
  957. </div>
  958. {/block:Date}
  959.  
  960.  
  961. </div> <!-- end of .post -->
  962.  
  963.  
  964. {block:PostNotes}
  965. <div class="pagenotes">
  966. {PostNotes}
  967. </div>
  968. {/block:PostNotes}
  969.  
  970.  
  971. {/block:Posts}
  972.  
  973. </div> <!-- end of .entries -->
  974.  
  975. </div> <!-- end of .container -->
  976.  
  977. <div class="credit"><a href="http://pirateskinned.tumblr.com/" title="coded by pirateskinned">ps</a></div>
  978.  
  979. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment