Advertisement
manon15

brevitempore code

Feb 14th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.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.  
  71.  
  72. <script type="text/javascript"
  73. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  74. <script>
  75. $(document).ready(function() {
  76. //
  77. $('a.poplight[href^=#]').click(function() {
  78. var popID = $(this).attr('rel'); //Get Popup Name
  79. var popURL = $(this).attr('href'); //Get Popup href to define size
  80. var query= popURL.split('?');
  81. var dim= query[1].split('&');
  82. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  83. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  84. var popMargTop = ($('#' + popID).height() + 80) / 2;
  85. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  86. //Apply Margin to Popup
  87. $('#' + popID).css({
  88. 'margin-top' : -popMargTop,
  89. 'margin-left' : -popMargLeft
  90. });
  91. $('body').append('<div id="fade"></div>');
  92. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  93. return false;
  94. });
  95. $('a.close, #fade').live('click', function() {
  96. $('#fade , .popup_block').fadeOut(function() {
  97. $('#fade, a.close').remove(); //fade them both out
  98. });
  99. return false;
  100. });
  101. });
  102. </script>
  103.  
  104.  
  105.  
  106.  
  107. <style type="text/css">
  108.  
  109. .popup_block{
  110. display:none;
  111. font-size:12px;
  112. background:#000;
  113. font-family:'calibri';
  114. padding:20px;
  115. border:1px solid #848584; /* if you want a solid white pop-up, delete this */
  116. float:left;
  117. position:fixed;
  118. top:50%;left:50%;
  119. z-index: 99999;
  120. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  121. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  122. box-shadow: 0px 0px 20px #848584; /* delete for solid white */
  123. }
  124.  
  125. *html #fade {position: absolute;}
  126. *html .popup_block {position: absolute;}
  127. #fade {
  128. display:none;
  129. position:fixed;
  130. left:0px;
  131. top:0px;
  132. width:100%;
  133. height:100%;
  134. z-index:9999;
  135. background:#000; /* change to #fff for solid white */
  136. opacity:0.5; /* change to opacity:1; */
  137. }
  138.  
  139.  
  140. /* --- UPDATES ---*/
  141.  
  142.  
  143.  
  144. #bite
  145. #bite a{
  146. display:block
  147. }
  148. #bite .death {
  149. margin-top:0px;filter: alpha(opacity = 0);
  150. opacity:0;-webkit-transition: all 0.5s ease-out;
  151. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  152. }
  153.  
  154. #bite:hover .death {
  155. margin-top:0px;
  156. -webkit-transition: all 0.8s ease-out;
  157. -moz-transition: all 0.8s ease-out;
  158. transition: all 0.8s ease-out;
  159. filter: alpha(opacity = 100);
  160. filter: alpha(opacity = 100);
  161. opacity:100;
  162. }
  163.  
  164. #actualnews {
  165. font-family:calibri;
  166. font-size:10px;
  167. color: #fff;
  168. width:100px;
  169. height:auto;
  170. padding-top:3px;
  171. margin-left:965px;
  172. margin-top:50px;
  173. text-align:center;
  174. position:fixed;
  175. background:#a09e9f;
  176. }
  177.  
  178. #thekey {
  179. position:fixed;
  180. width:auto;
  181. letter-spacing:5px;
  182. margin-top:45px;
  183. margin-left:860px;
  184. padding:2px;
  185. font-size:11px;
  186. font-family: 'Prata', serif;
  187. color: #fff;
  188. text-transform:uppercase;
  189. text-shadow: 0px 0px 2px #fff;
  190. -ms-transform: rotate(90deg); /* IE 9 */
  191. -webkit-transform: rotate(90deg); /* Safari */
  192. transform: rotate(90deg);
  193.  
  194. }
  195.  
  196. peggy{
  197. font-family: 'Prata', serif;
  198. color:#fff;
  199. text-shadow:0 0 2px #fff;
  200. font-size:15px;
  201.  
  202. }
  203.  
  204. /*edit scrollbar*/
  205.  
  206. ::-webkit-scrollbar-thumb {
  207. height:auto;
  208. }
  209.  
  210. ::-webkit-scrollbar {
  211. height:4px;
  212. width:3px;
  213. padding-right:2px;
  214. }
  215. /*edit the body this is what post text looks like, background color, etc.*/
  216.  
  217. body {
  218. background-image:url("http://i.imgur.com/OBdEBEQ.png");
  219. background-position:absolute;
  220. background-attachment:fixed;
  221. background-repeat:no-repeat;
  222. background-color:#a09e9f;
  223. margin:0px;
  224. color:#fff;
  225. font-family:arial;
  226. font-size:10px;
  227. line-height:100%;
  228. }
  229.  
  230. /*edit links*/
  231.  
  232. a {
  233. text-decoration:none;
  234. outline:none;
  235. -moz-outline-style:none;
  236. color:#fff;
  237. -moz-transition-duration:0.8s;
  238. -webkit-transition-duration:0.8s;
  239. -o-transition-duration:0.8s;
  240. }
  241.  
  242. /*edit link hover*/
  243.  
  244. a:hover {
  245. color:#000;
  246. outline:none;
  247. -moz-outline-style:none;
  248. text-decoration:none;
  249. }
  250.  
  251. img {
  252. opacity:.8;
  253. -webkit-filter: Grayscale(50%);
  254. -webkit-transition-duration: 0.8s;
  255. -moz-transition-duration:0.8s;
  256. transition-duration:0.8s;
  257. -o-transition-duration:0.8s;
  258. -webkit-filter: blur(1px);
  259. }
  260.  
  261. img:hover {
  262. opacity:1;
  263. -webkit-filter: Grayscale(0%);
  264. -webkit-transition: all 0.8s ease-out;
  265. -moz-transition: all 0.8s ease-out;
  266. transition: all 0.8s ease-out;
  267. -webkit-filter: blur(0px);
  268.  
  269. }
  270.  
  271. blockquote {
  272. padding-left:5px;
  273. border-left:2px solid #000;
  274.  
  275. }
  276.  
  277. blockquote blockquote {
  278. padding-left:5px;
  279. border-left:2px solid;
  280. }
  281.  
  282. h1 {
  283. font-size:22px;
  284. text-align:left;
  285. font-family:"six caps";
  286. text-align:center;
  287. line-height:105%;
  288. letter-spacing:1px;
  289. color:#d0d0ce;
  290. }
  291.  
  292.  
  293.  
  294. #title {
  295. color:#000;
  296. font-family:arial;
  297. font-size:16px;
  298. text-transform:lowercase;
  299. font-weight:bold;
  300. letter-spacing:0px;
  301. padding:4px;
  302. margin-top:-20px;
  303. margin-left:-14px;
  304. position:fixed;
  305. text-align:left;
  306. }
  307.  
  308.  
  309.  
  310. /*sidebar links*/
  311.  
  312. #links {
  313. width:200px;
  314. margin-top:347px;
  315. margin-left:472px;
  316. padding:5px;
  317. font-family:arial;
  318. text-align:left;
  319. word-spacing:1px;
  320. font-size:12px;
  321. font-weight:none;
  322. display:block;
  323. color:#fff;
  324. opacity:2;
  325. -webkit-transition-duration: 0.8s;
  326. -moz-transition-duration:0.8s;
  327. transition-duration:0.8s;
  328. -o-transition-duration:0.8s;
  329. -webkit-filter: blur(0px);
  330. transform: rotate(0deg);
  331. -ms-transform: rotate(0deg);
  332. -webkit-transform: rotate(0deg);
  333. -o-transform: rotate(0deg);
  334. -moz-transform: rotate(0deg);
  335.  
  336. }
  337.  
  338. #links a {
  339. letter-spacing: 1px;
  340. padding:3px;
  341.  
  342. }
  343.  
  344. #links a:hover {
  345. color:#000;
  346. opacity:1;
  347. -webkit-transition: all 0.8s ease-out;
  348. -moz-transition: all 0.8s ease-out;
  349. transition: all 0.8s ease-out;
  350. -webkit-filter:;
  351. }
  352.  
  353. #description {
  354. width:208px;
  355. font-size:11px;
  356. padding:5px;
  357. text-align:justify;
  358. letter-spacing:0px;
  359. line-height:90%;
  360. margin-left:-16px;
  361. margin-top:-2px;
  362. }
  363.  
  364. /* this is the box that comes up when you hover over something with a title*/
  365.  
  366. #s-m-t-tooltip {
  367. max-width:300px;
  368. padding:5px 5px 5px 6px;
  369. margin:20px 0px 0px 20px;
  370. background-image:url('http://i.imgur.com/rq06SoZ.png');
  371. background-color:{color:tooltip color};
  372. font-family:arial;
  373. font-size:9px;
  374. letter-spacing:2px;
  375. text-transform:lowercase;
  376. font-weight:bold;
  377. color:#fff;
  378. z-index:999999999999999999999999999999999999;
  379. }
  380.  
  381. /*next page and previous page*/
  382.  
  383. #pagination {
  384. margin-left:470px;
  385. color:#000;
  386. margin-top:-60px;
  387. position: relative;
  388. text-align: left;
  389. letter-spacing:1px;
  390. text-transform: lowercase;
  391. font-weight:none;
  392. font-family: arial;
  393. font-size:30px;
  394. opacity:5;
  395. -webkit-transition-duration: 0.8s;
  396. -moz-transition-duration:0.8s;
  397. transition-duration:0.8s;
  398. -o-transition-duration:0.8s;
  399. -webkit-filter:;
  400. transform: rotate(0)deg);
  401. -ms-transform: rotate(0deg);
  402. -webkit-transform: rotate(0deg);
  403. -o-transform: rotate(0deg);
  404. -moz-transform: rotate(0deg);
  405.  
  406.  
  407. }
  408.  
  409. #pagination a {
  410. padding:0 3px;
  411. opacity:2;
  412. -webkit-filter: Grayscale(0%);
  413. -webkit-transition: all 0.8s ease-out;
  414. -moz-transition: all 0.8s ease-out;
  415. transition: all 0.8s ease-out;
  416. -webkit-filter: blur(0px);
  417.  
  418. }
  419.  
  420.  
  421. #container {
  422. position: fixed;
  423. width:405px;
  424. height:285px;
  425. margin-left:482px;
  426. margin-top:50px;
  427. overflow: auto;
  428. -ms-transform: rotate(0deg);
  429. -webkit-transform: rotate(0deg);
  430. transform: rotate(0deg);
  431. }
  432.  
  433.  
  434. #post {
  435. width:400px;
  436. margin-top:5px;
  437. margin-left:300px;
  438. text-align:left;
  439. font-size:11px;
  440. line-height:110%;
  441. color:#fff;
  442. margin-left:auto;
  443. margin-right:auto;
  444. }
  445.  
  446.  
  447. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  448.  
  449. b, strong{
  450. color: #3f4c74;
  451. font-size:14px;
  452. font-family:"Prata";
  453. letter-spacing:2px;
  454. line-height:115%;
  455. text-shadow: 0px 0px 0px #000;
  456. font-weight: bold;
  457. text-transform:uppercase;
  458. }
  459.  
  460. i, em, strong {
  461. color: #3f4c74;
  462. font-size:14px;
  463. line-height:115%;
  464. font-family:"satisfy";
  465. letter-spacing:2px;
  466. text-shadow:0px 0px 0px #000;
  467. font-weight: italic;
  468.  
  469. }
  470.  
  471. /*time posted, note count, via and source*/
  472.  
  473. .postinfo {
  474. font-family:'Six caps';
  475. width:387px;
  476. margin-top:1px;
  477. padding:6px;
  478. font-size:15px;
  479. color:#fff;
  480. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  481. background-image:url('http://i.imgur.com/rq06SoZ.png');
  482. opacity:.66;
  483. border-radius: 20px 20px 20px 20px;
  484. letter-spacing:1px;
  485. border-bottom:1px #000;
  486. text-transform:uppercase;
  487. font-style:normal;
  488. text-align:center;
  489. }
  490.  
  491. .postinfo a {
  492. color:#fff;
  493. font-style:normal;
  494. }od now
  495.  
  496. .postinfo a:hover {
  497. color:#bebebe;
  498. }
  499.  
  500.  
  501. /*tags*/
  502.  
  503. .tags {
  504. width:387px;
  505. margin-top:4px;
  506. margin-left:-1px;
  507. padding:2px;
  508. font-family:arial;
  509. letter-spacing:0px;
  510. font-size:10px;
  511. text-align:center;
  512.  
  513. }
  514.  
  515. .tags a {
  516. color:#700000;
  517. }
  518.  
  519. .tags a:hover {
  520. color:#000;
  521. }
  522.  
  523. .postnote {
  524. width:387px;
  525. margin-top:40px;
  526. font-family:arial;
  527. text-transform:lowercase;
  528. font-style:normal;
  529. letter-spacing:0px;
  530. font-size:10px;
  531. text-align:center;
  532. }
  533.  
  534. /*here go asks*/
  535.  
  536. #ask {
  537. float:left;
  538. line-height:130%;
  539. border: 1px #000;
  540. font-family:"calibri";
  541. font-size:12px;
  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:#848584;
  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:#a09e9f;
  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. <peggy>words</peggy><p>
  604. more words
  605.  
  606. </div></div></div>
  607.  
  608. <!-- end updates tab -->
  609.  
  610.  
  611. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  612. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  613. <script>
  614.  
  615. (function($){
  616.  
  617. $(document).ready(function(){
  618.  
  619. $("a[title]").style_my_tooltips({
  620.  
  621. tip_follows_cursor:true,
  622.  
  623. tip_delay_time:50,
  624.  
  625. tip_fade_speed:600,
  626.  
  627. attribute:"title"
  628.  
  629. });
  630.  
  631. });
  632.  
  633. })(jQuery);
  634.  
  635. </script>
  636.  
  637.  
  638.  
  639.  
  640. <div id="links">
  641. <a href="/" title="home">✕</a>
  642.  
  643.  
  644. <a href="#?w=500" title="inquire" rel="box1" class="poplight">✕</a>
  645.  
  646. <a href="#?w=400" title="rules" rel="box2" class="poplight">✕</a>
  647.  
  648. <a href="#?w=400" title="about" rel="box3" class="poplight">✕</a>
  649.  
  650. <a href="#?w=400" title="navi" rel="box4" class="poplight">✕</a>
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657. </div>
  658.  
  659. <div id="description">{Description}</div>
  660.  
  661.  
  662. <div id="pagination">
  663. {block:Pagination}
  664. {block:PreviousPage}
  665. <a href="{PreviousPage}">&larr;</a>
  666. {/block:PreviousPage}
  667.  
  668.  
  669. {block:NextPage}
  670. <a href="{NextPage}">&rarr;</a>
  671. {/block:NextPage}
  672. {/block:Pagination}
  673. </div>
  674.  
  675.  
  676.  
  677. </div>
  678.  
  679.  
  680. <div id="container">{block:Posts}<div id="post">
  681.  
  682. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  683.  
  684. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  685.  
  686. {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}
  687.  
  688. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  689.  
  690. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  691.  
  692. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  693.  
  694. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  695.  
  696.  
  697. {block:AudioPlayer}
  698. <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}
  699.  
  700. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  701. — {ASKER}<br><br>
  702. {Answer}<br>{/block:Answer}
  703.  
  704. {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}
  705.  
  706. {block:HasTags}
  707. <div class="tags">
  708. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  709. {/block:HasTags}
  710.  
  711. <div class="postnote">
  712. {block:PostNotes}{PostNotes}{/block:PostNotes}
  713. </div>
  714. </div>
  715. {/block:Posts}
  716.  
  717.  
  718.  
  719.  
  720. </div></div></div></div>
  721. </div>
  722.  
  723. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  724. <i>Manon</i></a></font><div>
  725.  
  726. </body>
  727.  
  728. </div></div></div></div></div></div></div></div></div></div>
  729. <div id="box1" class="popup_block">
  730. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  731. </div>
  732. </div></div></div></div></div></div></div></div></div></div>
  733.  
  734. <div id="box2" class="popup_block">
  735. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  736. <center><big><big><b>GUIDELINES</b></big></big><BR>
  737. <HR WIDTH="100%"><br>
  738. CONTENT
  739. CONTENT
  740. CONTENT
  741. </center>
  742. </div>
  743. </div>
  744.  
  745. </div></div></div></div></div></div></div></div></div></div>
  746.  
  747. <div id="box3" class="popup_block">
  748. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  749. <center><big><big><b>BIOGRAPHY</b></big></big><BR>
  750. <HR WIDTH="100%"><br>
  751. CONTENT
  752. CONTENT
  753. CONTENT
  754. </center>
  755. </div>
  756. </div>
  757.  
  758. </div></div></div></div></div></div></div></div></div></div>
  759.  
  760. <div id="box4" class="popup_block">
  761. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  762. <center><big><big><b>NAVIGATION</b></big></big><BR>
  763. <HR WIDTH="100%"><br>
  764. <a href="/LINK HERE">TITLE HERE</a>
  765. <p>
  766. <a href="/LINK HERE">TITLE HERE</a>
  767. <p><a href="/LINK HERE">TITLE HERE</a>
  768. <p><a href="/LINK HERE">TITLE HERE</a>
  769. <p><a href="/LINK HERE">TITLE HERE</a>
  770. <p><a href="/LINK HERE">TITLE HERE</a>
  771. <p>
  772.  
  773.  
  774. </center><p>
  775.  
  776.  
  777. </div>
  778. </div>
  779.  
  780. </div></div></div></div></div></div></div></div></div></div>
  781.  
  782. <div id="box5" class="popup_block">
  783. <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>
  784. </div>
  785.  
  786. </div></div></div></div></div></div></div></div></div></div>
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement