jamidanielle_

wip

Feb 4th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5. <head>
  6.  
  7. <!--------------------------------->
  8. <!--------[NOT YET RELEASED]------->
  9. <!-----THEME BY FOLKLORE THEMES---->
  10. <!----------FEBRUARY 2016---------->
  11. <!--DO NOT STEAL OR REMOVE CREDIT-->
  12. <!--------------------------------->
  13. <!--------------------------------->
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17. <script>
  18. $(document).ready(function() {
  19. //
  20. $('a.poplight[href^=#]').click(function() {
  21. var popID = $(this).attr('rel'); //Get Popup Name
  22. var popURL = $(this).attr('href'); //Get Popup href to define size
  23. var query= popURL.split('?');
  24. var dim= query[1].split('&');
  25. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  26. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  27. var popMargTop = ($('#' + popID).height() + 80) / 2;
  28. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  29. //Apply Margin to Popup
  30. $('#' + popID).css({
  31. 'margin-top' : -popMargTop,
  32. 'margin-left' : -popMargLeft
  33. });
  34. $('body').append('<div id="fade"></div>');
  35. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  36. return false;
  37. });
  38. $('a.close, #fade').live('click', function() {
  39. $('#fade , .popup_block').fadeOut(function() {
  40. $('#fade, a.close').remove(); //fade them both out
  41. });
  42. return false;
  43. });
  44. });
  45. </script>
  46.  
  47.  
  48.  
  49. <title>{Title}</title>
  50. <link rel="shortcut icon" href="{Favicon}">
  51.  
  52.  
  53. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  54. <link href='https://fonts.googleapis.com/css?family=Lato:400,100' rel='stylesheet' type='text/css'>
  55.  
  56.  
  57.  
  58. <!--meta stuff here-->
  59. <meta name="color:Background" content=""/>
  60. <meta name="color:posts bg" content=""/>
  61. <meta name="image:bg image" content=""/>
  62. <meta name="color:Header" content=""/>
  63. <meta name="color:border" content=""/>
  64.  
  65. <meta name="color: Link Hover" content=""/>
  66. <meta name="color:Links" content=""/>
  67. <meta name="text:link 1 name" content=""/>
  68. <meta name="text:link 1 url" content=""/>
  69. <meta name="text:link 2 name" content=""/>
  70. <meta name="text:link 2 url" content=""/>
  71. <meta name="text:link 3 name" content=""/>
  72. <meta name="text:link 3 url" content=""/>
  73. <meta name="text:link 4 name" content=""/>
  74. <meta name="text:link 4 url" content=""/>
  75. <meta name="color:scrollbar" content=""/>
  76.  
  77.  
  78.  
  79.  
  80.  
  81. <style type="text/css">
  82.  
  83.  
  84. /*scrollbar stuff*/
  85.  
  86. ::-webkit-scrollbar-thumb:vertical {
  87.  
  88. background-color:{color:Scrollbar};
  89. /*scrollbar's slider color*/
  90. height:100px;
  91. padding:2px;
  92. -moz-border-radius: 0px; /*these make bar rounded*/
  93. border-radius: 0px;
  94. }
  95.  
  96. ::-webkit-scrollbar-thumb:horizontal {
  97. background-color:{color:Background}; /*scrollbar's slider color*/
  98. height:100px !important;
  99. }
  100.  
  101. ::-webkit-scrollbar {
  102. height:10px;
  103. padding:2px;
  104. width:4px; /*width of slider*/
  105. background-color:{color:Background};
  106. /*scrollbar's main color*/
  107. }
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117. /**body**/
  118.  
  119.  
  120.  
  121. .popup_block{
  122. display:none;
  123. background:#fff;
  124. padding:20px;
  125. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  126. float:left;
  127. position:fixed;
  128. top:50%;left:50%;
  129. z-index: 99999;
  130. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  131. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  132. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  133. }
  134.  
  135. *html #fade {position: absolute;}
  136. *html .popup_block {position: absolute;}
  137. #fade {
  138. display:none;
  139. position:fixed;
  140. left:0px;
  141. top:0px;
  142. width:100%;
  143. height:100%;
  144. z-index:9999;
  145. background:#000; /* change to #fff for solid white */
  146. opacity:0.7 /* change to opacity:1; */
  147. }
  148.  
  149.  
  150. body {
  151. font-size:12px;
  152. font-family: arial;
  153. color:{color:Text};
  154. margin:0 auto;
  155. background: {color:Background} ;
  156. }
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163. a {
  164. color:{color:Links};
  165. text-decoration:none;
  166. -moz-transition-duration: 0.5s;
  167. -o-transition-duration: 0.5s;
  168. -webkit-transition-duration: 0.5s;
  169. transition-duration: 0.5s;
  170. }
  171.  
  172. a:hover {
  173. color:{color:Link Hover};
  174. text-decoration:none;
  175. -moz-transition-duration: 0.5s;
  176. -o-transition-duration: 0.5s;
  177. -webkit-transition-duration: 0.5s;
  178. transition-duration: 0.5s;
  179. }
  180.  
  181. #headerpic{
  182. width:100%;
  183. height:100px;
  184.  
  185. background-image:url('{image:bg image}');
  186. top:0px;
  187. z-index:99;
  188.  
  189. }
  190.  
  191. #header{
  192. width:100%;
  193. height:68px;
  194. position:fixed;
  195.  
  196. top:100px;
  197. background: {color:Header};
  198. clear:both;
  199. z-index:100;
  200.  
  201. }
  202.  
  203. #title{
  204.  
  205.  
  206. margin-top:15px;
  207. text-align:center;
  208. margin-left:20px;
  209. line-height:68px;
  210. font-size:32px;
  211. color:{color:Title};
  212. font-family:'Lato', sans-serif;
  213. font-weight:100;
  214. display:inline;
  215.  
  216.  
  217.  
  218. }
  219.  
  220.  
  221. .navlinks{
  222. font-weight:400;
  223. font-family:'Lato' ,sans-serif;
  224. margin-left:300px;
  225. font-size:14px;
  226. margin-top:-80px;
  227. line-height:68px;
  228. text-transform:uppercase;
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236. }
  237.  
  238. .navlinks a{
  239. color:{color:Links};
  240. }
  241.  
  242.  
  243. .navlinks a:hover{
  244. color:{color:Link Hover};
  245. }
  246.  
  247. .navlinks li {
  248. display:inline;
  249. padding:0px 10px;
  250.  
  251. text-align:center;
  252. }
  253.  
  254.  
  255.  
  256.  
  257. #wrapper{
  258. width:900px;
  259. margin-top:120px;
  260. margin-left:310px;
  261. }
  262.  
  263. #posts {
  264.  
  265.  
  266. width:350px;
  267. margin:15px;
  268.  
  269. padding:5px;
  270. float:left;
  271. background-color:{color:Posts bg};
  272. border:1px solid {color:Border};
  273.  
  274.  
  275.  
  276.  
  277. }
  278.  
  279.  
  280.  
  281. #posts img {
  282.  
  283. margin:0 auto;
  284. width:350px;
  285. }
  286.  
  287.  
  288. #posts .title {
  289. color:{color:Links};
  290. font-size:18px;
  291. font-family:'PT Sans Narrow', sans-serif;
  292. padding:3px 2px 2px 2px;
  293. text-transform:uppercase;
  294.  
  295. }
  296.  
  297. #posts .text {
  298. font-size:11px;
  299. font-family:arial;
  300. }
  301.  
  302. #posts h2 {
  303. font-size:14px;
  304. font-weight:normal;
  305. margin:0px;
  306. font-family:Verdana;
  307. }
  308.  
  309. #posts h2 a {
  310. font-size:12px;
  311. }
  312.  
  313. blockquote {
  314. border-left: solid 1px {color:Text};
  315. margin: 0;
  316. padding-left: 10px;
  317. }
  318.  
  319.  
  320. #posts .photocap {
  321. opacity:1;
  322. font-size:11px;
  323. padding-bottom:2px;
  324.  
  325.  
  326. }
  327.  
  328. #posts:hover .photocap {
  329. opacity:1;
  330. font-size:11px;
  331. padding-bottom:2px;
  332. transition:0.5s ease;
  333. -o-transition:0.5s ease;
  334. -moz-transition:0.5s ease;
  335. -webkit-transition:0.5s ease;
  336.  
  337.  
  338. }
  339.  
  340.  
  341.  
  342. #posts .qut {
  343. font-size:15px;
  344. font-family:'PT Sans Narrow',sans-serif;
  345. text-transform:uppercase;
  346. text-align:center;
  347.  
  348. }
  349.  
  350. #posts .src {
  351. text-align:right;
  352. margin-top:-7px;
  353.  
  354.  
  355. }
  356.  
  357. #posts #qtmrk1 {
  358. font-size:30px;
  359. text-align:center;
  360. font-family:serif;
  361. margin-bottom:6px;
  362. }
  363.  
  364. #posts #qtmrk2 {
  365. font-size:30px;
  366. text-align:center;
  367. font-family:serif;
  368. margin-top:8px;
  369. }
  370.  
  371.  
  372. #posts .photoset {
  373. width:350px;
  374. padding-right:10px;
  375. /*edited~*/
  376. margin:0 auto;
  377.  
  378. /*edited~*/
  379. }
  380.  
  381. #posts .label{
  382. font-family:arial;
  383. display:inline;
  384. font-size:11px;
  385. padding-right:2px;
  386.  
  387. }
  388.  
  389. #posts .lines{
  390. font-family:arial;
  391. display:inline;
  392. font-size:11px;
  393.  
  394. }
  395.  
  396. .question {
  397. font-size:13px;
  398. color:{color:Text};
  399. font-family:arial;
  400. text-align:left;
  401.  
  402. }
  403.  
  404. .asker {
  405. font-size:12px;
  406. color:{color:Links};
  407. font-family:arial;
  408. text-align:left;
  409. padding-top:4px;
  410. padding-bottom:10px;
  411. display:inline;
  412. }
  413.  
  414. .answer {
  415. font-size:12px;
  416. color:{color:Text};
  417. font-family:arial;
  418. text-align:left;
  419.  
  420.  
  421. }
  422.  
  423.  
  424. td img{
  425. max-height:64px;
  426. max-width:64px;
  427. }
  428.  
  429. img {
  430. max-width:100%;
  431. }
  432.  
  433. .playerbuttonbg {
  434. position: absolute;
  435. left: 20px;
  436. top: 20px;
  437. width: 19px;
  438. height: 19px;
  439. background-color: #ffffff;
  440. padding: 10px;
  441. -webkit-border-radius: 40px;
  442. -moz-border-radius: 40px;
  443. border-radius: 40px;
  444. opacity: .4;
  445. filter: alpha(opacity=40);
  446. -moz-opacity: 0.4;
  447. -khtml-opacity: 0.4;
  448. transition: opacity .7s ease-in-out;
  449. -moz-transition: opacity .7s ease-in-out;
  450. -webkit-transition: opacity .7s ease-in-out;
  451. }
  452.  
  453. .playerbuttonbg:hover {
  454. opacity: 1;
  455. filter: alpha(opacity=100);
  456. -moz-opacity: 1;
  457. -khtml-opacity: 1;
  458. }
  459.  
  460. .newplayerbutton {
  461. position: relative;
  462. width: 19px;
  463. height: 19px;
  464. overflow: hidden;
  465. }
  466.  
  467. .playerbuttonhug {
  468. position: absolute;
  469. top: -18px;
  470. left: -7px;
  471. }
  472.  
  473. .tumblr_audio_player {
  474. height: 90px;
  475. width: 270px;
  476. -moz-transform: scale(0.60, 0.60);
  477. -webkit-transform: scale(0.60, 0.60);
  478. -o-transform: scale(0.60, 0.60);
  479. -ms-transform: scale(0.60, 0.60);
  480. transform: scale(0.60, 0.60);
  481. -moz-transform-origin: top left;
  482. -webkit-transform-origin: top left;
  483. -o-transform-origin: top left;
  484. -ms-transform-origin: top left;
  485. transform-origin: top left;
  486. }
  487.  
  488. .audioimgwrapper {
  489. position: absolute;
  490. left: 0px;
  491. top: 0px;
  492. -webkit-border-radius: 40px;
  493. -moz-border-radius: 40px;
  494. border-radius: 40px;
  495. overflow: hidden;
  496. width: 79px;
  497. height: 79px;
  498. }
  499.  
  500. .audioimgwrapper img {
  501. width: 100%;
  502. height: auto;
  503. -webkit-border-radius: 40px;
  504. -moz-border-radius: 40px;
  505. border-radius: 40px;
  506. }
  507.  
  508. .trackdetails {
  509. width: auto;
  510.  
  511. display:inline-block;
  512. margin-left: 90px;
  513. min-height: 85px;
  514. font-size:12px;
  515. font-family:sans-serif;
  516. color:{color:Text};
  517. }
  518.  
  519. .audiowrapper {
  520. position: relative;
  521. display:inline-block;
  522. }
  523. /**info & tags**/
  524.  
  525. #posts #info {
  526. opacity:1;
  527. font-size:10px;
  528. font-family:arial;
  529. padding-top:8px;
  530.  
  531. text-align:right;
  532. text-transform:uppercase;
  533. margin:0 auto;
  534. border-top: 1px solid #dccbe7;
  535. }
  536.  
  537.  
  538.  
  539.  
  540. #posts:hover #info {
  541. opacity:1;
  542. font-size:10px;
  543. font-family:arial;
  544. text-transform:uppercase;
  545. padding-top:8px;
  546. text-align:right;
  547. border-top: 1px solid #eee;
  548. text-transform:uppercase;
  549. transition:0.5s ease;
  550. -o-transition:0.5s ease;
  551. -moz-transition:0.5s ease;
  552. -webkit-transition:0.5s ease;
  553. margin:0 auto;
  554. }
  555.  
  556.  
  557. #posts #info .tags{
  558. opacity:0;
  559. font-size:10px;
  560. font-family:'PT Sans Narrow', sans-serif;
  561. text-align:right;
  562. text-transform:none;
  563. font-style:italic;
  564. }
  565.  
  566. #posts:hover #info .tags{
  567. opacity:1;
  568. font-size:10px;
  569. font-family:'PT Sans Narrow', sans-serif;
  570. text-transform:none;
  571. text-align:right;
  572.  
  573. transition:0.5s ease;
  574. -o-transition:0.5s ease;
  575. -moz-transition:0.5s ease;
  576. -webkit-transition:0.5s ease;
  577.  
  578. }
  579.  
  580. #notecontainer {
  581. margin: 20px auto;
  582. width: 350px;
  583. font-size: 11px;
  584. }
  585.  
  586. #notecontainer ol.notes {
  587. list-style-type: none;
  588. margin: 0;
  589. padding: 0;
  590. }
  591.  
  592. #notecontainer img.avatar {
  593. margin-right: 10px;
  594. width: 16px;
  595. height: 16px;
  596. }
  597.  
  598.  
  599.  
  600.  
  601.  
  602. /**credit**/
  603.  
  604. #cred {
  605.  
  606. font-family:sans-serif;
  607. font-size:9px;
  608. }
  609.  
  610. #cred a {
  611. position:fixed;
  612.  
  613. width:13px;
  614. padding-top:2px;
  615. padding-bottom:2px;
  616. bottom:3px;
  617. right:5px;
  618. text-align:center;
  619. box-align:center;
  620. text-transform:none;
  621. color:{color:links};
  622. background-color:{color:background};
  623. border:1px solid {color:Links};
  624. }
  625.  
  626. #cred a:hover {
  627. color:{color:Links};
  628. background-color:#dccbe7;
  629. }
  630.  
  631. </style>
  632.  
  633.  
  634. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
  635. <script type="text/javascript">
  636. $(function(){
  637. var stickyRibbonTop = $('#header').offset().top;
  638. $(window).scroll(function(){
  639. if( $(window).scrollTop() > stickyRibbonTop ) {
  640. $('#header').css({position: 'fixed', top: '0px'});
  641. } else {
  642. $('#header').css({position: 'static', top: '0px'});
  643. }
  644. });
  645. });
  646. </script>
  647.  
  648.  
  649.  
  650.  
  651.  
  652. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  653. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
  654. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>
  655.  
  656. <script type="text/javascript">
  657. $(window).load(function(){
  658. var $wall = $('#wrapper');
  659. $wall.imagesLoaded(function(){
  660. $wall.masonry({
  661. itemSelector: '#posts',
  662. isAnimated : true
  663. });
  664. });
  665. $wall.infinitescroll({
  666. navSelector : "div#navigation",
  667. nextSelector : "div#navigation a#nextPage",
  668. itemSelector : '#posts',
  669. loadingImg : "",
  670. loadingText : " ",
  671. donetext : " ",
  672. extraScrollPx : 0,
  673. bufferPx : 10000,
  674. debug : false,
  675. errorCallback: function() {
  676. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  677. }},
  678. function( newElements ) {
  679. var $newElems = $( newElements );
  680. $newElems.hide();
  681. $newElems.imagesLoaded(function(){
  682. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 250, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  683. });
  684. }); $('#wrapper').show(500);
  685. });
  686. </script>
  687.  
  688. <script language="JavaScript">
  689. function function1(){
  690. window.scrollTo(0,5);
  691. }
  692. function function2(){
  693. window.scroll(0,2);
  694. }
  695. </script>
  696.  
  697.  
  698.  
  699. </head>
  700.  
  701. <body>
  702.  
  703.  
  704.  
  705.  
  706. </div>
  707.  
  708.  
  709. <!--posts & content-->
  710. <div id="headerpic"></div>
  711.  
  712. <div id="header">
  713.  
  714.  
  715.  
  716.  
  717. <div id="title">{Title}</div>
  718.  
  719.  
  720. <div class="navlinks">
  721. <ul>
  722. <li> <a href="/">HOME</a></li>
  723. <li> <a href="/ask">INBOX</a></li>
  724. <li> <a href="{text:Link 1 URL}">{text:Link 1 name}</a></li>
  725. <li> <a href="{text:Link 2 URL}">{text:Link 2 name}</a></li>
  726. <li> <a href="#?w=400" rel="rules" class="poplight">{text:Link 3 name}</a></li>
  727. <li> <a href="{text:Link 4 URL}">{text:Link 4 name}</a></li>
  728.  
  729.  
  730. </ul>
  731. </div>
  732.  
  733.  
  734.  
  735. </div>
  736.  
  737.  
  738. <div id="wrapper">
  739.  
  740.  
  741. {block:IndexPage}<div class="column navigation" id="navigation">
  742. {block:Pagination}
  743. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  744. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  745. </div>{/block:IndexPage}
  746.  
  747.  
  748. {block:Posts}
  749. <div id="posts">
  750.  
  751. {block:Photo}
  752. {LinkOpenTag}<img src="{PhotoURL-500}" />{LinkCloseTag}
  753. {block:Caption}<div class="photocap">{Caption}</div>{/block:Caption}
  754. {/block:Photo}
  755.  
  756. {block:Photoset}<div id="photoset">
  757. {Photoset}<!-- edited~ -->
  758. {block:Caption}<div class="photocap">{Caption}</div>{/block:Caption}</div>
  759. {/block:Photoset}
  760.  
  761. {block:Video}
  762. {Video-500}
  763. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  764. {/block:Video}
  765.  
  766. {block:Audio}
  767. {block:AudioPlayer}
  768. <div class="audiowrapper">
  769. {block:AlbumArt}
  770. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  771. {/block:AlbumArt}
  772.  
  773. <div class="playerbuttonbg">
  774. <div class="newplayerbutton">
  775. <div class="playerbuttonhug">
  776.  
  777. {AudioPlayerWhite}
  778.  
  779. </div>
  780. </div>
  781. </div>
  782.  
  783. <div class="trackdetails">
  784.  
  785. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  786. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  787. {block:Album}Album: {Album}{/block:Album}<br/>
  788. {PlayCountWithLabel}
  789.  
  790. </div>
  791. </div>
  792. {/block:AudioPlayer}
  793.  
  794. {block:Caption}{Caption}{/block:Caption}
  795. {/block:Audio}
  796.  
  797. {block:Quote}
  798. <div class="qut"><div id="qtmrk1">“</div>{Quote}<div id="qtmrk2">”</div></div>
  799. {block:Source}<div class="src"><br>&mdash; {Source}</div>{/block:Source}
  800. {/block:Quote}
  801.  
  802. {block:Text}
  803. {block:Title}<div class="title">{Title}</div>{/block:Title}
  804. <div class="text">{Body}</div>
  805. {/block:Text}
  806.  
  807. {block:Answer}
  808. <table style="border-bottom:1px solid #a0a0a0;padding-bottom:5px;margin-bottom:5px;">
  809. <tr>
  810. <td style="vertical-align:top;padding-right:10px;"><img src="{AskerPortraitURL-40}"></td>
  811. <td style="vertical-align:top;"><div class="asker">{Asker}</div> asked: <div class="question"><em>{Question}</em></div></td>
  812. </tr>
  813. </table>
  814. <div class="answer">{Answer}</div>
  815. {/block:Answer}
  816.  
  817.  
  818.  
  819. {block:Chat}
  820. {block:Title}<h1>{Title}</h1>{/block:Title}
  821. {block:Lines}{block:Label}<div class="label"><b>{Label}</b></div>{/block:Label}<div class="lines">{Line}</div><br>{/block:Lines}
  822. {/block:Chat}
  823.  
  824. {block:Link}
  825. <div class="title"><a href="{URL}">{Name}</a></div>
  826. {block:Description}
  827. <div class="text">{Description}</div>
  828. {/block:Description}
  829. {/block:Link}
  830.  
  831.  
  832.  
  833. <div id="info">
  834. <a href="{Permalink}">{block:Date}{TimeAgo}&nbsp;/&nbsp;{/block:Date}</a><a href="{Permalink}">{block:NoteCount}{NoteCount}{/block:NoteCount}</a> &nbsp;
  835. {block:PermalinkPage}
  836. {block:RebloggedFrom} <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  837. &nbsp; {block:ContentSource} <a href="{SourceURL}"><a href="{SourceURL}">source</a>{/block:ContentSource}
  838. {block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}{/block:PermalinkPage}
  839.  
  840. {block:HasTags}<div id="tags">
  841. {block:Tags}
  842. <a href="{TagURL}"> #{Tag}&nbsp;</a>
  843. {/block:Tags}
  844. </div>
  845. {/block:HasTags}
  846.  
  847.  
  848.  
  849. </div>
  850.  
  851. {block:PostNotes}
  852. <div id="notecontainer">{PostNotes}</div>
  853. {/block:PostNotes}
  854. </div>
  855.  
  856.  
  857.  
  858.  
  859. {/block:Posts}
  860.  
  861.  
  862. </div>
  863.  
  864.  
  865.  
  866.  
  867.  
  868. <div id="cred">
  869. <a href="http://folklorethemes.tumblr.com">f</a>
  870.  
  871. </div>
  872.  
  873. </body>
  874.  
  875. <div id="rules" class="popup_block">
  876. <p style="font-family:'Lato',sans-serif; font-size:18px;text-align:center;">TERMS OF USE</p>
  877. <p style="font-family:'Lato',sans-serif;line-height:26px;font-size:14px;text-align:center;">01. NO STEALING<br>
  878.  
  879. 02. NO USING THEMES AS A BASE<br>
  880.  
  881. 03. DO NOT REMOVE THE CREDITS<br>
  882.  
  883. 04. LIKE OR REBLOG IF USING A THEME<br><br>
  884.  
  885. AGREE? PROCEED TO <a style="color:grey;" href="/tagged/mine">MY THEMES</a></p>
  886.  
  887.  
  888. </div>
  889.  
  890.  
  891.  
  892. </html>
Advertisement
Add Comment
Please, Sign In to add comment