Advertisement
manon15

reniiism theme code

Mar 3rd, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.20 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:#0e0507;
  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:130px;
  171. height:auto;
  172. padding-top:3px;
  173. left:50%;
  174. margin-left:-615px;
  175. bottom:210px;
  176. text-align:center;
  177. position:fixed;
  178. background:#0e0507;
  179. }
  180.  
  181. #thekey {
  182. width:auto;
  183. letter-spacing:5px;
  184. left:50%;
  185. bottom:250px;
  186. margin-left:-175px;
  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/ItkhpCl.png");
  225. background-position:center bottom;
  226. background-attachment:fixed;
  227. background-repeat:no-repeat;
  228. margin:0px;
  229. background-color:#0e0507;
  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:2px 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.  
  322. /*sidebar links*/
  323.  
  324. #links {
  325. position: fixed;
  326. font-style:none;
  327. left:50%;
  328. bottom:45px;
  329. margin-left:235px;
  330. font-size:15px;
  331. word-spacing:2px;
  332. line-height: 850%;
  333. text-align: left;
  334. width:160px;
  335. margin-right: auto;
  336.  
  337. }
  338.  
  339. #links a {
  340. letter-spacing: 1px;
  341. padding:3px;
  342.  
  343. }
  344.  
  345. #links a:hover {
  346. color:#000;
  347. opacity:1;
  348. -webkit-transition: all 0.8s ease-out;
  349. -moz-transition: all 0.8s ease-out;
  350. transition: all 0.8s ease-out;
  351. -webkit-filter:;
  352. }
  353.  
  354. #description {
  355. width:208px;
  356. font-size:11px;
  357. padding:5px;
  358. text-align:justify;
  359. letter-spacing:0px;
  360. line-height:90%;
  361. margin-left:-16px;
  362. margin-top:-2px;
  363. }
  364.  
  365. /* this is the box that comes up when you hover over something with a title*/
  366.  
  367. #s-m-t-tooltip {
  368. max-width:300px;
  369. padding:5px 5px 5px 6px;
  370. margin:20px 0px 0px 20px;
  371. background-image:url('http://i.imgur.com/GYMD42t.png');
  372. background-color:{color:tooltip color};
  373. font-family:arial;
  374. font-size:9px;
  375. letter-spacing:2px;
  376. text-transform:lowercase;
  377. font-weight:bold;
  378. color:#fff;
  379. z-index:999999999999999999999999999999999999;
  380. }
  381.  
  382. /*next page and previous page*/
  383.  
  384. #pagination {
  385. left:50%;
  386. bottom:492px;
  387. margin-left:-220px;
  388. font-size:25px;
  389. position: absolute;
  390. text-align: left;
  391. letter-spacing:4px;
  392. padding-left:87px;
  393. word-spacing:4px;
  394. text-transform:lowercase;
  395.  
  396.  
  397. }
  398.  
  399. #pagination a {
  400. padding:0 3px;
  401. opacity:2;
  402. -webkit-filter: Grayscale(0%);
  403. -webkit-transition: all 0.8s ease-out;
  404. -moz-transition: all 0.8s ease-out;
  405. transition: all 0.8s ease-out;
  406. -webkit-filter: blur(0px);
  407.  
  408. }
  409.  
  410.  
  411. #container {
  412. position: fixed;
  413. height:360px;
  414. width:505px;
  415. text-align:justify;
  416. font-family:'calibri';
  417. text-transform: auto;
  418. left:50%;
  419. margin-left:-128px;
  420. bottom:120px;
  421. overflow: auto;
  422. -ms-transform: rotate(0deg);
  423. -webkit-transform: rotate(0deg);
  424. transform: rotate(0deg);
  425. }
  426.  
  427.  
  428. #post {
  429. width:500px;
  430. text-align:left;
  431. font-size:11px;
  432. line-height:110%;
  433. color:#fff;
  434. margin-left:auto;
  435. margin-right:auto;
  436. }
  437.  
  438.  
  439. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  440.  
  441. b, strong{
  442. color: #b98ba9;
  443. font-size:16px;
  444. font-family:"Prata";
  445. letter-spacing:2px;
  446. line-height:115%;
  447. text-shadow: 0px 0px 0px #000;
  448. font-weight: bold;
  449. text-transform:uppercase;
  450. }
  451.  
  452. i, em, strong {
  453. color: #614051;
  454. font-size:16px;
  455. line-height:115%;
  456. font-family:"satisfy";
  457. letter-spacing:2px;
  458. text-shadow:0px 0px 0px #000;
  459. font-weight: italic;
  460.  
  461. }
  462.  
  463. /*time posted, note count, via and source*/
  464.  
  465. .postinfo {
  466. font-family:'Six caps';
  467. width:487px;
  468. margin-top:1px;
  469. padding:6px;
  470. font-size:15px;
  471. color:#fff;
  472. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  473. background-image:url('http://i.imgur.com/GYMD42t.png');
  474. opacity:.66;
  475. border-radius: 20px 20px 20px 20px;
  476. letter-spacing:1px;
  477. border-bottom:1px #000;
  478. text-transform:uppercase;
  479. font-style:normal;
  480. text-align:center;
  481. }
  482.  
  483. .postinfo a {
  484. color:#fff;
  485. font-style:normal;
  486. }od now
  487.  
  488. .postinfo a:hover {
  489. color:#bebebe;
  490. }
  491.  
  492.  
  493. /*tags*/
  494.  
  495. .tags {
  496. width:487px;
  497. margin-top:4px;
  498. margin-left:-1px;
  499. padding:2px;
  500. font-family:arial;
  501. letter-spacing:0px;
  502. font-size:10px;
  503. text-align:center;
  504.  
  505. }
  506.  
  507. .tags a {
  508. color:#fff;
  509. }
  510.  
  511. .tags a:hover {
  512. color:#57453a;
  513. }
  514.  
  515. .postnote {
  516. width:487px;
  517. margin-top:40px;
  518. font-family:arial;
  519. text-transform:lowercase;
  520. font-style:normal;
  521. letter-spacing:0px;
  522. font-size:10px;
  523. text-align:left;
  524. }
  525.  
  526. .verses img {
  527. float:center;
  528. -webkit-filter: grayscale(0%);
  529. width:400px;
  530. height:200px;
  531. }
  532.  
  533. /*here go asks*/
  534.  
  535. #ask {
  536. float:left;
  537. line-height:130%;
  538. border: 1px #000;
  539. font-family:"calibri";
  540. font-size:12px;
  541.  
  542. }
  543.  
  544.  
  545.  
  546.  
  547. /*audio player container*/
  548.  
  549. .playercontainer {
  550. text-align:left;
  551. padding:10px;
  552. padding-left:0px;
  553. background-color:#fff;
  554. width:480px;
  555. }
  556.  
  557. /*artist, song, etc.*/
  558.  
  559. .musicinfo {
  560. padding-top:7px;
  561. padding-left:50px;
  562. color:#000;
  563. text-align:justify;
  564. }
  565.  
  566. /*credit. only change this if you actually make the code your own*/
  567.  
  568. #credit {
  569. position:fixed;
  570. font-size:3px;
  571. color:#2f0000;
  572. font-weight:none;
  573. line-height:50%;
  574. letter-spacing:2px;
  575. right:10px;
  576. bottom:05px;
  577. text-transform:none;
  578. text-align:left;
  579. }
  580.  
  581. #credit a {
  582. letter-spacing: 0px;
  583. padding:3px;
  584. color:#848585;
  585. }
  586.  
  587. #credit a:hover {
  588. background:#0e0507;
  589. color:#848584;
  590. }
  591.  
  592.  
  593.  
  594. {CustomCSS}</style></head><body>
  595.  
  596.  
  597. <!-- begin updates tab -->
  598.  
  599. <div id="bite">
  600. <div id="thekey">HOVER</div>
  601. <div class="death">
  602. <div id="actualnews">
  603. <para><b>words</b></para><p>
  604. more words<br>
  605. <marquee>aaand this is how you make words go across/move!</marquee><br>
  606. <i>here we go hehe</i><p>
  607. bigger space here<br>
  608. and this is how you do a horizontal line!<br>
  609. <HR WIDTH="75%"><br>
  610. hope this helps!
  611.  
  612. </div></div></div>
  613.  
  614. <!-- end updates tab -->
  615.  
  616.  
  617. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  618. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  619. <script>
  620.  
  621. (function($){
  622.  
  623. $(document).ready(function(){
  624.  
  625. $("a[title]").style_my_tooltips({
  626.  
  627. tip_follows_cursor:true,
  628.  
  629. tip_delay_time:50,
  630.  
  631. tip_fade_speed:600,
  632.  
  633. attribute:"title"
  634.  
  635. });
  636.  
  637. });
  638.  
  639. })(jQuery);
  640.  
  641. </script>
  642.  
  643.  
  644.  
  645.  
  646. <div id="links">
  647. <a href="/" title="home">✕</a>
  648.  
  649.  
  650. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  651.  
  652. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">✕</a>
  653.  
  654. <a href="#?w=400" title="biography" rel="box3" class="poplight">✕</a>
  655.  
  656. <a href="#?w=400" title="navigation" rel="box4" class="poplight">✕</a>
  657.  
  658. <a href="#?w=400" title="verses" rel="box6" class="poplight">✕</a>
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667. </div>
  668.  
  669. <div id="description">{Description}</div>
  670.  
  671.  
  672. <div id="pagination">
  673. {block:Pagination}
  674. {block:PreviousPage}
  675. <a href="{PreviousPage}">&larr;</a>
  676. {/block:PreviousPage}
  677.  
  678.  
  679. {block:NextPage}
  680. <a href="{NextPage}">&rarr;</a>
  681. {/block:NextPage}
  682. {/block:Pagination}
  683. </div>
  684.  
  685.  
  686.  
  687. </div>
  688.  
  689.  
  690. <div id="container">{block:Posts}<div id="post">
  691.  
  692. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  693.  
  694. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  695.  
  696. {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}
  697.  
  698. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  699.  
  700. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  701.  
  702. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  703.  
  704. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  705.  
  706.  
  707. {block:AudioPlayer}
  708. <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}
  709.  
  710. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  711. — {ASKER}<br><br>
  712. {Answer}<br>{/block:Answer}
  713.  
  714. {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}
  715.  
  716. {block:HasTags}
  717. <div class="tags">
  718. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  719. {/block:HasTags}
  720.  
  721. <div class="postnote">
  722. {block:PostNotes}{PostNotes}{/block:PostNotes}
  723. </div>
  724. </div>
  725. {/block:Posts}
  726.  
  727.  
  728.  
  729.  
  730. </div></div></div></div>
  731. </div>
  732.  
  733. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  734. <i>Manon</i></a></font><div>
  735.  
  736. </body>
  737.  
  738. </div></div></div></div></div></div></div></div></div></div>
  739. <div id="box1" class="popup_block">
  740. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  741. </div>
  742. </div></div></div></div></div></div></div></div></div></div>
  743.  
  744. <div id="box2" class="popup_block">
  745. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  746. <center><big><h1>GUIDELINES</h1></big><BR>
  747. <HR WIDTH="100%"><br>
  748. CONTENT
  749. CONTENT
  750. CONTENT
  751. </center>
  752. </div>
  753. </div>
  754.  
  755. </div></div></div></div></div></div></div></div></div></div>
  756.  
  757. <div id="box3" class="popup_block">
  758. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  759. <center><big><h1>BIOGRAPHY</h1></big></big><BR>
  760. <HR WIDTH="100%"><br>
  761. CONTENT
  762. CONTENT
  763. CONTENT
  764. </center>
  765. </div>
  766. </div>
  767.  
  768. </div></div></div></div></div></div></div></div></div></div>
  769.  
  770. <div id="box4" class="popup_block">
  771. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  772. <center><big><h1>NAVIGATION</h1></big><BR>
  773. <HR WIDTH="100%"><br>
  774. <a href="/LINK HERE">TITLE HERE</a>
  775. <p>
  776. <a href="/LINK HERE">TITLE HERE</a>
  777. <p><a href="/LINK HERE">TITLE HERE</a>
  778. <p><a href="/LINK HERE">TITLE HERE</a>
  779. <p><a href="/LINK HERE">TITLE HERE</a>
  780. <p><a href="/LINK HERE">TITLE HERE</a>
  781. <p>
  782.  
  783.  
  784. </center><p>
  785.  
  786.  
  787. </div>
  788. </div>
  789.  
  790. </div></div></div></div></div></div></div></div></div></div>
  791.  
  792. <div id="box6" class="popup_block">
  793. <div style="height: 400px; overflow-y: scroll; overflow-x: hidden;">
  794. <center><big><h1>VERSES</h1></big><BR>
  795. <HR WIDTH="100%">
  796. <img src="http://i.imgur.com/AbPJSL3.png" class="verses">
  797. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  798. <p>
  799. content content content
  800. <p><p>
  801. <img src="http://i.imgur.com/AbPJSL3.png" class="verses">
  802. <b><a href="/verse link here" style="text-align:center;">VERSE TITLE</a></b>
  803. <p>
  804. content content content
  805. <p><p>
  806. </center>
  807. </div>
  808. </div>
  809.  
  810. </div></div></div></div></div></div></div></div></div></div>
  811.  
  812. <div id="box5" class="popup_block">
  813. <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>
  814. </div>
  815.  
  816. </div></div></div></div></div></div></div></div></div></div>
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826.  
  827.  
  828.  
  829. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement