littlemisswhoever

Test - Full page

Apr 26th, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7.  
  8. <!-- ✧ THEME #12 BY SKYOFRP - VIOLET. ✧
  9.  
  10. theme made using a base code by mrsthemes. fonts hosted by ikilledtherpc. icons hosted by suiomi. imessage code by animalities. audio player code by padyluppet (& modified by me).
  11.  
  12. edit as much as you'd like for personal use, and use it to learn html if you wish, but do not use as a base code and do not directly lift code from this theme and redistribute it as your own. do not touch the credit.
  13.  
  14. enjoy and let me know if you have any questions or problems! if you run into a bug or an issue, drop me an ask and i'll try to help! and finally, thank you for using my theme, it means the world.-->
  15.  
  16.  
  17. <!--------default variables-------->
  18. <meta name="color:background" content="#11261c"/>
  19. <meta name="color:accent" content="#113e41" />
  20. <meta name="color:accent2" content="#570300" />
  21. <meta name="color:accent3" content="#eeeeee" />
  22. <meta name="color:text" content="#222222"/>
  23. <meta name="color:accent" content="#b0b7ea" />
  24. <meta name="color:accent2" content="#f7c282" />
  25. <meta name="color:chat bubble 1" content="#c8cec1">
  26. <meta name="color:chat bubble 2" content="#ffffff">
  27.  
  28. <meta name="image:background image" content=""/>
  29. <meta name="image:sidebar" content=""/>
  30.  
  31. <meta name="select:grayscale" title="0%" content="0%" />
  32. <meta name="select:grayscale" title="60%" content="60%" />
  33. <meta name="select:grayscale" title="70%" content="70%" />
  34. <meta name="select:grayscale" title="80%" content="80%" />
  35. <meta name="select:grayscale" title="90%" content="90%" />
  36. <meta name="select:grayscale" title="100%" content="100%" />
  37.  
  38. <meta name="text:title" content="your title goes here - three lines max!">
  39. <meta name="text:link 1 title" content="link">
  40. <meta name="text:link 1 url" content=" ">
  41. <meta name="text:link 2 title" content="link">
  42. <meta name="text:link 2 url" content=" ">
  43.  
  44. <link href="//solrainha.github.io/honeybee/honeybee.css" rel="stylesheet">
  45. <link href="//dl.dropbox.com/s/50g6fbds3rh4m0j/saturnicons.css" rel="stylesheet">
  46.  
  47. <!------------------------TOOLTIPS SCRIPT--------------------->
  48.  
  49. <link href="https://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  50. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  51. <script src="https://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  52. <script>
  53. (function($){
  54. $(document).ready(function(){
  55. $("[title]").style_my_tooltips({
  56. tip_follows_cursor:true,
  57. tip_delay_time:200,
  58. tip_fade_speed:300
  59. });
  60. });
  61. })(jQuery);
  62. </script>
  63.  
  64. <!-------------------------------------------------------------------->
  65.  
  66. <link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
  67.  
  68. <style type="text/css">
  69.  
  70. @font-face { font-family: "jenna sue"; src: url('https://dl.dropboxusercontent.com/s/bsju94guldr45k8/JennaSue.ttf?dl=0'); format("truetype");}
  71.  
  72. /*----------tooltips---------*/
  73.  
  74. #s-m-t-tooltip {
  75. max-width:300px;
  76. margin:15px;
  77. padding:5px;
  78. background:{color:accent};
  79. color:{color:accent3};
  80. z-index:999999999999999999999999;
  81. font-size:8px;
  82. font-style:none;
  83. letter-spacing:4px;
  84. font-family:'rubik';
  85. text-transform:lowercase;
  86. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  87. border-radius:5px;
  88. }
  89.  
  90.  
  91. /*----------scrollbar---------*/
  92.  
  93. ::-webkit-scrollbar-thumb {
  94. height:auto;
  95. background-color:transparent;
  96. border-radius:20px;
  97. }
  98. ::-webkit-scrollbar {
  99. height:7px;
  100. width:3px;
  101. background-color: transparent;
  102. border-radius:50px;
  103. }
  104.  
  105. /*----------basics---------*/
  106.  
  107. body {
  108. background:{color:background} url({image:background image}) repeat right top fixed;
  109. background-size:cover;
  110. color:{color:text};
  111. font-family:'rubik';
  112. line-height:15px;
  113. font-size:11px;
  114. margin:0;
  115. text-align:left;
  116. }
  117.  
  118. blockquote {
  119. padding-left:10px;
  120. border-left:1px solid;
  121. border-color:{color:accent3};
  122. border-radius:0px!important;
  123. margin:10px;
  124. }
  125.  
  126. a {
  127. color:{color:accent};
  128. text-decoration:none;
  129. }
  130.  
  131. a:hover {
  132. text-decoration:none;
  133. color: {color:accent2};
  134. -webkit-transition:all 0.5s;
  135. -moz-transition:all 0.5s;
  136. -ms-transition:all 0.5s;
  137. -o-transition:all 0.5s;
  138. transition:all 0.5s;
  139. text-shadow: 2px 2px 8px {color:accent2}
  140. }
  141.  
  142. b, strong {
  143. color:{color:accent};
  144. }
  145.  
  146. i, em {
  147. color:{color:accent2};
  148. }
  149.  
  150. img {
  151. opacity:1;
  152. text-decoration:none;
  153. }
  154.  
  155. h1 {
  156. font-family:'rubik';
  157. text-align:center;
  158. text-transform:lowercase;
  159. letter-spacing:2px;
  160. font-size:18px;
  161. color:{color:accent2};
  162. line-height:100%;
  163. }
  164.  
  165. h2 {
  166. font-family:'jenna sue';
  167. text-align:center;
  168. text-transform:lowercase;
  169. letter-spacing:2px;
  170. font-size:26px;
  171. color:{color:accent2};
  172. }
  173.  
  174. small, sub {
  175. font-size:10px;
  176. }
  177.  
  178.  
  179. /*----------posts---------*/
  180.  
  181. .container {
  182. left:50%;
  183. width:800px;
  184. position:absolute;
  185. }
  186.  
  187. .posts {
  188. {block:IndexPage}
  189. margin-top:20px;
  190. margin-bottom:50px;
  191. padding:10px;
  192. {/block:IndexPage}
  193. {block:PermalinkPage}
  194. margin-top:20px;
  195. margin-bottom:40px;
  196. padding:10px;
  197. border-radius:5px;
  198. {/block:PermalinkPage}
  199. width:300px;
  200. margin-left:10px;
  201. background:rgb(255,255,255, 0.8);
  202. border-radius:5px;
  203. }
  204.  
  205. .entries {
  206. left:50%;
  207. margin-left:-360px;
  208. width:700px;
  209. top:50%;
  210. margin-top:-260px;
  211. height:500px;
  212. max-height:500px;
  213. overflow-y:scroll;
  214. background:rgb(255,255,255, 0.4);
  215. position:fixed;
  216. padding-left:15px;
  217. border-radius:5px;
  218. }
  219.  
  220. .posts img {
  221. float:left;
  222. margin-right:12px;
  223. margin-bottom:12px;
  224. max-width: 100%;
  225. height:auto;
  226. border-radius:5px;
  227. -webkit-filter: grayscale({select:grayscale}); /* Safari 6.0 - 9.0 */
  228. filter: grayscale({select:grayscale});
  229. -webkit-transition: all 0.5s ease-in-out;
  230. -moz-transition: all 0.5s ease-in-out;
  231. -o-transition: all 0.5s ease-in-out;
  232. -ms-transition: all 0.5s ease-in-out;
  233. transition: all 0.5s ease-in-out;
  234. opacity:0.8;
  235. }
  236.  
  237.  
  238. .posts blockquote img {
  239. float:left!important;
  240. margin-right:12px;
  241. margin-bottom:12px;
  242. max-width: 100%;
  243. height:auto;
  244. border-radius:5px;
  245. -webkit-filter: grayscale({select:grayscale}); /* Safari 6.0 - 9.0 */
  246. filter: grayscale({select:grayscale});
  247. -webkit-transition: all 0.5s ease-in-out;
  248. -moz-transition: all 0.5s ease-in-out;
  249. -o-transition: all 0.5s ease-in-out;
  250. -ms-transition: all 0.5s ease-in-out;
  251. transition: all 0.5s ease-in-out;
  252. opacity:0.8;
  253. }
  254.  
  255.  
  256. .posts img:hover, .posts blockquote:hover {
  257. -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  258. filter: grayscale(0%);
  259. -webkit-transition: all 0.7s ease-in-out;
  260. -moz-transition: all 0.7s ease-in-out;
  261. -o-transition: all 0.7s ease-in-out;
  262. opacity:1;
  263. }
  264.  
  265.  
  266. .blockquote img {
  267. max-width:100%;
  268. height: auto;
  269. }
  270.  
  271. .photoset
  272. {
  273. border-radius:5px;
  274. -webkit-filter: grayscale({select:grayscale}); /* Safari 6.0 - 9.0 */
  275. filter: grayscale({select:grayscale});
  276. -webkit-transition: all 0.5s ease-in-out;
  277. -moz-transition: all 0.5s ease-in-out;
  278. -o-transition: all 0.5s ease-in-out;
  279. -ms-transition: all 0.5s ease-in-out;
  280. transition: all 0.5s ease-in-out;
  281. opacity:0.8;
  282. }
  283.  
  284. .photoset:hover {
  285. -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  286. filter: grayscale(0%);
  287.  
  288. -webkit-transition: all 0.5s ease-in-out;
  289.  
  290. -moz-transition: all 0.5s ease-in-out;
  291.  
  292. -o-transition: all 0.5s ease-in-out;
  293.  
  294. -ms-transition: all 0.5s ease-in-out;
  295.  
  296. transition: all 0.5s ease-in-out;
  297. opacity:1;
  298. }
  299.  
  300. /*----------post info---------*/
  301.  
  302. .info {
  303. padding-top:20px;
  304. text-transform:lowercase;
  305. padding-bottom:15px;
  306. font-size:8px;
  307. letter-spacing:1px;
  308. margin-top:15px;
  309. text-align:center;
  310. border-radius:5px;
  311. }
  312.  
  313. .info a {
  314. color:{color:accent3};
  315. background-color:{color:accent};
  316. padding:7px 7px 6px 7px;
  317. border-radius:5px;
  318. }
  319.  
  320. .info a:hover {
  321. color:{color:accent};
  322. background-color:{color:accent3};
  323. }
  324.  
  325. .tags {
  326. margin-top:15px;
  327. font-size:8px;
  328. letter-spacing:2px;
  329. padding-right:5px;
  330. padding-left:5px;
  331. color:{color:accent2};
  332. }
  333.  
  334. .tags a {
  335. margin-right:8px;
  336. margin-left:8px;
  337. color:{color:accent2};
  338. background-color:transparent;
  339. padding:3px 5px 3px 5px;
  340. border-radius:5px;
  341. display:inline-block;
  342. margin-bottom:2px;
  343. }
  344.  
  345. .tags a:hover {
  346. color:{color:accent};
  347. background-color:{color:accent3};
  348. -moz-transition-duration:1s;
  349. -webkit-transition-duration:1s;
  350. -o-transition-duration:1s;
  351. }
  352.  
  353.  
  354. /*----------post notes---------*/
  355.  
  356. ol.notes {
  357. padding:10px;
  358. margin:0px 0px 0px 10px;
  359. list-style-type:none;
  360. background:rgb(255,255,255, 0.6);
  361. width:300px;
  362. border-radius:10px;
  363. }
  364.  
  365. ol.notes li.note {
  366. padding:10px;
  367. }
  368.  
  369. ol.notes li.note img.avatar {
  370. vertical-align:-4px;
  371. margin-right:10px;
  372. width:16px;
  373. height:16px;
  374. border-radius:100px;
  375. }
  376.  
  377. ol.notes li.note span.action {
  378. font-weight:none;
  379. }
  380.  
  381. ol.notes li.note .answer_content {
  382. font-weight:normal;
  383. }
  384.  
  385. ol.notes li.note blockquote {
  386. padding:4px 10px;
  387. margin:10px 0px 0px 25px;
  388. }
  389.  
  390. ol.notes li.note blockquote a {
  391. text-decoration:none;
  392. }
  393.  
  394. /*----------sidebar---------*/
  395.  
  396. .sidebar {
  397. position:fixed;
  398. width:220px;
  399. margin-left:10px;
  400. top:50%;
  401. margin-top:-260px;
  402. background-color:transparent;
  403. height:500px;
  404. z-index:99;
  405. border-radius:5px;
  406. text-align:center;
  407. background-size:cover;
  408. }
  409.  
  410. .inner {
  411. background-color:transparent;
  412. width:220px;
  413. margin:10px;
  414. position:fixed;
  415. }
  416.  
  417. .sidebar img {
  418. margin-top:-10px;
  419. width:340px;
  420. height:500px;
  421. margin-left:0px;
  422. border-radius:0px 10px 10px 0px;
  423. z-index:999;
  424. border-left:solid 2px {color:accent3};
  425. }
  426.  
  427. .sidetitle {
  428. font-family:'jenna sue';
  429. font-size:65px;
  430. text-transform:lowercase;
  431. margin-top:-120px;
  432. text-align:center;
  433. color:#fff;
  434. width:200px;
  435. line-height:80%;
  436. z-index:999;
  437. width:350px;
  438. -ms-transform: rotate(-5deg); /* IE 9 */
  439. -webkit-transform: rotate(-5deg); /* Chrome, Safari, Opera */
  440. transform: rotate(-5deg);
  441. }
  442.  
  443. .pagination {
  444. text-align:center;
  445. font-weight:normal;
  446. padding-top:5px;
  447. letter-spacing:0px;
  448. width:330px;
  449. margin-top:10px;
  450. margin-bottom:30px;
  451. }
  452.  
  453. .pagination a {
  454. width:60px;
  455. background-color:{color:accent};
  456. color:{color:accent3};
  457. font-size:9px;
  458. padding:5px;
  459. border-radius:5px;
  460. font-weight:normal;
  461. text-transform:uppercase;
  462. letter-spacing:4px;
  463. }
  464.  
  465. .pagination a:hover{
  466. -moz-transition-duration:1s;
  467. -webkit-transition-duration:1s;
  468. -o-transition-duration:1s;
  469. background-color:{color:accent3};
  470. color:{color:accent};
  471. }
  472.  
  473. .links {
  474. margin-left:-130px;
  475. margin-top:-380px;
  476. width:15px;
  477. font-family:'karla';
  478. display:inline-block;
  479. height:100px;
  480. position:fixed;
  481. z-index:999999999;
  482. }
  483.  
  484. .links a {
  485. display:inline-block;
  486. background-color:{color:accent};
  487. color:{color:accent3};
  488. margin:3px;
  489. padding:10px;
  490. width:15px;
  491. height:15px;
  492. font-size:15px;
  493. text-transform:uppercase;
  494. font-weight:normal;
  495. border-radius:10px;
  496. border:solid 2px {color:accent3};
  497. margin-bottom:5px;
  498. }
  499.  
  500. .links a:hover {
  501. background-color:{color:accent3};
  502. color:{color:accent};
  503. -moz-transition-duration:.5s;
  504. -webkit-transition-duration:.5s;
  505. -o-transition-duration:.5s;
  506. transform: rotate(20deg);
  507. text-shadow: 2px 2px 8px {color:accent};
  508. }
  509.  
  510. /*----------quotes---------*/
  511.  
  512. .quote {
  513. text-transform:lowercase;
  514. font-size:15px;
  515. font-weight:bold;
  516. text-align:center;
  517. letter-spacing:3px;
  518. margin-top:10px;
  519. }
  520.  
  521. .quotesource {
  522. text-align:center;
  523. margin-top:10px;
  524. font-family:'jenna sue';
  525. font-size:22px;
  526. font-weight:bold;
  527. text-transform:lowercase;
  528. letter-spacing:2px;
  529. color:{color:accent2};
  530. }
  531.  
  532.  
  533. /*----------chat---------*/
  534.  
  535. /* IMESSAGE CHAT POST */
  536. .answer span,
  537.  
  538. .convo li{margin:0 0 5px;border-radius:1em;padding:.5em 10px;max-width:75%;clear:both;position:relative}
  539.  
  540. .answer .them,.user_1,.user_3,.user_5,.user_7,.user_9,.user_11{float:left;background:{color:chat bubble 2};color:#000;left:3px}
  541.  
  542. .me::after,.user_1::after,.user_3::after,.user_5::after,.user_7::after,.user_9::after,.user_11::after{content:"";position:absolute;left:-.5em;bottom:0;width:.5em;height:1em;border-right:.5em solid {color:chat bubble 2};border-bottom-right-radius:1em .5em}
  543.  
  544. .answer .me,.user_2,.user_4,.user_6,.user_8,.user_10,.user_12{right:3px;float:right;background-color:{color:chat bubble 1};color:#000}
  545.  
  546. .them::after,.user_2::after,.user_4::after,.user_6::after,.user_8::after,.user_10::after,.user_12::after{content:"";position:absolute;right:-.5em;bottom:0;width:.5em;height:1em;border-left:.5em solid {color:chat bubble 1}; border-bottom-left-radius:1em .5em}
  547.  
  548. .me p,.answer,.asked span{padding:0;margin:0}.answer{overflow:hidden}
  549.  
  550. .asked p {
  551. text-align: left;
  552. margin: 0 0px 10px 0px;
  553. padding: 0;
  554. color: #666666;
  555. font-family:'rubik';
  556. font-size: 12px;
  557. line-height: 0px;
  558. }
  559. .footerright .viasrc {
  560. float: left;
  561. }
  562. .asked a {
  563. margin:0;padding:0;
  564. }
  565. .user_4{background-color:{color:chat bubble 1};color:#000}.user_4::after{border-color:{color:chat bubble one}}.user_6{background-color:{color:chat bubble 1};color:#000000}.user_6::after{color: chat bubble 1}}.user_5{background-color:{color:chat bubble 2};color:#000}.user_5::after{{color:chat bubble 2}}.user_3{background-color:{color:chat bubble 2};color:#000}.user_3::after{border-color:{color:chat bubble 2}}.user_7{background-color:{color:chat bubble 2};color:#000}.user_7::after{{color:chat bubble 2}}.user_8{background-color:{color:chat bubble 1};color:#000}.user_8::after{{color:chat bubble 2}}.user_9{color:chat bubble 1}.user_9::after{{color:chat bubble 2}}
  566. .convo {
  567. overflow: hidden;
  568. list-style-type: none;
  569. padding: 0;
  570. margin: 0;
  571. }
  572.  
  573.  
  574. /*----------questions---------*/
  575.  
  576. .question {
  577. background:{color:accent3};
  578. padding:10px;
  579. text-align:center;
  580. padding:20px;
  581. border-radius:10px;
  582. color:{color:text};
  583. text-transform:uppercase;
  584. letter-spacing:1px;
  585. }
  586.  
  587. .question img {
  588. float:right;
  589. }
  590.  
  591. .asker {
  592. font-family:'jenna sue';
  593. font-weight:bold;
  594. letter-spacing:2px;
  595. color:{color:accent};
  596. text-transform:lowercase;
  597. font-size:22px;
  598. }
  599.  
  600. .answer {
  601. padding:10px;
  602. margin-top:-15px;
  603. }
  604.  
  605. /*----------audio---------*/
  606.  
  607. .playerbuttonbg {
  608. position: absolute;
  609. left: 25px;
  610. top: 30px;
  611. background-color:transparent;
  612. padding: 10px;
  613. opacity: .4;
  614. filter: alpha(opacity=40);
  615. -moz-opacity: 0.4;
  616. -khtml-opacity: 0.4;
  617. transition: opacity .7s ease-in-out;
  618. -moz-transition: opacity .7s ease-in-out;
  619. -webkit-transition: opacity .7s ease-in-out;
  620. padding-bottom:20px;
  621. }
  622.  
  623. .playerbuttonbg:hover {
  624. opacity: 1;
  625. filter: alpha(opacity=100);
  626. -moz-opacity: 1;
  627. -khtml-opacity: 1;
  628. }
  629.  
  630. .tumblr_audio_player {
  631. height: 90px;
  632. width: 32px;
  633. }
  634.  
  635. .audioimgwrapper {
  636. position: absolute;
  637. left: 0px;
  638. top: 0px;
  639. -webkit-border-radius: 5px;
  640. -moz-border-radius: 5px;
  641. border-radius: 5px;
  642. overflow: hidden;
  643. width: 100px;
  644. height: 100px;
  645. }
  646.  
  647. .audioimgwrapper img {
  648. width: 100%;
  649. height: auto;
  650. -webkit-border-radius: 5px;
  651. -moz-border-radius: 5px;
  652. border-radius: 5px;
  653. }
  654.  
  655. .trackdetails {
  656. width: auto;
  657. display:inline-block;
  658. margin-left: 150px;
  659. min-height: 85px;
  660. font-family:'rubik';
  661. font-weight:bold;
  662. text-transform:lowercase;
  663. letter-spacing:1px;
  664. text-align:center;
  665. }
  666.  
  667. .audiowrapper {
  668. position: relative;
  669. display:inline-block;
  670. }
  671.  
  672. /*----------credit---------*/
  673.  
  674. .credit {
  675. font-size:15px;
  676. position:fixed;
  677. font-weight:normal;
  678. bottom:10px;
  679. right:15px;
  680. z-index:10;
  681. text-align:right;
  682. }
  683.  
  684. .credit a {
  685. background-color:{color:accent};
  686. color:{color:accent3};
  687. padding-top:6px;
  688. padding-right:7px;
  689. padding-left:6px;
  690. border-radius:5px;
  691. }
  692.  
  693. .credit a:hover {
  694. background-color:{color:accent3};
  695. color:{color:accent};
  696. -moz-transition-duration:0.5s;
  697. -webkit-transition-duration:0.5s;
  698. -o-transition-duration:0.5s;
  699. }
  700.  
  701.  
  702. </style>
  703. </head>
  704.  
  705. <body>
  706. <div class="container">
  707.  
  708. <div class="credit">
  709. <a title="skyofrp" href="http://skyofrp.tumblr.com/"><span class="th th-avocado-o
  710. "></span></a></div>
  711.  
  712.  
  713. <div class="sidebar">
  714. <div class="inner">
  715.  
  716. <img src="{image:sidebar}">
  717.  
  718. <div class="links">
  719. <a title="home" href="/"><span class="th th-fire-o"></span></a>
  720. <a title="message" href="/ask"><span class="th th-champagne-o"></span></a>
  721. <br>
  722. <a href="{text:link 1 url}" title="{text:link 1 title}"><span class="th th-strawberry-o"></span></a>
  723. <a href="{text:link 2 url}" title="{text:link 2 title}"><span class="th th-cupcake-o"></span></a>
  724. </div>
  725.  
  726. <div class="sidetitle">{text:title}</div>
  727.  
  728. </div>
  729.  
  730. </div>
  731.  
  732. <div class="entries">
  733. {block:Posts}
  734. <div class="posts">
  735.  
  736. {block:Text}
  737. <h1>{block:Title}{Title}{/block:Title}</h1>
  738. {Body}{/block:Text}
  739.  
  740.  
  741. {block:Photo}
  742. {LinkOpenTag}<img src="{PhotoURL-HighRes}" width="300px" alt="{PhotoAlt}" />
  743.  
  744. {LinkCloseTag}
  745. {block:Caption}{Caption}{/block:Caption}
  746. {/block:Photo}
  747.  
  748.  
  749. {block:Photoset}
  750. {Photoset}
  751. {block:Caption}{Caption}{/block:Caption}
  752. {/block:Photoset}
  753.  
  754.  
  755. {block:Quote}
  756. <div class="quote">&#8220;{Quote}&#8221;</div>
  757. {block:Source}<div class="quotesource"> — {Source}</div>
  758. {/block:Source}{/block:Quote}
  759.  
  760.  
  761. {block:Link}
  762. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  763. {block:Description}{Description}{/block:Description}
  764. {/block:Link}
  765.  
  766.  
  767. {block:Chat}
  768. {block:Title}
  769. <h1>{Title}</h1>{/block:Title}<br>
  770. <ul class="convo">{block:Lines}<li class="line_{Alt} user_{UserNumber}">{block:Label}<span class="label"><strong>{Label}</strong></span>{/block:Label}
  771. {Line}</li>{/block:Lines}</ul>
  772. {/block:Chat}
  773.  
  774.  
  775. {block:Audio}
  776. {block:AudioPlayer}
  777. <div class="audiowrapper">
  778. {block:AlbumArt}
  779. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  780. {/block:AlbumArt}
  781.  
  782. <div class="playerbuttonbg">
  783. <div class="newplayerbutton">
  784. <div class="playerbuttonhug">
  785.  
  786. {AudioPlayer}
  787.  
  788. </div>
  789. </div>
  790. </div>
  791.  
  792. <div class="trackdetails">
  793.  
  794. {block:TrackName}<h1>{TrackName}</h1>{/block:TrackName}<br/>
  795. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  796. {block:Album}Album: {Album}{/block:Album}<br/>
  797. {PlayCountWithLabel}
  798.  
  799. </div>
  800. </div>
  801. {/block:AudioPlayer}
  802.  
  803. {block:Caption}{Caption}{/block:Caption}
  804. {/block:Audio}
  805.  
  806.  
  807. {block:Video}
  808. {Video-300}
  809. {block:Caption}{Caption}{/block:Caption}
  810. {/block:Video}
  811.  
  812.  
  813. {block:Answer}
  814. <div class="question"><img src="{AskerPortraitURL-40}">
  815. {Question}<br><div class="asker">&mdash; {Asker}</div></div><br>
  816. <div class="answer">
  817. {Answer}</div>
  818. {/block:Answer}
  819.  
  820. {block:Date}
  821. <div class="info">
  822. <a href="{Permalink}" title="{TimeAgo}"><span class="th th-clock-o"></span></span></a>
  823.  
  824. &nbsp;&nbsp;
  825. <a href="{Permalink}" title="{NoteCountwithLabel}"><span class="th th-heart-1-o"></span></span></a>
  826. &nbsp;&nbsp;
  827.  
  828. {block:RebloggedFrom}
  829. <a href="{ReblogParentURL}" title="{ReblogParentname}"><span class="th th-upload-o"></span></span></a>
  830. &nbsp;&nbsp;
  831. {/block:RebloggedFrom}
  832. {block:ContentSource}
  833. <a href="{SourceURL}" title="{SourceTitle}"><span class="th th-home-o"></span></a>
  834. &nbsp;&nbsp;
  835. {/block:ContentSource}
  836.  
  837. <a href="{ReblogURL}" target="_blank" class="details" title="reblog"><span class="th th-reload"></span></a>
  838. {/block:Date}
  839.  
  840. {block:HasTags}
  841. <div class="tags">
  842. {block:Tags}
  843.  
  844. <a href="{TagURL}"># {Tag}</a>
  845. {/block:Tags}
  846. </div>
  847. {/block:HasTags}
  848.  
  849.  
  850. </div>
  851.  
  852. </div>
  853.  
  854.  
  855. {block:PostNotes}
  856. {PostNotes}
  857. {/block:PostNotes}
  858.  
  859. {/block:Posts}
  860.  
  861. <div class="pagination">
  862. {block:Pagination}
  863. {block:PreviousPage}
  864. <a href="{PreviousPage}">« sink</a>&nbsp;&nbsp;{/block:PreviousPage}
  865.  
  866. {block:NextPage}
  867. <a href="{NextPage}"> swim » </a>
  868. {/block:NextPage}
  869. {/block:Pagination}
  870. </div>
  871.  
  872. {block:ContentSource}
  873. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  874. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  875. {/block:SourceLogo}
  876. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  877. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  878.  
  879.  
  880.  
  881. </body>
  882.  
  883. </div></div></div></div></div></div></div></div></div></div></div>
  884. </html>
Advertisement
Add Comment
Please, Sign In to add comment