jamidanielle_

LISZTOMANIA

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