Advertisement
manon15

soldierofperdition theme code

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