Advertisement
manon15

fxckdforlife theme code

Mar 13th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!--code by manon/butscrewmefirst. don't take as your own!-->
  5.  
  6.  
  7. <meta name="color:background" content="#ffffff"/>
  8. <meta name="color:text" content="#000000"/>
  9. <meta name="color:link" content="#000000"/>
  10. <meta name="color:link hover" content="#ddd"/>
  11. <meta name="color:border" content="#000000"/>
  12. <meta name="color:hoverlink text" content="#000000"/>
  13. <meta name="color:scrollbar bg" content="#6b6d6d"/>
  14. <meta name="color:tooltip color" content="#6b6d6d"/>
  15. <meta name="color:title color" content="#000000"/>
  16. <meta name="color:blockquote color" content="#000000"/>
  17.  
  18.  
  19.  
  20. <meta name="text:bg image url" content=""/>
  21. <meta name="color:bold" content=""/>
  22. <meta name="color:bold shadow" content=""/>
  23. <meta name="color:italics" content=""/>
  24. <meta name="color:italics shadow" content=""/>
  25. <meta name="text:title text" content="title">
  26. <meta name="text:Link 1 URL" content="" />
  27. <meta name="text:Link 1" content="link 1" />
  28. <meta name="text:Link 2 URL" content="" />
  29. <meta name="text:Link 2" content="link 2" />
  30. <meta name="text:Link 3 URL" content="" />
  31. <meta name="text:Link 3" content="link 3" />
  32. <meta name="text:Link 4 URL" content="" />
  33. <meta name="text:Link 4" content="link 4" />
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41. <head><title>{Title}</title>
  42. <link rel="shortcut icon" href="{Favicon}">
  43. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  44. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  45.  
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=IM+Fell+Double+Pica+SC' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Playfair+Display' rel='stylesheet' type='text/css'>
  50. <link href='http://fonts.googleapis.com/css?family=Prata' rel='stylesheet' type='text/css'>
  51. <link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
  52. <link href='http://fonts.googleapis.com/css?family=Tillana' rel='stylesheet' type='text/css'>
  53. <link href='http://fonts.googleapis.com/css?family=Aguafina+Script' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  56. <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
  57. <link href='http://fonts.googleapis.com/css?family=Calligraffitti' rel='stylesheet' type='text/css'>
  58. <link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
  59. <link href='http://fonts.googleapis.com/css?family=Six+Caps' rel='stylesheet' type='text/css'>
  60. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  61. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  62. <link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
  63. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  64. <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
  65. <link href='https://fonts.googleapis.com/css?family=Homemade+Apple' rel='stylesheet' type='text/css'>
  66. <link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
  67. <link href='https://fonts.googleapis.com/css?family=Bad+Script' rel='stylesheet' type='text/css'>
  68. <link href='https://fonts.googleapis.com/css?family=Roboto:700' rel='stylesheet' type='text/css'>
  69. <link href='https://fonts.googleapis.com/css?family=Ubuntu:700' rel='stylesheet' type='text/css'>
  70. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  71.  
  72.  
  73. <script type="text/javascript"
  74. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  75. <script>
  76. $(document).ready(function() {
  77. //
  78. $('a.poplight[href^=#]').click(function() {
  79. var popID = $(this).attr('rel'); //Get Popup Name
  80. var popURL = $(this).attr('href'); //Get Popup href to define size
  81. var query= popURL.split('?');
  82. var dim= query[1].split('&');
  83. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  84. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  85. var popMargTop = ($('#' + popID).height() + 80) / 2;
  86. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  87. //Apply Margin to Popup
  88. $('#' + popID).css({
  89. 'margin-top' : -popMargTop,
  90. 'margin-left' : -popMargLeft
  91. });
  92. $('body').append('<div id="fade"></div>');
  93. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  94. return false;
  95. });
  96. $('a.close, #fade').live('click', function() {
  97. $('#fade , .popup_block').fadeOut(function() {
  98. $('#fade, a.close').remove(); //fade them both out
  99. });
  100. return false;
  101. });
  102. });
  103. </script>
  104.  
  105.  
  106.  
  107.  
  108. <style type="text/css">
  109.  
  110. .popup_block{
  111. display:none;
  112. font-size:12px;
  113. background:#0b0b0b;
  114. background-image:url("");
  115. font-family:'calibri';
  116. padding:20px;
  117. border:;
  118. float:left;
  119. position:fixed;
  120. top:50%;left:50%;
  121. z-index: 99999;
  122. -webkit-box-shadow: ;
  123. -moz-box-shadow: ;
  124. box-shadow: ;
  125. }
  126.  
  127. *html #fade {position: absolute;}
  128. *html .popup_block {position: absolute;}
  129. #fade {
  130. display:none;
  131. position:fixed;
  132. left:0px;
  133. top:0px;
  134. width:100%;
  135. height:100%;
  136. z-index:9999;
  137. background:#000; /* change to #fff for solid white */
  138. opacity:0.5; /* change to opacity:1; */
  139. }
  140.  
  141.  
  142. /* --- UPDATES ---*/
  143.  
  144.  
  145.  
  146. #bite
  147. #bite a{
  148. display:block
  149. }
  150. #bite .death {
  151. margin-top:0px;filter: alpha(opacity = 0);
  152. opacity:0;-webkit-transition: all 0.5s ease-out;
  153. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  154. }
  155.  
  156. #bite:hover .death {
  157. margin-top:0px;
  158. -webkit-transition: all 0.8s ease-out;
  159. -moz-transition: all 0.8s ease-out;
  160. transition: all 0.8s ease-out;
  161. filter: alpha(opacity = 100);
  162. filter: alpha(opacity = 100);
  163. opacity:100;
  164. }
  165.  
  166. #actualnews {
  167. font-family:'calibri';
  168. font-size:12px;
  169. color: #fff;
  170. width:150px;
  171. height:auto;
  172. padding-top:3px;
  173. left:50%;
  174. margin-left:-550px;
  175. bottom:210px;
  176. text-align:center;
  177. position:fixed;
  178. background:#0b0b0b;
  179. }
  180.  
  181. #thekey {
  182. width:auto;
  183. letter-spacing:5px;
  184. left:50%;
  185. bottom:100px;
  186. margin-left:-42px;
  187. padding:2px;
  188. position:fixed;
  189. font-size:11px;
  190. font-family: 'Prata', serif;
  191. color: #fff;
  192. text-transform:uppercase;
  193. text-shadow: 0px 0px 0px #000;
  194. -ms-transform: rotate(90deg); /* IE 9 */
  195. -webkit-transform: rotate(90deg); /* Safari */
  196. transform: rotate(90deg)
  197.  
  198. }
  199. }
  200.  
  201.  
  202. para {
  203. font-family: 'Prata', serif;
  204. color:#fff;
  205. text-shadow:0 0 2px #fff;
  206. font-size:15px;
  207.  
  208. }
  209.  
  210. /*edit scrollbar*/
  211.  
  212. ::-webkit-scrollbar-thumb {
  213. height:auto;
  214. }
  215.  
  216. ::-webkit-scrollbar {
  217. height:4px;
  218. width:3px;
  219. padding-right:2px;
  220. }
  221. /*edit the body this is what post text looks like, background color, etc.*/
  222.  
  223. body {
  224. background-image:url("http://i.imgur.com/ECvrWpF.png");
  225. background-position:center bottom;
  226. background-attachment:fixed;
  227. background-repeat:no-repeat;
  228. margin:0px;
  229. background-color:#0b0b0b;
  230. color:#fff;
  231. font-family:arial;
  232. font-size:10px;
  233. line-height:120%;
  234. overflow-x:hidden;
  235. overflow-y:hidden;
  236. }
  237.  
  238.  
  239. /*edit links*/
  240.  
  241. a {
  242. text-decoration:none;
  243. outline:none;
  244. -moz-outline-style:none;
  245. color:#fff;
  246. -moz-transition-duration:0.8s;
  247. -webkit-transition-duration:0.8s;
  248. -o-transition-duration:0.8s;
  249. }
  250.  
  251. /*edit link hover*/
  252.  
  253. a:hover {
  254. color:#000;
  255. outline:none;
  256. -moz-outline-style:none;
  257. text-decoration:none;
  258. border-radius: 20px 20px 20px 20px #000;
  259. }
  260.  
  261. img {
  262. opacity:.8;
  263. -webkit-filter: Grayscale(50%);
  264. -webkit-transition-duration: 0.8s;
  265. -moz-transition-duration:0.8s;
  266. transition-duration:0.8s;
  267. -o-transition-duration:0.8s;
  268. -webkit-filter: blur(1px);
  269. border-radius: 20px 20px 20px 20px #000;
  270. }
  271.  
  272. img:hover {
  273. opacity:1;
  274. -webkit-filter: Grayscale(0%);
  275. -webkit-transition: all 0.8s ease-out;
  276. -moz-transition: all 0.8s ease-out;
  277. transition: all 0.8s ease-out;
  278. -webkit-filter: blur(0px);
  279. border-radius: 20px 20px 20px 20px #000;
  280.  
  281. }
  282.  
  283. blockquote {
  284. padding-left:5px;
  285. border-left:1px solid #fff;
  286.  
  287. }
  288.  
  289. blockquote blockquote {
  290. padding-left:5px;
  291. border-left:2px solid;
  292. }
  293.  
  294. h1 {
  295. font-size:22px;
  296. text-align:left;
  297. font-family:"prata";
  298. text-align:center;
  299. line-height:105%;
  300. letter-spacing:1px;
  301. color:#fff;
  302. }
  303.  
  304.  
  305.  
  306. #title {
  307. color:#000;
  308. font-family:arial;
  309. font-size:16px;
  310. text-transform:lowercase;
  311. font-weight:bold;
  312. letter-spacing:0px;
  313. padding:4px;
  314. margin-top:-20px;
  315. margin-left:-14px;
  316. position:fixed;
  317. text-align:left;
  318. }
  319.  
  320.  
  321. #navi {
  322. float:left;
  323. width:190px;
  324. padding:3px;
  325. }
  326.  
  327.  
  328. /*sidebar links*/
  329.  
  330. #links {
  331. position: fixed;
  332. font-style:none;
  333. left:50%;
  334. bottom:-5px;
  335. margin-left:160px;
  336. font-size:15px;
  337. word-spacing:2px;
  338. line-height: 850%;
  339. text-align: left;
  340. width:160px;
  341. margin-right: auto;
  342.  
  343. }
  344.  
  345. #links a {
  346. letter-spacing: 1px;
  347. padding:3px;
  348.  
  349. }
  350.  
  351. #links a:hover {
  352. color:#000;
  353. opacity:1;
  354. -webkit-transition: all 0.8s ease-out;
  355. -moz-transition: all 0.8s ease-out;
  356. transition: all 0.8s ease-out;
  357. -webkit-filter:;
  358. }
  359.  
  360. #description {
  361. width:208px;
  362. font-size:11px;
  363. padding:5px;
  364. text-align:justify;
  365. letter-spacing:0px;
  366. line-height:90%;
  367. margin-left:-16px;
  368. margin-top:-2px;
  369. }
  370.  
  371. /* this is the box that comes up when you hover over something with a title*/
  372.  
  373. #s-m-t-tooltip {
  374. max-width:300px;
  375. padding:5px 5px 5px 6px;
  376. margin:20px 0px 0px 20px;
  377. background-image:url('http://i.imgur.com/HCMOx17.png');
  378. border-radius: 20px 20px 20px 20px;
  379. background-color:{color:tooltip color};
  380. font-family:arial;
  381. font-size:9px;
  382. letter-spacing:2px;
  383. text-transform:lowercase;
  384. font-weight:bold;
  385. color:#fff;
  386. z-index:999999999999999999999999999999999999;
  387. }
  388.  
  389. .buttons {
  390. display:inline-block;
  391. width:120px;
  392. padding:3px;
  393. margin:3px;
  394. border:1px solid #fff;
  395. }
  396.  
  397. /*next page and previous page*/
  398.  
  399. #pagination {
  400. left:50%;
  401. bottom:560px;
  402. margin-left:-90px;
  403. font-size:25px;
  404. position: absolute;
  405. text-align: left;
  406. letter-spacing:4px;
  407. padding-left:87px;
  408. word-spacing:4px;
  409. text-transform:lowercase;
  410.  
  411.  
  412. }
  413.  
  414. #pagination a {
  415. padding:0 3px;
  416. opacity:2;
  417. -webkit-filter: Grayscale(0%);
  418. -webkit-transition: all 0.8s ease-out;
  419. -moz-transition: all 0.8s ease-out;
  420. transition: all 0.8s ease-out;
  421. -webkit-filter: blur(0px);
  422.  
  423. }
  424.  
  425.  
  426. #container {
  427. position: fixed;
  428. height:455px;
  429. width:255px;
  430. text-align:justify;
  431. font-family:'calibri';
  432. text-transform: auto;
  433. left:50%;
  434. margin-left:19px;
  435. bottom:83px;
  436. overflow: auto;
  437. -ms-transform: rotate(0deg);
  438. -webkit-transform: rotate(0deg);
  439. transform: rotate(0deg);
  440. }
  441.  
  442.  
  443. #post {
  444. width:250px;
  445. text-align:left;
  446. font-size:11px;
  447. line-height:110%;
  448. color:#fff;
  449. margin-left:auto;
  450. margin-right:auto;
  451. }
  452.  
  453.  
  454. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  455.  
  456. b, strong{
  457. color: #847376;
  458. font-size:16px;
  459. font-family:"Prata";
  460. letter-spacing:2px;
  461. line-height:115%;
  462. text-shadow: 0px 0px 0px #000;
  463. font-weight: bold;
  464. text-transform:uppercase;
  465. }
  466.  
  467. i, em, strong {
  468. color: #b0b2b1;
  469. font-size:16px;
  470. line-height:115%;
  471. font-family:"satisfy";
  472. letter-spacing:2px;
  473. text-shadow:0px 0px 0px #000;
  474. font-weight: italic;
  475.  
  476. }
  477.  
  478. /*time posted, note count, via and source*/
  479.  
  480. .postinfo {
  481. font-family:'Six caps';
  482. width:237px;
  483. margin-top:1px;
  484. padding:6px;
  485. font-size:15px;
  486. color:#fff;
  487. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  488. background-image:url('http://i.imgur.com/HCMOx17.png');
  489. opacity:.66;
  490. border-radius: 20px 20px 20px 20px;
  491. letter-spacing:1px;
  492. border-bottom:1px #000;
  493. text-transform:uppercase;
  494. font-style:normal;
  495. text-align:center;
  496. }
  497.  
  498. .postinfo a {
  499. color:#fff;
  500. font-style:normal;
  501. }od now
  502.  
  503. .postinfo a:hover {
  504. color:#bebebe;
  505. }
  506.  
  507.  
  508. /*tags*/
  509.  
  510. .tags {
  511. width:237px;
  512. margin-top:4px;
  513. margin-left:-1px;
  514. padding:2px;
  515. font-family:arial;
  516. letter-spacing:0px;
  517. font-size:10px;
  518. text-align:center;
  519.  
  520. }
  521.  
  522. .tags a {
  523. color:#fff;
  524. }
  525.  
  526. .tags a:hover {
  527. color:#57453a;
  528. }
  529.  
  530. .postnote {
  531. width:237px;
  532. margin-top:40px;
  533. font-family:arial;
  534. text-transform:lowercase;
  535. font-style:normal;
  536. letter-spacing:0px;
  537. font-size:10px;
  538. text-align:left;
  539. }
  540.  
  541. .verses img {
  542. float:center;
  543. -webkit-filter: grayscale(0%);
  544. width:400px;
  545. height:150px;
  546. }
  547.  
  548. /*here go asks*/
  549.  
  550. #ask {
  551. float:left;
  552. line-height:130%;
  553. border: 1px #000;
  554. font-family:"calibri";
  555. font-size:12px;
  556.  
  557. }
  558.  
  559.  
  560.  
  561.  
  562. /*audio player container*/
  563.  
  564. .playercontainer {
  565. text-align:left;
  566. padding:10px;
  567. padding-left:0px;
  568. background-color:#fff;
  569. width:480px;
  570. }
  571.  
  572. /*artist, song, etc.*/
  573.  
  574. .musicinfo {
  575. padding-top:7px;
  576. padding-left:50px;
  577. color:#000;
  578. text-align:justify;
  579. }
  580.  
  581. /*credit. only change this if you actually make the code your own*/
  582.  
  583. #credit {
  584. position:fixed;
  585. font-size:3px;
  586. color:#fff;
  587. font-weight:none;
  588. line-height:50%;
  589. letter-spacing:2px;
  590. right:10px;
  591. bottom:05px;
  592. text-transform:none;
  593. text-align:left;
  594. }
  595.  
  596. #credit a {
  597. letter-spacing: 0px;
  598. padding:3px;
  599. color:#fff;
  600. }
  601.  
  602. #credit a:hover {
  603. background:#0b0b0b;
  604. color:#fff;
  605. }
  606.  
  607.  
  608.  
  609. {CustomCSS}</style></head><body>
  610.  
  611.  
  612. <!-- begin updates tab -->
  613.  
  614. <div id="bite">
  615. <div id="thekey">HOVER</div>
  616. <div class="death">
  617. <div id="actualnews">
  618. <para><b>words</b></para><p>
  619. more words<br>
  620. <marquee>aaand this is how you make words go across/move!</marquee><br>
  621. <i>here we go hehe</i><p>
  622. bigger space here<br>
  623. and this is how you do a horizontal line!<br>
  624. <HR WIDTH="75%"><br>
  625. hope this helps!
  626.  
  627. </div></div></div>
  628.  
  629. <!-- end updates tab -->
  630.  
  631.  
  632. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  633. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  634. <script>
  635.  
  636. (function($){
  637.  
  638. $(document).ready(function(){
  639.  
  640. $("a[title]").style_my_tooltips({
  641.  
  642. tip_follows_cursor:true,
  643.  
  644. tip_delay_time:50,
  645.  
  646. tip_fade_speed:600,
  647.  
  648. attribute:"title"
  649.  
  650. });
  651.  
  652. });
  653.  
  654. })(jQuery);
  655.  
  656. </script>
  657.  
  658.  
  659.  
  660.  
  661. <div id="links">
  662. <a href="/" title="home">I.</a>
  663.  
  664.  
  665. <a href="#?w=500" title="inquire" rel="box1" class="poplight">II.</a>
  666.  
  667. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">III.</a>
  668.  
  669. <a href="#?w=400" title="muses" rel="box3" class="poplight">IV.</a>
  670.  
  671. <a href="#?w=400" title="navigation" rel="box4" class="poplight">V.</a>
  672.  
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681. </div>
  682.  
  683. <div id="description">{Description}</div>
  684.  
  685.  
  686. <div id="pagination">
  687. {block:Pagination}
  688. {block:PreviousPage}
  689. <a href="{PreviousPage}">&larr;</a>
  690. {/block:PreviousPage}
  691.  
  692.  
  693. {block:NextPage}
  694. <a href="{NextPage}">&rarr;</a>
  695. {/block:NextPage}
  696. {/block:Pagination}
  697. </div>
  698.  
  699.  
  700.  
  701. </div>
  702.  
  703.  
  704. <div id="container">{block:Posts}<div id="post">
  705.  
  706. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  707.  
  708. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  709.  
  710. {block:Chat}{block:Title}<h1><center>{Title}</center></h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  711.  
  712. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  713.  
  714. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  715.  
  716. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  717.  
  718. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  719.  
  720.  
  721. {block:AudioPlayer}
  722. <div class="playercontainer"> <div style="padding: 5px 0px 5px 5px;width:inherit;background:#fff; border:2px solid #fff; width:30px;overflow:hidden; position:absolute;font-weight:bold;"> {AudioPlayer}</div><div class="musicinfo">{block:TrackName}<span style="#fff">{TrackName}</span>{/block:TrackName}{block:Artist}<br/>{Artist} {/block:Artist}<br>{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div></div>{block:Caption}{Caption}{/block:Caption}{/block:AudioPlayer}
  723.  
  724. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  725. — {ASKER}<br><br>
  726. {Answer}<br>{/block:Answer}
  727.  
  728. {block:Date}<div class="postinfo"> <a href="{Permalink}">{TimeAgo}</a>   {block:NoteCount}+ {NoteCount}{/block:NoteCount}   {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}   {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>{/block:Date}
  729.  
  730. {block:HasTags}
  731. <div class="tags">
  732. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  733. {/block:HasTags}
  734.  
  735. <div class="postnote">
  736. {block:PostNotes}{PostNotes}{/block:PostNotes}
  737. </div>
  738. </div>
  739. {/block:Posts}
  740.  
  741.  
  742.  
  743.  
  744. </div></div></div></div>
  745. </div>
  746.  
  747. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  748. <i>Manon</i></a></font><div>
  749.  
  750. </body>
  751.  
  752. </div></div></div></div></div></div></div></div></div></div>
  753. <div id="box1" class="popup_block">
  754. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  755. </div>
  756. </div></div></div></div></div></div></div></div></div></div>
  757.  
  758. <div id="box2" class="popup_block">
  759. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  760. <center><big><h1>GUIDELINES</h1></big><BR>
  761. <HR WIDTH="100%"><br>
  762. CONTENT
  763. CONTENT
  764. CONTENT
  765. </center>
  766. </div>
  767. </div>
  768.  
  769. </div></div></div></div></div></div></div></div></div></div>
  770.  
  771. <div id="box3" class="popup_block">
  772. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  773. <center><big><h1>MUSES</h1></big><BR>
  774. <HR WIDTH="100%">
  775. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  776. <b>muse name</b>
  777. <br>
  778. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  779. <HR WIDTH="90%">
  780. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  781. <b>muse name</b>
  782. <br>
  783. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  784. <HR WIDTH="90%">
  785. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  786. <b>muse name</b>
  787. <br>
  788. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  789. <HR WIDTH="90%">
  790. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  791. <b>muse name</b>
  792. <br>
  793. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  794. <HR WIDTH="90%">
  795. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  796. <b>muse name</b>
  797. <br>
  798. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  799. <HR WIDTH="90%">
  800. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  801. <b>muse name</b>
  802. <br>
  803. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  804. <HR WIDTH="90%">
  805. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  806. <b>muse name</b>
  807. <br>
  808. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  809. <HR WIDTH="90%">
  810. <img src="http://i.imgur.com/MFebYZf.png" class="verses"><br>
  811. <b>muse name</b>
  812. <br>
  813. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tristique commodo sagittis. Maecenas a facilisis odio, vitae accumsan felis. Etiam metus turpis, feugiat ac sodales quis, iaculis a dolor. Suspendisse sagittis non ligula tempor condimentum. Quisque pretium sem tellus, id fringilla lorem posuere non. Sed pretium luctus pulvinar. Sed pharetra nulla id nisl rutrum maximus. Fusce eu congue nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
  814. <HR WIDTH="90%">
  815. </center>
  816. </div>
  817. </div>
  818.  
  819. </div></div></div></div></div></div></div></div></div></div>
  820.  
  821. <div id="box4" class="popup_block">
  822. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  823. <center><big><h1>NAVIGATION</h1></big><BR>
  824. <HR WIDTH="100%"><br>
  825. <div id="navi">
  826. <a href="/link here" class="buttons">link name</a><p>
  827. <a href="/link here" class="buttons">link name</a><p>
  828. <a href="/link here" class="buttons">link name</a><p>
  829. </div>
  830. <div id="navi">
  831. <a href="/link here" class="buttons">link name</a><p>
  832. <a href="/link here" class="buttons">link name</a><p>
  833. <a href="/link here" class="buttons">link name</a><p>
  834. </div>
  835. <div id="navi">
  836. <a href="/link here" class="buttons">link name</a><p>
  837. <a href="/link here" class="buttons">link name</a><p>
  838. <a href="/link here" class="buttons">link name</a><p>
  839. </div>
  840. <div id="navi">
  841. <a href="/link here" class="buttons">link name</a><p>
  842. <a href="/link here" class="buttons">link name</a><p>
  843. <a href="/link here" class="buttons">link name</a><p>
  844. </div>
  845. <div id="navi">
  846. <a href="/link here" class="buttons">link name</a><p>
  847. <a href="/link here" class="buttons">link name</a><p>
  848. <a href="/link here" class="buttons">link name</a><p>
  849. </div>
  850. <div id="navi">
  851. <a href="/link here" class="buttons">link name</a><p>
  852. <a href="/link here" class="buttons">link name</a><p>
  853. <a href="/link here" class="buttons">link name</a><p>
  854. </div>
  855. <div id="navi">
  856. <a href="/link here" class="buttons">link name</a><p>
  857. <a href="/link here" class="buttons">link name</a><p>
  858. <a href="/link here" class="buttons">link name</a><p>
  859. </div>
  860. <div id="navi">
  861. <a href="/link here" class="buttons">link name</a><p>
  862. <a href="/link here" class="buttons">link name</a><p>
  863. <a href="/link here" class="buttons">link name</a><p>
  864. </div>
  865. <p>
  866.  
  867.  
  868. </center><p>
  869.  
  870.  
  871. </div>
  872. </div>
  873.  
  874. </div></div></div></div></div></div></div></div></div></div>
  875.  
  876. <div id="box6" class="popup_block">
  877. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  878. <center><big><h1>VERSES</h1></big><BR>
  879. <HR WIDTH="100%">
  880. <img src="http://i.imgur.com/MFebYZf.png" class="verses">
  881. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  882. <p>
  883. content content content
  884. <p><p>
  885. <img src="http://i.imgur.com/MFebYZf.png" class="verses">
  886. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  887. <p>
  888. content content content
  889. <p><p>
  890. </center>
  891. </div>
  892. </div>
  893.  
  894. </div></div></div></div></div></div></div></div></div></div>
  895.  
  896. <div id="box5" class="popup_block">
  897. <center>theme credit goes to &nbsp;<i><a href="http://butscrewmefirst.tumblr.com">Manon</a></i>.<br> do not remove the credit nor claim as your own. if you &nbsp;<b>HAVE</b> to take this credit out, make sure you credit me on a &nbsp;<b>VISIBLE</b> and often visited page.</center>
  898. </div>
  899.  
  900. </div></div></div></div></div></div></div></div></div></div>
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement