Advertisement
manon15

windblownrunaway theme code

Jan 27th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.68 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. #updates {
  143. font-size:10px;
  144. font-family: 'calibri';
  145. color:#000;
  146. text-align:left;
  147. background-color:transparent;
  148. height:45px;
  149. width:220px;
  150. padding:4px;
  151. top:20px;
  152. left:10px;
  153. z-index:10;
  154. position:fixed;
  155. overflow:hidden;
  156. -webkit-transition: all 0.5s ease-in-out;
  157. -moz-transition: all 0.5s ease-in-out;
  158. -o-transition: all 0.5s ease-in-out;
  159. }
  160.  
  161. #updates:hover {
  162. height:200px;
  163. -webkit-transition: all 0.5s ease-in-out;
  164. -moz-transition: all 0.5s ease-in-out;
  165. -o-transition: all 0.5s ease-in-out;
  166. }
  167.  
  168. #updatestitle {
  169. text-transform:uppercase;
  170. font-family:arial;
  171. font-weight:bold;
  172. text-align:center;
  173. color:#000;
  174. font-family:'Six caps';
  175. font-size:40px;
  176. letter-spacing:1.5px;
  177. }
  178.  
  179.  
  180.  
  181.  
  182. /*edit scrollbar*/
  183.  
  184. ::-webkit-scrollbar-thumb {
  185. height:auto;
  186. }
  187.  
  188. ::-webkit-scrollbar {
  189. height:4px;
  190. width:3px;
  191. padding-right:2px;
  192. }
  193. /*edit the body this is what post text looks like, background color, etc.*/
  194.  
  195. body {
  196. background-image:url("http://i.imgur.com/aJEzbwX.png");
  197. background-position:absolute;
  198. background-attachment:fixed;
  199. background-repeat:no-repeat;
  200. background-color:#9b9998;
  201. margin:0px;
  202. color:#848584;
  203. font-family:arial;
  204. font-size:10px;
  205. line-height:100%;
  206. }
  207.  
  208. /*edit links*/
  209.  
  210. a {
  211. text-decoration:none;
  212. outline:none;
  213. -moz-outline-style:none;
  214. color:#848584;
  215. -moz-transition-duration:0.8s;
  216. -webkit-transition-duration:0.8s;
  217. -o-transition-duration:0.8s;
  218. }
  219.  
  220. /*edit link hover*/
  221.  
  222. a:hover {
  223. color:#fff;
  224. outline:none;
  225. -moz-outline-style:none;
  226. text-decoration:none;
  227. }
  228.  
  229. img {
  230. opacity:.8;
  231. -webkit-filter: Grayscale(50%);
  232. -webkit-transition-duration: 0.8s;
  233. -moz-transition-duration:0.8s;
  234. transition-duration:0.8s;
  235. -o-transition-duration:0.8s;
  236. -webkit-filter: blur(1px);
  237. }
  238.  
  239. img:hover {
  240. opacity:1;
  241. -webkit-filter: Grayscale(0%);
  242. -webkit-transition: all 0.8s ease-out;
  243. -moz-transition: all 0.8s ease-out;
  244. transition: all 0.8s ease-out;
  245. -webkit-filter: blur(0px);
  246.  
  247. }
  248.  
  249. blockquote {
  250. padding-left:5px;
  251. border-left:2px solid #fff;
  252.  
  253. }
  254.  
  255. blockquote blockquote {
  256. padding-left:5px;
  257. border-left:2px solid;
  258. }
  259.  
  260. h1 {
  261. font-size:22px;
  262. text-align:left;
  263. font-family:"six caps";
  264. text-align:center;
  265. line-height:105%;
  266. letter-spacing:1px;
  267. color:#d0d0ce;
  268. }
  269.  
  270.  
  271.  
  272. #title {
  273. color:#848584;
  274. font-family:arial;
  275. font-size:16px;
  276. text-transform:lowercase;
  277. font-weight:bold;
  278. letter-spacing:0px;
  279. padding:4px;
  280. margin-top:-20px;
  281. margin-left:-14px;
  282. position:fixed;
  283. text-align:left;
  284. }
  285.  
  286.  
  287.  
  288. /*sidebar links*/
  289.  
  290. #links {
  291. width:200px;
  292. margin-top:535px;
  293. margin-left:1090px;
  294. padding:5px;
  295. font-family:arial;
  296. text-align:left;
  297. word-spacing:1px;
  298. font-size:12px;
  299. font-weight:bold;
  300. display:block;
  301. color:#000;
  302. opacity:1;
  303. -webkit-transition-duration: 0.8s;
  304. -moz-transition-duration:0.8s;
  305. transition-duration:0.8s;
  306. -o-transition-duration:0.8s;
  307. -webkit-filter: blur(0px);
  308. transform: rotate(0)deg);
  309. -ms-transform: rotate(0deg);
  310. -webkit-transform: rotate(0deg);
  311. -o-transform: rotate(0deg);
  312. -moz-transform: rotate(0deg);
  313.  
  314. }
  315.  
  316. #links a {
  317. letter-spacing: 1px;
  318. padding:3px;
  319.  
  320. }
  321.  
  322. #links a:hover {
  323. color:#000;
  324. opacity:1;
  325. -webkit-transition: all 0.8s ease-out;
  326. -moz-transition: all 0.8s ease-out;
  327. transition: all 0.8s ease-out;
  328. -webkit-filter:;
  329. }
  330.  
  331. #description {
  332. width:208px;
  333. font-size:11px;
  334. padding:5px;
  335. text-align:justify;
  336. letter-spacing:0px;
  337. line-height:90%;
  338. margin-left:-16px;
  339. margin-top:-2px;
  340. }
  341.  
  342. /* this is the box that comes up when you hover over something with a title*/
  343.  
  344. #s-m-t-tooltip {
  345. max-width:300px;
  346. padding:5px 5px 5px 6px;
  347. margin:20px 0px 0px 20px;
  348. background-image:url('http://i.imgur.com/YpiHPpW.png');
  349. background-color:{color:tooltip color};
  350. font-family:arial;
  351. font-size:9px;
  352. letter-spacing:2px;
  353. text-transform:lowercase;
  354. font-weight:bold;
  355. color:#fff;
  356. z-index:999999999999999999999999999999999999;
  357. }
  358.  
  359. /*next page and previous page*/
  360.  
  361. #pagination {
  362. margin-left:1095px;
  363. color:#000;
  364. margin-top: -70px;
  365. position: relative;
  366. text-align: left;
  367. letter-spacing:1px;
  368. text-transform: lowercase;
  369. font-weight:bold;
  370. font-family: arial;
  371. font-size: 45px;
  372. opacity:.8;
  373. -webkit-transition-duration: 0.8s;
  374. -moz-transition-duration:0.8s;
  375. transition-duration:0.8s;
  376. -o-transition-duration:0.8s;
  377. -webkit-filter:;
  378. transform: rotate(0)deg);
  379. -ms-transform: rotate(0deg);
  380. -webkit-transform: rotate(0deg);
  381. -o-transform: rotate(0deg);
  382. -moz-transform: rotate(0deg);
  383.  
  384.  
  385. }
  386.  
  387. #pagination a {
  388. padding:0 3px;
  389. opacity:1;
  390. -webkit-filter: Grayscale(0%);
  391. -webkit-transition: all 0.8s ease-out;
  392. -moz-transition: all 0.8s ease-out;
  393. transition: all 0.8s ease-out;
  394. -webkit-filter: blur(0px);
  395.  
  396. }
  397.  
  398.  
  399. #container {
  400. position: fixed;
  401. width:255px;
  402. height:393px;
  403. margin-left:555px;
  404. margin-top:-342px;
  405. overflow: auto;
  406. -ms-transform: rotate(0deg);
  407. -webkit-transform: rotate(0deg);
  408. transform: rotate(0deg);
  409. }
  410.  
  411.  
  412. #post {
  413. width:250px;
  414. margin-top:5px;
  415. margin-left:300px;
  416. text-align:left;
  417. font-size:11px;
  418. line-height:110%;
  419. color:#5c5c5c;
  420. margin-left:auto;
  421. margin-right:auto;
  422. }
  423.  
  424.  
  425. /*italics and bold stuffs. here is where you can put new fonts, many i have already supplied you with!*/
  426.  
  427. b, strong{
  428. color: #7a2320;
  429. font-size:14px;
  430. font-family:"Prata";
  431. letter-spacing:2px;
  432. line-height:115%;
  433. text-shadow: 0px 1px 4px #846167;
  434. font-weight: bold;
  435. text-transform:uppercase;
  436. }
  437.  
  438. i, em, strong {
  439. color: #7a2320;
  440. font-size:14px;
  441. line-height:115%;
  442. font-family:"bad script";
  443. letter-spacing:2px;
  444. text-shadow:0px 1px 4px #846167;
  445. font-weight: italic;
  446.  
  447. }
  448.  
  449. /*time posted, note count, via and source*/
  450.  
  451. .postinfo {
  452. font-family:'Six caps';
  453. width:237px;
  454. margin-top:1px;
  455. padding:6px;
  456. font-size:15px;
  457. color:#fff;
  458. text-shadow:2px 2px 3px rgba(14,8,8, 1);
  459. background-image:url('http://i.imgur.com/YpiHPpW.png');
  460. opacity:.66;
  461. border-radius: 20px 20px 20px 20px;
  462. letter-spacing:1px;
  463. border-bottom:1px #000;
  464. text-transform:uppercase;
  465. font-style:normal;
  466. text-align:center;
  467. }
  468.  
  469. .postinfo a {
  470. color:#fff;
  471. font-style:normal;
  472. }od now
  473.  
  474. .postinfo a:hover {
  475. color:#bebebe;
  476. }
  477.  
  478.  
  479. /*tags*/
  480.  
  481. .tags {
  482. width:237px;
  483. margin-top:4px;
  484. margin-left:-1px;
  485. padding:2px;
  486. font-family:arial;
  487. letter-spacing:0px;
  488. font-size:10px;
  489. text-align:center;
  490.  
  491. }
  492.  
  493. .tags a {
  494. color:#772b25;
  495. }
  496.  
  497. .tags a:hover {
  498. color:#000;
  499. }
  500.  
  501. .postnote {
  502. width:240px;
  503. margin-top:40px;
  504. font-family:arial;
  505. text-transform:lowercase;
  506. font-style:normal;
  507. letter-spacing:0px;
  508. font-size:10px;
  509. text-align:center;
  510. }
  511.  
  512. /*here go asks*/
  513.  
  514. #ask {
  515. float:left;
  516. line-height:130%;
  517. border: 1px #838483;
  518. font-family:"calibri";
  519. font-size:12px;
  520.  
  521. }
  522.  
  523.  
  524.  
  525. /*audio player container*/
  526.  
  527. .playercontainer {
  528. text-align:left;
  529. padding:10px;
  530. padding-left:0px;
  531. background-color:#fff;
  532. width:480px;
  533. }
  534.  
  535. /*artist, song, etc.*/
  536.  
  537. .musicinfo {
  538. padding-top:7px;
  539. padding-left:50px;
  540. color:#000;
  541. text-align:justify;
  542. }
  543.  
  544. /*credit. only change this if you actually make the code your own*/
  545.  
  546. #credit {
  547. position:fixed;
  548. font-size:3px;
  549. color:#848584;
  550. font-weight:none;
  551. line-height:50%;
  552. letter-spacing:2px;
  553. right:10px;
  554. bottom:05px;
  555. text-transform:none;
  556. text-align:left;
  557. }
  558.  
  559. #credit a {
  560. letter-spacing: 0px;
  561. padding:3px;
  562. color:#848585;
  563. }
  564.  
  565. #credit a:hover {
  566. background:#000;
  567. color:#848584;
  568. }
  569.  
  570.  
  571.  
  572. {CustomCSS}</style></head><body>
  573.  
  574.  
  575. <!-- begin updates tab -->
  576.  
  577. <div id="updates">
  578. <div id="updatestitle"><br>UPDATES</div>
  579.  
  580. <div style="padding-top:10px;">
  581. <br><br>
  582. <big><center><FONT COLOR="#848584"><i>wuddup homie</i></FONT></center></big>
  583. <center>THIS IS WHERE YOU PUT ANY EXTRA INFO. IF YOU WANT A SMALL LINE BREAK DO <BR> AND IF YOU WANT A LARGE LINE BREAK IT'S <P>. FOR A HORIZONTAL LINE, DO <HR WIDTH=100%><P>
  584. AND IF YOU WANT WORDS TO MOVE ACROSS THE UPDATES TAB, DO
  585. <marquee>LOOKY HERE THIS IS MOVING</marquee><br>
  586. AND IF YOU WANT TO MAKE A WORD BOLD DO <B>HEYA</B> AND ITALICS <I>HOLA</I>. hope this helps!
  587. </center>
  588.  
  589.  
  590.  
  591. </div></div>
  592.  
  593. <!-- end updates tab -->
  594.  
  595.  
  596. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  597. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  598. <script>
  599.  
  600. (function($){
  601.  
  602. $(document).ready(function(){
  603.  
  604. $("a[title]").style_my_tooltips({
  605.  
  606. tip_follows_cursor:true,
  607.  
  608. tip_delay_time:50,
  609.  
  610. tip_fade_speed:600,
  611.  
  612. attribute:"title"
  613.  
  614. });
  615.  
  616. });
  617.  
  618. })(jQuery);
  619.  
  620. </script>
  621.  
  622.  
  623.  
  624.  
  625. <div id="links">
  626. <a href="/" title="home">♕</a>
  627.  
  628.  
  629. <a href="#?w=500" title="inquire" rel="box1" class="poplight">♕</a>
  630.  
  631. <a href="#?w=400" title="guidelines" rel="box2" class="poplight">♕</a>
  632.  
  633. <a href="#?w=400" title="about" rel="box3" class="poplight">♕</a>
  634.  
  635. <a href="#?w=400" title="navi" rel="box4" class="poplight">♕</a>
  636.  
  637.  
  638.  
  639.  
  640. </div>
  641.  
  642. <div id="description">{Description}</div>
  643.  
  644.  
  645. <div id="pagination">
  646. {block:Pagination}
  647. {block:PreviousPage}
  648. <a href="{PreviousPage}">&larr;</a>
  649. {/block:PreviousPage}
  650.  
  651.  
  652. {block:NextPage}
  653. <a href="{NextPage}">&rarr;</a>
  654. {/block:NextPage}
  655. {/block:Pagination}
  656. </div>
  657.  
  658.  
  659.  
  660. </div>
  661.  
  662.  
  663. <div id="container">{block:Posts}<div id="post">
  664.  
  665. {block:Text}<h1>{block:Title}<big><big><center>{Title}</center></big></big>{/block:Title}</h1>{Body}{/block:Text}
  666.  
  667. {block:Quote}<big><b><center>"{Quote}"</center></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
  668.  
  669. {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}
  670.  
  671. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  672.  
  673. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  674.  
  675. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  676.  
  677. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  678.  
  679.  
  680. {block:AudioPlayer}
  681. <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}
  682.  
  683. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-40}" style="margin-right:12px;border:1px solid #e3e3e3;padding:3px;"></div> "{Question}"<br>
  684. — {ASKER}<br><br>
  685. {Answer}<br>{/block:Answer}
  686.  
  687. {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}
  688.  
  689. {block:HasTags}
  690. <div class="tags">
  691. {block:Tags}<a href="{TagURL}"> ○ {Tag}</a>  {/block:Tags}</div>
  692. {/block:HasTags}
  693.  
  694. <div class="postnote">
  695. {block:PostNotes}{PostNotes}{/block:PostNotes}
  696. </div>
  697. </div>
  698. {/block:Posts}
  699.  
  700.  
  701.  
  702.  
  703. </div></div></div></div>
  704. </div>
  705.  
  706. <div id="credit"><a href="#?w=400" title="credit" rel="box5" class="poplight"><font size="4">
  707. <i>Manon</i></a></font><div>
  708.  
  709. </body>
  710.  
  711. </div></div></div></div></div></div></div></div></div></div>
  712. <div id="box1" class="popup_block">
  713. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  714. </div>
  715. </div></div></div></div></div></div></div></div></div></div>
  716.  
  717. <div id="box2" class="popup_block">
  718. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  719. CONTENT
  720. CONTENT
  721. CONTENT
  722. </div>
  723. </div>
  724.  
  725. </div></div></div></div></div></div></div></div></div></div>
  726.  
  727. <div id="box3" class="popup_block">
  728. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  729. CONTENT
  730. CONTENT
  731. CONTENT
  732. </div>
  733. </div>
  734.  
  735. </div></div></div></div></div></div></div></div></div></div>
  736.  
  737. <div id="box4" class="popup_block">
  738. <div style="height: 350px; overflow-y: scroll; overflow-x: hidden;">
  739. <center><a href="/LINK HERE">TITLE HERE</a>
  740. <p>
  741. <a href="/LINK HERE">TITLE HERE</a>
  742. <p><a href="/LINK HERE">TITLE HERE</a>
  743. <p><a href="/LINK HERE">TITLE HERE</a>
  744. <p><a href="/LINK HERE">TITLE HERE</a>
  745. <p><a href="/LINK HERE">TITLE HERE</a>
  746. <p>
  747.  
  748.  
  749. </center><p>
  750.  
  751.  
  752. </div>
  753. </div>
  754.  
  755. </div></div></div></div></div></div></div></div></div></div>
  756.  
  757. <div id="box5" class="popup_block">
  758. <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>
  759. </div>
  760.  
  761. </div></div></div></div></div></div></div></div></div></div>
  762.  
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement