trenzalours

botm custom theme

Jul 8th, 2014
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!---
  3. |||||||||| T R E N Z A L O U R S - T H E M E S ||||||||||
  4.  
  5. -PLEASE DON'T REMOVE THE CREDIT- -DON'T REPOST AND CLAIM AS YOUR OWN-
  6. -EDIT AS MUCH AS YOU LIKE-
  7.  
  8. _________________________________________________________________________
  9. -Feel free to message me with any questions! Enjoy!
  10.  
  11. wwww.trenzathemes.tumblr.com *****
  12. ****** wwww.trenzalours.tumblr.com
  13. _________________________________________________________________________
  14. --->
  15. <head>
  16. <link href='http://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
  17. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  18. <title>{Title}</title>
  19. <link rel="shortcut icon" href="{Favicon}">
  20. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  21. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  22.  
  23.  
  24. <meta name="color:bg" content="#ffffff"/>
  25. <meta name="color:text" content="#000000"/>
  26. <meta name="color:link" content="#000000"/>
  27. <meta name="color:title"content="#000000"/>
  28. <meta name="color:accent"content="#aaaaaa"/>
  29. <meta name="color:scrollbar" content="#000000" />
  30.  
  31. <meta name="text:url" content="" />
  32.  
  33. <meta name="text:Link 1" content="" />
  34. <meta name="text:Link 1 url" content="" />
  35. <meta name="text:Link 2" content="" />
  36. <meta name="text:Link 2 url" content="" />
  37. <meta name="text:Link 3" content="" />
  38. <meta name="text:Link 3 url" content="" />
  39.  
  40. <!-- start of script tooltip -->
  41. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  42. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  43. <script>
  44.  
  45. (function($){
  46.  
  47. $(document).ready(function(){
  48.  
  49. $("a[title]").style_my_tooltips({
  50.  
  51. tip_follows_:true,
  52.  
  53. tip_delay_time:90,
  54.  
  55. tip_fade_speed:600,
  56.  
  57. attribute:"title"
  58.  
  59. });
  60.  
  61. });
  62.  
  63. })(jQuery);
  64.  
  65. </script>
  66. <script type="text/javascript"
  67. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  68.  
  69. <script>
  70.  
  71. <script type="text/javascript"
  72. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  73. <script>
  74. $(document).ready(function() {
  75. //
  76. $('a.poplight[href^=#]').click(function() {
  77. var popID = $(this).attr('rel'); //Get Popup Name
  78. var popURL = $(this).attr('href'); //Get Popup href to define size
  79. var query= popURL.split('?');
  80. var dim= query[1].split('&');
  81. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  82. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  83. var popMargTop = ($('#' + popID).height() + 80) / 2;
  84. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  85. //Apply Margin to Popup
  86. $('#' + popID).css({
  87. 'margin-top' : -popMargTop,
  88. 'margin-left' : -popMargLeft
  89. });
  90. $('body').append('<div id="fade"></div>');
  91. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  92. return false;
  93. });
  94. $('a.close, #fade').live('click', function() {
  95. $('#fade , .popup_block').fadeOut(function() {
  96. $('#fade, .close').remove(); //fade them both out
  97. });
  98. return false;
  99. });
  100. });
  101. </script>
  102. <script type="text/javascript"
  103. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  104.  
  105. <script>
  106.  
  107.  
  108.  
  109. $(document).ready(function() {
  110.  
  111. //
  112.  
  113.  
  114.  
  115. //When you click on a link with class of poplight and the href starts with a #
  116.  
  117. $('a.poplight[href^=#]').click(function() {
  118.  
  119. var popID = $(this).attr('rel'); //Get Popup Name
  120.  
  121. var popURL = $(this).attr('href'); //Get Popup href to define size
  122.  
  123.  
  124.  
  125. //Pull Query & Variables from href URL
  126.  
  127. var query= popURL.split('?');
  128.  
  129. var dim= query[1].split('&');
  130.  
  131. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  132.  
  133.  
  134.  
  135. //Fade in the Popup and add close button
  136.  
  137. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend(<a href="#" class="close">);
  138.  
  139.  
  140. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  141.  
  142. var popMargTop = ($('#' + popID).height() + 80) / 2;
  143.  
  144. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  145.  
  146.  
  147.  
  148. //Apply Margin to Popup
  149.  
  150. $('#' + popID).css({
  151.  
  152. 'margin-top' : -popMargTop,
  153.  
  154. 'margin-left' : -popMargLeft
  155.  
  156. });
  157.  
  158.  
  159.  
  160. //Fade in Background
  161.  
  162. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  163.  
  164. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  165.  
  166.  
  167.  
  168. return false;
  169.  
  170. });
  171.  
  172.  
  173.  
  174. //Close Popups and Fade Layer
  175.  
  176. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  177.  
  178. $('#fade , .popup_block').fadeOut(function() {
  179.  
  180. $('#fade, a.close').remove(); //fade them both out
  181.  
  182. });
  183.  
  184. return false;
  185.  
  186. });
  187.  
  188.  
  189.  
  190.  
  191.  
  192. });
  193.  
  194. </script>
  195.  
  196.  
  197.  
  198. <!--CSS customization here. -->
  199.  
  200.  
  201. <style type="text/css">
  202. #tabs{
  203. color:{color:title};
  204. font-size:9px;
  205. text-transform:uppercase;
  206. text-align:justify;
  207. overflow:scroll;
  208. max-height:200px;
  209. width:200px;
  210. }
  211.  
  212. #fade {
  213. display: none;
  214. background:{color:bg};
  215. position: fixed;
  216. left: 0;
  217. top:0;
  218. width:100%;
  219. height:100%;
  220. opacity:1;
  221. z-index: 9999;
  222. }
  223.  
  224. .popup_block{
  225. background:{color:bg};
  226. border:3px solid {color:accent};
  227. border-bottom:3px solid {color:title};
  228. border-top:3px solid {color:title};
  229. display: none;
  230. color:{color:text};
  231. padding: 20px 30px;
  232. float: left;
  233. position: fixed;
  234. top: 50%;
  235. left: 50%;
  236. z-index: 99999;
  237. }
  238.  
  239. .popup_block a {
  240. color:{color:title};
  241. }
  242.  
  243. img.btn_close {
  244. float: right;
  245. margin: -55px -55px 0 0;
  246. }
  247.  
  248. *html #fade {
  249. position: absolute;
  250. }
  251.  
  252. *html .popup_block {
  253. position: absolute;
  254. }
  255.  
  256.  
  257. *, #hrefs a:hover {
  258. cursor: url(http://media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif), auto;
  259. }
  260.  
  261. *, a a:hover {
  262. cursor: url(http://media.tumblr.com/tumblr_m2umkqvNUT1qfamg6.gif), auto;
  263. }
  264.  
  265. *, body, a:hover {
  266. cursor: url(http://i.imgur.com/2qleX.jpg), auto;
  267. }
  268.  
  269.  
  270. ::selection {
  271. background-color:{color:selection};
  272. color:white;
  273. }
  274.  
  275. ::-webkit-scrollbar {
  276. background-color:{color:title};
  277. border:2px solid {color:bg};
  278. height:6px;
  279. width:6px;
  280. }
  281.  
  282. ::-webkit-scrollbar-thumb:vertical {
  283. background:{color:accent};
  284. border:2px solid {color:bg};
  285. height:6px;
  286. }
  287.  
  288. ::-webkit-scrollbar-thumb:horizontal {
  289. background-color:{color:accent};
  290. border:2px solid {color:bg};
  291. height:6px!important;
  292. }
  293.  
  294. /*---TOOLTIPS---*/
  295.  
  296. #s-m-t-tooltip {
  297. max-width:300px;
  298. padding: 5px 7px;
  299. margin:10px;
  300. background-color:{color:bg};
  301. font-family:calibri;
  302. font-size:8px;
  303. font-style:bold;
  304. letter-spacing:1px;
  305. text-transform:uppercase;
  306. color:{color:text};
  307. z-index:9999999999999999999999;
  308. }
  309.  
  310. @-webkit-keyframes Beeh {
  311. 0% {-webkit-transform: opacity(.2);}
  312. 50% {-webkit-transform: opacity(1.00);}
  313. 70% {-webkit-transform: opacity(.7);}
  314. 100% {-webkit-transform: opacity(1);}}
  315.  
  316. /*---end tooltips---*/
  317.  
  318. /*TUMBLR CONTROL ICONS*/
  319.  
  320. #tumblr_controls{
  321. position:fixed !important;
  322. -webkit-filter: invert(100%)
  323. }
  324.  
  325.  
  326. body {
  327. background:{color:bg};
  328. color:{color:text};
  329. font-family:calibri;
  330. font-size:11px;
  331. text-align:justify;
  332. margin:0;
  333. line-height:17px;}
  334.  
  335.  
  336. a {
  337. color:{color:link};
  338. text-decoration:none;
  339. }
  340.  
  341. a:hover {
  342. color:{color:hover};
  343. -webkit-transition: all .5s ease;
  344. -moz-transition: all .5s ease;
  345. transition: all .5s ease;
  346.  
  347. }
  348.  
  349. p {
  350. font-size: 1em;
  351. line-height: 1.25em;
  352. margin: 1.25em 0;
  353. text-align: justify;
  354. }
  355.  
  356. img {
  357. border:none;
  358. }
  359.  
  360. blockquote {
  361. padding-left:5px;
  362. border-left:2px solid;
  363. }
  364.  
  365. blockquote blockquote {
  366. padding-left:5px;
  367. border-left:2px solid;
  368. }
  369. b,strong{
  370. font-weight:bold;
  371. color:{color:title};
  372. }
  373.  
  374. i,em{
  375. font-style:italic;
  376. color:{color:accent};
  377. }
  378.  
  379. pre{
  380. background:{color:accent};
  381. color:{color:text};
  382. padding:3px;
  383. white-space: pre-wrap;
  384. white-space: -moz-pre-wrap;
  385. white-space: -pre-wrap;
  386. white-space: -o-pre-wrap;
  387. word-wrap: break-word;
  388. }
  389.  
  390. big{
  391. font-size:15px;
  392. color:{color:accent};
  393.  
  394. }
  395.  
  396. small{
  397. font-size:7px;
  398. letter-spacing:1px;
  399. }
  400.  
  401.  
  402. .caption{
  403. display:block;
  404. }
  405.  
  406. /*header*/
  407. #headers {
  408. position:relative;
  409. margin-top:0px;
  410. margin-left:-5px;
  411. background:white;
  412. width:400px;
  413. max-height:400px;
  414. text-align:center;
  415. z-index:1;
  416. opacity:.9;
  417. }
  418.  
  419.  
  420. .fufu {
  421. width:100px;
  422. -webkit-transition: all 2s ease-in;
  423. -moz-transition: all 2s ease-in;
  424. transition: all 2s ease-in;
  425.  
  426. }
  427.  
  428. .fufu:hover {
  429. -webkit-transform: translate(2em,0);
  430. -moz-transform: translate(2em,0);
  431. -o-transform: translate(2em,0);
  432. }
  433.  
  434. #biter
  435. #bite a {display:block}
  436. #bite .death {
  437. margin-bottom:-40px;
  438. filter: alpha(opacity = 0);opacity:0;
  439. -webkit-transition: all .5s ease;
  440. -moz-transition: all .5s ease;
  441. transition: all .5s ease;
  442.  
  443. }
  444.  
  445. #bite:hover .death {
  446. margin-bottom:-40px;
  447. -webkit-transition: all .5s ease-out;
  448. -moz-transition: all .5s ease-out;
  449. transition: all .5s ease-out;
  450. filter: alpha(opacity = 100);
  451. filter: alpha(opacity = 100);
  452. opacity:100;
  453.  
  454. }
  455.  
  456. #titles {
  457. font-size:40px;
  458. margin:100px 0 0px 0;
  459. padding-bottom:5px;
  460. letter-spacing:4px;
  461. text-align:center;
  462. text-transform:uppercase;
  463. color:{color:title};
  464. font-family: 'Fjalla One', sans-serif;
  465. text-shadow: 3px -3px 0 {color:accent};
  466. -webkit-transition: all .5s ease;
  467. -moz-transition: all .5s ease;
  468. transition: all .5s ease;
  469. }
  470. #titles a{
  471. color:{color:title};
  472. }
  473. #titles a:hover{
  474. color:{color:accent};
  475. text-shadow: 3px -3px 0 {color:title};
  476. -webkit-transition: all .5s ease;
  477. -moz-transition: all .5s ease;
  478. transition: all .5s ease;
  479.  
  480. }
  481.  
  482.  
  483. #hrefs{
  484. border:0;
  485. margin-top:10px;
  486. text-align:center;
  487. list-style:none;
  488. line-height:0px
  489. }
  490.  
  491. #hrefs a {
  492. width:5px;
  493. height:5px;
  494. display:inline-block;
  495. line-height:0px;
  496. padding:2px;
  497. text-align:center;
  498. border-radius:20px;
  499. display:inline-block;
  500. text-decoration:none;
  501. background:{color:bg};
  502. border:3px solid {color:title};
  503. transition-duration: 0.8s;
  504. -moz-transition-duration: 0.8s;
  505. -webkit-transition-duration: 0.8s;
  506. -o-transition-duration: 0.8s;
  507. }
  508.  
  509. #hrefs a:hover {
  510. background-color:{color:link};
  511. border:3px solid white;
  512.  
  513. }
  514.  
  515. #description {
  516. color:{color:text};
  517. font-size:10px;
  518. padding-top:10px;
  519. padding-bottom:5px;
  520. width:300px;
  521. max-height:200px;
  522. margin-left:15px;
  523. text-align:justify;
  524. overflow:hidden;
  525. }
  526.  
  527. #descripton p{
  528. line-height:1.5em;
  529. word-spacing:1px;
  530. }
  531.  
  532.  
  533. /*pagination*/
  534.  
  535.  
  536. #pagination{
  537. padding:15px;
  538. margin-top:100px;
  539. text-align:center;
  540. bottom:30px;
  541. font-size:12px;
  542. letter-spacing:2px;
  543. z-index:100;
  544. font-family: 'Fjalla One', sans-serif;
  545. text-shadow: 1px -1px 0 {color:accent};
  546. text-transform:uppercase;
  547. color:{color:title};
  548. }
  549. #pagination a{
  550. margin-right:40px;
  551. margin-left:-20px;
  552. color:{color:title};
  553. }
  554.  
  555.  
  556. #pagination a:hover{
  557. text-shadow: 1px -1px 0 {color:title};
  558. color:{color:accent};
  559. transition:all;
  560. -moz-transition-duration: 0.8s;
  561. -webkit-transition-duration: 0.8s;
  562. -o-transition-duration: 0.8s;
  563.  
  564. }
  565.  
  566. /*container*/
  567. #containers {
  568. left:50%;
  569. margin-left:-200px;
  570. position:absolute;
  571. }
  572.  
  573.  
  574.  
  575. /*posts*/
  576.  
  577. #entry {
  578. margin-top:50px;
  579. width:500px;
  580. }
  581.  
  582.  
  583.  
  584. #stars {
  585. width:400px;
  586. padding-bottom:100px;
  587.  
  588. }
  589. #stars img{
  590. max-width:400px;
  591. display:block;
  592. }
  593.  
  594.  
  595. h1{
  596. font-size:20px;
  597. line-height:1.5em;
  598. font-weight:100;
  599. text-transform:uppercase;
  600. padding-left:20px;
  601. margin-bottom:15px;
  602. text-align:center;
  603. color:{color:title};
  604. font-family: 'Fjalla One', sans-serif;
  605. text-shadow: 1px -1px 0 {color:accent};
  606. }
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613. /*audio*/
  614.  
  615. .newplayerbutton {
  616. position: relative;
  617. width: 19px;
  618. height: 19px;
  619. overflow: hidden;
  620. }
  621.  
  622. .playerbuttonhug {
  623. position: absolute;
  624. top: -11px;
  625. left: -12px;
  626. }
  627.  
  628.  
  629. .tumblr_audio_player {
  630. border: none;
  631. padding: 0px;
  632. margin: 0px;
  633. height: 50px;
  634. width: 500px;
  635. }
  636.  
  637. .playerbuttonbg {
  638. position: absolute;
  639. left: 20px;
  640. top: 20px;
  641. width: 28px;
  642. height: 28px;
  643. background-color:white;
  644. padding: 10px;
  645. -webkit-border-radius: 3px;
  646. -moz-border-radius: 3px;
  647. border-radius: 3px;
  648. opacity: .4;
  649. filter: alpha(opacity=40);
  650. -moz-opacity: 0.4;
  651. -khtml-opacity: 0.4;
  652. transition: opacity .7s ease-in-out;
  653. -moz-transition: opacity .7s ease-in-out;
  654. -webkit-transition: opacity .7s ease-in-out;
  655. }
  656.  
  657. .playerbuttonbg:hover {
  658. opacity: 1;
  659. filter: alpha(opacity=100);
  660. -moz-opacity: 1;
  661. -khtml-opacity: 1;
  662. }
  663.  
  664. .audioimgwrapper {
  665. position: absolute;
  666. left: 0px;
  667. top: 0px;
  668. -webkit-border-radius: 5px;
  669. -moz-border-radius: 5px;
  670. border-radius: 5px;
  671. overflow: hidden;
  672. width: 88px;
  673. height: 88px;
  674. }
  675.  
  676. .audioimgwrapper img {
  677. width: 100%;
  678. height: auto;
  679. -webkit-border-radius: 5px;
  680. -moz-border-radius: 5px;
  681. border-radius: 5px;
  682. }
  683.  
  684. .trackdetails {
  685.  
  686. width: auto;
  687. display:inline-block;
  688. margin-left: 100px;
  689. min-height: 85px;
  690. }
  691.  
  692. .audiowrapper {
  693. position: relative;
  694. display:inline-block;
  695. }
  696.  
  697.  
  698.  
  699.  
  700. /*asks*/
  701.  
  702. .who{
  703. letter-spacing:1px;
  704. line-height:10px;
  705. text-align:left;
  706. color:{color:title};
  707. padding-bottom:5px;
  708.  
  709. }
  710.  
  711.  
  712. .answer {
  713. text-align:center;
  714. background:#eee;
  715. padding:5px;
  716. border-top:1px solid {color:title};
  717. }
  718.  
  719.  
  720.  
  721.  
  722.  
  723. .chat ol {
  724. padding:0;
  725. line-height:180%;
  726. list-style:none;
  727. color:{color:title};
  728. }
  729.  
  730. .line.odd {
  731. padding:5px;
  732. color:{color:accent};
  733. }
  734.  
  735. .line.even {
  736. padding:5px;
  737. }
  738.  
  739. .label{
  740. font-weight:bold;
  741. padding-right:1px;
  742. letter-spacing:1px;
  743. text-transform:lowercase;
  744. color:{color:title};
  745. }
  746.  
  747.  
  748. /*permalink and notes*/
  749.  
  750.  
  751. #info {
  752. opacity:0;
  753. font-size:12px;
  754. padding-left:7px;
  755. margin-left:410px;
  756. margin-top:20px;
  757. position:absolute;
  758. width:120px;
  759. z-index:-50px;
  760. color:{color:text};
  761. border-left:4px solid {color:title};
  762. text-transform:uppercase;
  763. transition-duration: 0.8s;
  764. -moz-transition-duration: 0.8s;
  765. -webkit-transition-duration: 0.8s;
  766. -o-transition-duration: 0.8s;
  767. }
  768.  
  769.  
  770. #info a{
  771. margin-right:5px;
  772. color:{color:link};
  773. font-size:9px;
  774. padding:5px;
  775. }
  776.  
  777. #info i{
  778. margin-top:5px;
  779. color:{color:title};
  780. font-size:11px;
  781. }
  782.  
  783. #info i:hover{
  784. color:{color:accent};
  785. transition:all;
  786. -moz-transition-duration: 0.8s;
  787. -webkit-transition-duration: 0.8s;
  788. -o-transition-duration: 0.8s;
  789. }
  790.  
  791.  
  792. #stars:hover #info {
  793. opacity:1;
  794. transition-duration: 0.8s;
  795. -moz-transition-duration: 0.8s;
  796. -webkit-transition-duration: 0.8s;
  797. -o-transition-duration: 0.8s;}
  798.  
  799. .tags {
  800. display:none;
  801.  
  802. }
  803.  
  804. /*page notes*/
  805.  
  806. .pagenotes {{block:IndexPage}display: none!important;{/block:IndexPage}{block:PermalinkPage}width:400px;{/block:PermalinkPage}text-align:left;}.pagenotes img {display:none!important;}note li {list-style-type:none;padding:0px 0px;text-align:justify;margin:0 0 0 -40px;font-size:9px;text-transform:lowercase;}
  807.  
  808. #creds a {
  809. bottom:13px;
  810. position:fixed;
  811. right:10px;
  812. float:right;
  813. display:inline-block;
  814. line-height:0px;
  815. padding:3px;
  816. text-align:center;
  817. border-radius:20px;
  818. display:inline-block;
  819. text-decoration:none;
  820. background:{color:bg};
  821. border:2px solid {color:title};
  822. transition-duration: 0.8s;
  823. -moz-transition-duration: 0.8s;
  824. -webkit-transition-duration: 0.8s;
  825. -o-transition-duration: 0.8s;
  826. }
  827.  
  828. #creds a:hover {
  829. background-color:{color:link};
  830. border:2px solid white;
  831.  
  832. }
  833.  
  834. {CustomCSS}</style></head>
  835. <div id="askbox" class="popup_block"><p><h1>inbox</h1>
  836. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{text:url}.tumblr.com" width="100%"></iframe></p></div>
  837. <body>
  838. <div id="containers">
  839. <div id="headers">
  840. <div id="bite">
  841. <div id="titles"><a href="/">{Title}</a></div>
  842. <div id="hrefs">
  843. <a href="/" title="home"></a>
  844. <a href="#?w=500" rel="askbox" class="poplight" title="contact"></a>
  845. <a href="{text:Link 1 URL}" title ="{text:Link 1}"></a>
  846. <a href="{text:Link 2 URL}" title="{text:Link 2}"></a>
  847. <a href="{text:Link 3 URL}" title="{text:Link 3}"></a>
  848. </div>
  849. <div class="death">
  850. <div align="center">
  851. <div id="description">{Description}</div>
  852. </div>
  853. </div>
  854. </div>
  855. </div>
  856.  
  857.  
  858. <div id="entry">
  859. {block:Posts}
  860. <div id="stars">
  861. {block:Date}
  862. <div id="info">
  863. <a href="{Permalink}">
  864. {ShortMonth} {DayOfMonth} {ShortYear} <br>{TimeAgo}</a>{block:NoteCount}<br>
  865. <a href="{Permalink}"
  866. title="{NoteCountWithLabel}"><i class="fa fa-circle"></i></a>{/block:NoteCount}
  867. {block:RebloggedFrom}
  868. <a href="{ReblogParentURL}" title="{ReblogParentName}"><i class="fa fa-circle-o"></i></a>
  869. {block:ContentSource}
  870. <a href="{ReblogRootURL}"title="{ReblogRootName}"><i class="fa fa-circle"></i></a>
  871. {/block:ContentSource}
  872. {/block:RebloggedFrom}
  873. {block:PermalinkPage}
  874. {/block:PermalinkPage}
  875.  
  876. {block:HasTags}
  877. <div class="tags">
  878. {block:Tags}
  879. <a href="{TagUrl}">{Tag}</a><br>{/block:Tags}
  880. </div>{/block:HasTags}
  881. </div>{/block:Date}
  882.  
  883. {block:Quote}
  884. {block:Source}
  885. {Source}{/block:Source}
  886. <h1>{Quote}</h1>
  887. {/block:Quote}
  888.  
  889.  
  890.  
  891. {block:Text}
  892. {block:Title}
  893. <h1>{Title}</h1>{/block:Title}
  894. {Body}{/block:Text}
  895.  
  896. {block:Link}
  897.  
  898. <h1>
  899. <a href="{URL}">{Name}</a></h1>{block:Description}
  900. {Description}
  901. {/block:Description}
  902. {/block:Link}
  903.  
  904. {block:Chat}
  905. {block:Title}
  906. <h1>{Title}</h1>
  907. {/block:Title}
  908. <div class="chat">
  909. <ol>{block:Lines}
  910. <li class="line {Alt}">
  911. {block:Label}
  912. <span class="label">
  913. {Label}</span>
  914. {/block:Label}{Line}</li>
  915. {/block:Lines}
  916. </ol></div>
  917. {/block:Chat}
  918.  
  919. {block:Photo}
  920. <center>{LinkOpenTag}
  921. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>
  922. {block:Permalink}
  923. {block:Caption}
  924. {Caption}{/block:Caption}
  925. {/block:Permalink}
  926.  
  927.  
  928. {/block:Photo}
  929.  
  930. {block:Photoset}
  931. <div class="photoset">
  932. {Photoset-400}</div>
  933. {block:Permalink}
  934. {block:Caption}
  935. {Caption}{/block:Caption}
  936. {/block:Permalink}
  937. {/block:Photoset}
  938.  
  939. {block:Video}
  940.  
  941. {Video-400}
  942.  
  943. {/block:Video}
  944.  
  945.  
  946.  
  947. {block:AudioPlayer}
  948. <div class="audiowrapper">
  949. {block:AlbumArt}
  950. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  951. {/block:AlbumArt}
  952.  
  953. <div class="playerbuttonbg">
  954. <div class="newplayerbutton">
  955. <div class="playerbuttonhug">
  956. {AudioPlayerWhite}
  957. </div>
  958. </div>
  959. </div>
  960.  
  961. <div class="trackdetails">
  962. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  963. {block:Artist}Artist:{Artist}{/block:Artist}<br/>
  964. {block:Album}Album:{Album}{/block:Album}<br/>
  965. </div>
  966. </div>
  967. {/block:AudioPlayer}
  968.  
  969. {/block:Audio}
  970.  
  971.  
  972. {block:Answer}
  973. <div class="who"><b>{Asker}</b> wondered: {Question}</div>
  974. <div class="answer">{Answer}</div>
  975. {/block:answer}
  976. </div>
  977.  
  978.  
  979.  
  980. {block:PermalinkPage}
  981. {/block:PermalinkPage}
  982. <div class="pagenotes">
  983. {block:NoteCount}
  984. {/block:NoteCount}
  985. {PostNotes}
  986. </ol>
  987.  
  988.  
  989.  
  990. </div>
  991. {/block:PostNotes}
  992. {/block:Posts}
  993.  
  994. <div id="pagination">
  995. {block:Pagination}
  996. {block:PreviousPage}
  997. <a href="{PreviousPage}">reverse</a>
  998. {/block:PreviousPage}
  999. {block:NextPage}
  1000. <a href="{NextPage}">skip</a>
  1001. {/block:NextPage}
  1002. </div>
  1003. {/block:Pagination}
  1004. </div>
  1005. </div>
  1006. </div>
  1007. </div>
  1008. <div id="creds"><a href="http://trenzalours.co.vu/" title="trenzalours themes"></a></div>
  1009. </body>
  1010. </html>
Advertisement
Add Comment
Please, Sign In to add comment