Advertisement
alicescreed

luckheist

Mar 12th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.10 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16. <meta name="text:pop1 link title" content="pop1 title">
  17. <meta name="text:pop2 link title" content="pop2 title">
  18. <meta name="text:pop3 link title" content="pop3 title">
  19. <meta name="text:pop4 link title" content="pop4 title">
  20. <meta name="text:pop5 link title" content="pop5 title">
  21.  
  22.  
  23. <meta name="image:background" content="">
  24. <meta name="image:infobackground" content="">
  25.  
  26. <meta name="color:text" content="#e2e2e2">
  27. <meta name="color:scrollbar" content="#2d4960">
  28. <meta name="color:bold" content="#7fb2d5">
  29. <meta name="color:italic" content="#a5c7e1">
  30. <meta name="color:links" content="#7fb1d5">
  31. <meta name="color:borders" content="#e2e2e2">
  32. <meta name="color:hover link" content="#d1d1d1">
  33.  
  34. <link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Great+Vibes|caladea&display=swap" rel="stylesheet">
  35.  
  36. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  37. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  38. <script>
  39. (function($){
  40. $(document).ready(function(){
  41. $("[title]").style_my_tooltips({
  42. tip_follows_cursor:true,
  43. tip_delay_time:200,
  44. tip_fade_speed:300
  45. }
  46. );
  47. });
  48. })(jQuery);
  49. </script>
  50.  
  51. <script type="text/javascript"
  52. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  53. <script>
  54. $(document).ready(function() {
  55. //
  56. $('a.poplight[href^=#]').click(function() {
  57. var popID = $(this).attr('rel'); //Get Popup Name
  58. var popURL = $(this).attr('href'); //Get Popup href to define size
  59. var query= popURL.split('?');
  60. var dim= query[1].split('&');
  61. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  62. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  63. var popMargTop = ($('#' + popID).height() + 80) / 2;
  64. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  65. //Apply Margin to Popup
  66. $('#' + popID).css({
  67. 'margin-top' : -popMargTop,
  68. 'margin-left' : -popMargLeft
  69. });
  70. $('body').append('<div id="fade"></div>');
  71. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  72. return false;
  73. });
  74. $('a.close, #fade').live('click', function() {
  75. $('#fade , .popup_block').fadeOut(function() {
  76. $('#fade, a.close').remove(); //fade them both out
  77. });
  78. return false;
  79. });
  80. });
  81. </script>
  82.  
  83.  
  84. <style type="text/css">
  85.  
  86.  
  87. body {
  88. font-family: 'Caladea', serif;
  89. color: {color:text};
  90. font-size: 10pt;
  91. letter-spacing: 0px;
  92. background-color: #1f1f25;
  93. background-image: url('{image:background}');
  94. background-position: absolute;
  95. background-attachment: fixed;
  96. line-height: 120%;
  97. background-repeat: no-repeat;
  98. text-align: justify;
  99. }
  100.  
  101. #s-m-t-tooltip{
  102. position: absolute;
  103. z-index: 999999999999999999999999999999999999999999999999999999999999;
  104. margin-top: 10px;
  105. margin-left: 5px;
  106. display: block;
  107. border-radius: 50px;
  108. background-image: url('{image:infobackground}');
  109. background-position: center;
  110. text-align: center;
  111. color: #fff;
  112. font-style: italic;
  113. box-shadow: 2px 2px 5px #000;
  114. font-family: 'Bebas Neue', cursive;
  115. letter-spacing: 1px;
  116. text-shadow: 1px 1px 2px #000;
  117. border: 4px {color:borders};
  118. border-style: double;
  119. padding: 10px;
  120. font-size: 20px;
  121. margin-bottom: 5px;
  122. }
  123.  
  124. ::-webkit-scrollbar-thumb:vertical {
  125. background-color: {color:scrollbar};
  126. height:auto;
  127. }
  128.  
  129. ::-webkit-scrollbar-thumb:horizontal {
  130. background-color: {color:scrollbar};
  131. height:2px;
  132. }
  133.  
  134. ::-webkit-scrollbar {
  135. height:3px;
  136. width:3px;
  137. background-color: transparent;
  138. }
  139.  
  140.  
  141. a {
  142. text-decoration: none;
  143. color: {color:links};
  144. font-size: 14pt;
  145. line-height: 19pt;
  146. font-weight: bold;
  147. transition-duration: 0.6s;
  148. -moz-transition-duration: 0.6s;
  149. -webkit-transition-duration: 0.6s;
  150. -o-transition-duration: 0.6s;
  151. font-family: 'Bebas Neue', cursive;
  152. letter-spacing: 1px;
  153. text-shadow: 1px 1px 5px #000;
  154. }
  155.  
  156.  
  157. a:hover {
  158. text-decoration: none;
  159. filter:blur(1px);
  160. letter-spacing: 1px;
  161. padding: 2px;
  162. color: {color:hover link};
  163. transition-duration: 0.6s;
  164. -moz-transition-duration: 0.6s;
  165. -webkit-transition-duration: 0.6s;
  166. -o-transition-duration: 0.6s;
  167. font-family:'Bebas Neue', cursive;
  168. }
  169.  
  170. small, sup, sub {
  171. font-size: 100%;
  172. }
  173.  
  174. b, strong {
  175. text-shadow: 1px 1px 5px #000;
  176. padding-left: 2px;
  177. padding-right: 2px;
  178. color:{color:bold};
  179. letter-spacing: 0px;
  180. font-size: 14pt;
  181. font-family: 'Bebas Neue', cursive;
  182. }
  183.  
  184. i, em {
  185. text-shadow: 1px 1px 5px #000;
  186. color:{color:italic};
  187. font-family: 'great vibes', cursive;
  188. letter-spacing: 1px;
  189. padding-left:5px;
  190. padding-right: 5px;
  191. padding-top: 10px;
  192. padding-bottom: 10px;
  193. font-size: 22pt;
  194. }
  195.  
  196.  
  197.  
  198.  
  199. h2 {
  200. text-shadow: 1px 1px 5px #000;
  201. color: #fff;
  202. font-family: 'Bebas Neue', cursive;
  203. font-size: 16pt;
  204. font-weight: bold;
  205. line-height: 120%;
  206. letter-spacing: 1px;
  207. }
  208.  
  209.  
  210. #info {
  211. padding: 10px;
  212. border-radius: 50px;
  213. margin-top: 10px;
  214. background-image: url('{image:infobackground}');
  215. background-attachment:fixed;
  216. background-repeat:repeat;
  217. background-position: right;
  218. text-align: center;
  219. color: #fff;
  220. letter-spacing: 1px;
  221. transition-duration: 0.6s;
  222. -moz-transition-duration: 0.6s;
  223. -webkit-transition-duration: 0.6s;
  224. -o-transition-duration: 0.6s;
  225. font-size:14px;
  226. border: 4px {color:borders};
  227. border-style: double;
  228. }
  229.  
  230. #info a {
  231. font-size: 20pt;
  232. text-shadow: 1px 1px #000;
  233. color: #fff;
  234. font-weight: normal;
  235. font-family: 'bebas neue',cursive;
  236. }
  237.  
  238. #h1 {
  239. text-align: center;
  240. color: #fff;
  241. font-family: 'Bebas Neue', cursive;
  242. padding: 10px;
  243. text-shadow: 2px 2px 2px #000;
  244. line-height: 110%;
  245. font-size: 18pt;
  246. background-position: center;
  247. margin-bottom: 5px;
  248. }
  249.  
  250. #sidebar {
  251. margin-left: 0px;
  252. width: 200px;
  253. font-size: 11px;
  254. margin-top: 310px;
  255. position: fixed;
  256. background-color: transparent;
  257. padding: 10px;
  258. }
  259.  
  260. #description {
  261. width: 200px;
  262. height:110px;
  263. padding-right: 5px;
  264. overflow: auto;
  265. }
  266.  
  267. #audio {
  268. text-align: center;
  269. font-size: 8pt;
  270. line-height: 9pt;
  271. }
  272.  
  273.  
  274. #musicinfo {
  275.  
  276. text-transform: uppercase;
  277. margin-top:10px;
  278. }
  279.  
  280. blockquote {
  281. border-right: 2px solid {color:bold};
  282. border-left: 2px solid {color:italic};
  283. border-radius: 5px;
  284. transform:rotate(0deg);
  285. background-color: #1b1b20;
  286. padding: 5px;
  287. font-size: 95%
  288. }
  289.  
  290. blockquote img {
  291. max-width: 100%;
  292. display: block;
  293. height: auto
  294. }
  295.  
  296. img {
  297. max-width: 100%;
  298. display: block;
  299. height: auto
  300. }
  301.  
  302.  
  303. ol.notes {
  304. text-align: left;
  305. list-style: upper-roman;
  306. padding: 10px;
  307.  
  308. }
  309.  
  310.  
  311. #info a:hover {
  312. color: {color:bold};
  313. }
  314.  
  315. #credit {
  316. right:10px;
  317. bottom:7px;
  318. padding:5px;
  319. font-size:10px;
  320. position:fixed;
  321. background-image: url('{image:infobackground}');
  322. text-align: center;
  323. font-style: italic;
  324. font-family: 'Bebas Neue', cursive;
  325. letter-spacing: 1px;
  326. border: 1px {color:borders};
  327. border-style: solid;
  328. padding: 5px;
  329. font-size: 120%;
  330. margin-bottom: 5px;
  331. transition-duration: 0.6s;
  332. -moz-transition-duration: 0.6s;
  333. -webkit-transition-duration: 0.6s;
  334. -o-transition-duration: 0.6s;
  335. }
  336.  
  337.  
  338. #credit a {
  339. font-family: 'Bebas Neue', cursive;
  340. color:#fff;
  341. padding:5px;
  342. letter-spacing:1px;
  343. text-decoration:none;
  344. font-weight:bold;
  345. }
  346.  
  347. #tags a {
  348. font-family: verdana;
  349. font-weight: bold;
  350. font-size: 8px;
  351. line-height: 10px;
  352. text-transform: uppercase;
  353. text-shadow: 1px 1px 2px #000;
  354. color:{color:text};
  355. }
  356.  
  357. #post {
  358. width: 250px;
  359. margin-bottom: 25px;
  360. }
  361.  
  362. #posts {
  363. width: 250px;
  364. border-left: 10px solid transparent;
  365. border-right: 10px solid transparent;
  366. border-image:url('{image:infobackground}') 10 round;
  367. padding: 17px;
  368. height: auto;
  369. position: absolute;
  370. background-color: #1f1f25;
  371. margin-left: 330px;
  372. margin-top: -10px;
  373. }
  374.  
  375.  
  376. #links {
  377. position: fixed;
  378. margin-top: 520px;
  379. text-align: left;
  380. width: 300px;
  381. font-size: 13pt;
  382. line-height: 6pt;
  383. margin-left: 550px;
  384. }
  385.  
  386. #links a {
  387. color: {color:navlinks};
  388. font-weight: bold;
  389. margin-right: 20px;
  390. font-family: 'Bebas Neue', cursive;
  391. text-transform: uppercase;
  392. }
  393.  
  394. #links a:hover {
  395. color: {color:bold};
  396. font-style: normal;
  397. }
  398.  
  399. #ask {
  400. border-bottom: 4px double;
  401. width: auto;
  402. padding: 10px;
  403. height: auto;
  404. font-size: 15pt;
  405. }
  406.  
  407. #pa { margin-top: 20px;
  408. text-align: center;
  409. }
  410.  
  411. #pa a {
  412. text-shadow: 1px 1px 5px #000;
  413. color: #fff;
  414. }
  415.  
  416. #fade {
  417. display: none;
  418. background: #1f1f25;
  419. position: fixed;
  420. left: 0;
  421. top: 0;
  422. width: 100%;
  423. height: 100%;
  424. background-image: url('https://i.imgur.com/6WO40JO.png');
  425. background-position: center;
  426. background-repeat:no-repeat;
  427. background-attachment: fixed;
  428. opacity: 1;
  429. z-index: 9999;
  430. }
  431.  
  432. .popup_block{
  433. display: none;
  434. padding: 10px;
  435. position: fixed;
  436. top: 50%;
  437. left: 50%;
  438. z-index: 99999;
  439. border: 10px solid transparent;
  440. border-image:url('{image:infobackground}') 10 round;
  441. background-color: #1f1f25;
  442. }
  443.  
  444. img.btn_close {
  445. float: right;
  446. margin: -55px -55px 0 0;
  447. }
  448.  
  449. *html #fade {
  450. position: absolute;
  451. }
  452.  
  453. *html .popup_block {
  454. position: absolute;
  455. }
  456.  
  457. #poph1 {
  458. border-radius: 20px;
  459. color: #fff;
  460. background-position: center;
  461. text-shadow: 1px 1px 3px #000;
  462. background-image: url('{image:infobackground}');
  463. background-attachment:fixed;
  464. background-repeat:repeat;
  465. text-align: center;
  466. font-family: verdana;
  467. border: 4px double {color:borders};
  468. padding: 5px;
  469. font-size: 8pt;
  470. font-weight: bold;
  471. text-transform: uppercase;
  472. margin-bottom: 5px;
  473. margin-top: 5px;
  474. }
  475.  
  476. #left {
  477. float:left;
  478. margin-right: 10px;
  479. }
  480.  
  481. #scattered {
  482. margin-left: 370px;
  483. margin-top: -20px;
  484. font-size: 20pt;
  485. position: fixed;
  486. }
  487.  
  488. #scattered img {
  489. filter:grayscale(100%) blur(0px);
  490. transition-duration: 0.6s;
  491. -moz-transition-duration: 0.6s;
  492. -webkit-transition-duration: 0.6s;
  493. -o-transition-duration: 0.6s;
  494.  
  495. }
  496.  
  497. #scattered img:hover {
  498. transform:rotate(25deg);
  499. filter:grayscale(0%) blur(4px);
  500. transition-duration: 0.6s;
  501. -moz-transition-duration: 0.6s;
  502. -webkit-transition-duration: 0.6s;
  503. -o-transition-duration: 0.6s;
  504. }
  505.  
  506.  
  507. #rightbox {
  508. position: fixed;
  509. margin-top: -100px;
  510. font-family: 'bebas neue', cursive;
  511. font-size: 12pt;
  512. letter-spacing: 1px;
  513. line-height: 10pt;
  514. margin-left: 210px;
  515. width: 90px;
  516. align: right;
  517. text-align: center;
  518. }
  519.  
  520.  
  521. #navlinks {
  522. border-radius: 20px;
  523. color: #fff;
  524. background-position: center;
  525. text-shadow: 1px 1px 3px #000;
  526. background-image: url('{image:infobackground}');
  527. background-attachment:fixed;
  528. background-repeat:repeat;
  529. text-align: center;
  530. font-family: verdana;
  531. border: 4px double {color:borders};
  532. padding: 5px;
  533. font-size: 8pt;
  534. font-weight: bold;
  535. text-transform: uppercase;
  536. margin-bottom: 5px;
  537. margin-top: 5px;
  538.  
  539. }
  540.  
  541. #navlinks a {
  542. text-align: center;
  543. font-family: verdana;
  544. font-size: 8pt;
  545. font-weight: bold;
  546. text-transform: uppercase;
  547. text-shadow: 1px 1px 3px #000;
  548. color: #fff;
  549. }
  550.  
  551.  
  552. </style>
  553.  
  554. </head>
  555.  
  556. <body>
  557.  
  558. <div id="scattered">
  559.  
  560. <div style="margin-top: -60px; position: fixed;">
  561. <div style="position: fixed; margin-top: 100px; margin-left: 530px;"><a href="/" title="home" style="color:#859cb5;"> <img src="https://i.imgur.com/X2RLZaq.png" width="40"></a></div>
  562.  
  563. <div style="position: fixed; margin-top: 210px; margin-left: 450px;"><a href="#?w=500" rel="askme" class="poplight" title="ask" style="color:{color:bold}"> <img src="https://i.imgur.com/X2RLZaq.png" width="60"></a></div>
  564.  
  565. <div style="position: fixed; margin-top: 280px; margin-left: 580px;"><a href="#?w=500" rel="pop1" class="poplight" title="guidelines" style="color:{color:italic}"> <img src="https://i.imgur.com/X2RLZaq.png" width="40"></a> </div>
  566. </div>
  567.  
  568. <div style="position: fixed; margin-top: 320px; margin-left: 700px;"><a href="#?w=500" rel="pop2" class="poplight" title="about" style="color:#859cb5;"> <img src="https://i.imgur.com/X2RLZaq.png" width="60"></a> </div>
  569.  
  570. <div style="position: fixed; margin-top: 400px; margin-left: 820px;"><a href="#?w=500" rel="pop3" class="poplight" title="verses" style="color:{color:bold}"> <img src="https://i.imgur.com/X2RLZaq.png" width="40"></a> </div>
  571.  
  572. <div style="position: fixed; margin-top: 420px; margin-left: 590px;"><a href="#?w=500" rel="pop4" class="poplight" title="mains/exclusives" style="color:{color:italic}"> <img src="https://i.imgur.com/X2RLZaq.png" width="60"></a></div>
  573.  
  574. <div style="position: fixed; margin-top: 580px; margin-left:780px;"><a href="#?w=500" rel="pop5" style="color:#859cb5;" class="poplight" title="navigation"> <img src="https://i.imgur.com/X2RLZaq.png" width="40"></a></div>
  575.  
  576. </div>
  577.  
  578.  
  579. <div id="sidebar">
  580. <div id="description">
  581. {description}</div>
  582. <div id="rightbox">
  583. <a href="/"><img src="https://i.imgur.com/DHlDfFc.gif" style="margin-left: 5px;" title="{title}"></a><br>
  584. <div style="margin-top: -15px;">
  585. <marquee scrolldelay="250">title here</marquee>
  586. <p style="margin-top: 10px;">
  587. {block:Pagination}
  588. {block:PreviousPage}
  589. <a href="{PreviousPage}">fall</a> /
  590. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  591. {/block:NextPage}
  592. {/block:Pagination}
  593. </div></div>
  594.  
  595. </div>
  596.  
  597. </div>
  598.  
  599. <div id="posts">
  600.  
  601.  
  602. {block:Posts}<div id="post">
  603.  
  604.  
  605.  
  606. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  607.  
  608. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  609.  
  610. {Caption} {/block:Caption}{/block:Photo}
  611.  
  612. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}
  613.  
  614. {/block:Photoset}
  615.  
  616. {block:Quote}<b style="text-align: center; font-size: 18pt; line-height: 20pt;">{Quote}</b>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  617.  
  618. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  619.  
  620. {Description}{/block:Description}{/block:Link}
  621.  
  622. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  623.  
  624. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  625.  
  626. {block:Audio}
  627. <div id="audio">
  628. {block:TrackName}
  629. <div id="musicinfo" style="margin-top: 5px;">
  630. {AudioPlayerGrey} <br>
  631. {TrackName} by
  632. {/block:TrackName}
  633. {block:Artist}
  634. {Artist}
  635. {/block:Artist}
  636.  
  637. </div>
  638. </div>
  639. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  640. {/block:Audio}
  641.  
  642.  
  643. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  644.  
  645. {block:Answer}
  646. <div id="ask">
  647. <div id="qq" style="margin-top: 0px;">
  648. {Asker} asked,<br>
  649. <span style="font-weight: normal;font-family: 'Caladea', serif; color: {color:text}; font-size: 10pt;">" {Question} "</span></div>
  650. </div>
  651. {Answer}{/block:Answer}
  652.  
  653. <div id="info">
  654. <a title="{TimeAgo}" title="{TimeAgo}">♦</a> <a href="{Permalink}" title="{NoteCount} notes">♦</a> <a href="{ReblogURL}" title="reblog">♦</a>
  655. <div id="tags">
  656. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  657. {/block:Tags}{/block:HasTags}
  658. </div>
  659. </div>
  660.  
  661.  
  662. </div>
  663. {block:PostNotes}<Div style="width: 250px;">
  664.  
  665.  
  666. {PostNotes}</div>{/block:PostNotes}
  667. {/block:Posts}</div>
  668.  
  669.  
  670. <div id="credit">
  671. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  672. </div>
  673.  
  674.  
  675. <div id="askme" class="popup_block">
  676. <div id="poph1">ask</div>
  677. <iframe frameborder="0"
  678. height="190"
  679. id="ask_form"
  680. scrolling="no"
  681. src="https://www.tumblr.com/ask_form/sucksahoy.tumblr.com"
  682. width="250">
  683. </iframe>
  684. </div>
  685.  
  686. <div id="pop1" class="popup_block">
  687. <div id="left"><img src="https://i.imgur.com/30AuG2P.png" title="guidelines"></div>
  688. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  689. <div id="poph1">cupcake ipsum</div>
  690. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  691.  
  692. <div id="poph1">cupcake ipsum</div>
  693. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  694.  
  695. <div id="poph1">cupcake ipsum</div>
  696. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  697. <!--insert pop-up content html here for pop1
  698.  
  699. <div id="poph1">poph1</div> is the code for the special mini headers!!
  700. -->
  701. </div>
  702. </div>
  703.  
  704. <div id="pop2" class="popup_block">
  705. <div id="left"><img src="https://i.imgur.com/jEDbdqa.png" title="about"></div>
  706. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  707.  
  708. <!--insert pop-up content html here for pop2
  709.  
  710. <div id="poph1">poph1</div> is the code for the special mini headers!!
  711. -->
  712.  
  713. <div id="poph1">cupcake ipsum</div>
  714. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  715.  
  716. <div id="poph1">cupcake ipsum</div>
  717. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  718.  
  719. <div id="poph1">cupcake ipsum</div>
  720. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  721.  
  722. </div>
  723. </div>
  724.  
  725. <div id="pop3" class="popup_block">
  726. <div id="left"><img src="https://i.imgur.com/MRfbny0.png" title="verses"></div>
  727. <div style="height: 500px; overflow: auto; padding-right: 10px;">
  728. <!--insert pop-up content html here for pop3
  729.  
  730. <div id="poph1">poph1</div> is the code for the special mini headers!!
  731. -->
  732.  
  733. <div id="poph1">cupcake ipsum</div>
  734. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  735.  
  736. <div id="poph1">cupcake ipsum</div>
  737. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  738.  
  739. <div id="poph1">cupcake ipsum</div>
  740. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  741.  
  742. </div>
  743. </div>
  744.  
  745. <div id="pop4" class="popup_block">
  746. <div id="left"><img src="https://i.imgur.com/EXIhX6u.png" title="mains/exclusives"></div>
  747. <div style="height:500px; overflow: auto; padding-right: 10px;">
  748. <!--insert pop-up content html here for pop4
  749.  
  750. <div id="poph1">poph1</div> is the code for the special mini headers!!
  751. -->
  752.  
  753. <div id="poph1">cupcake ipsum</div>
  754. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  755.  
  756. <div id="poph1">cupcake ipsum</div>
  757. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  758.  
  759. <div id="poph1">cupcake ipsum</div>
  760. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  761.  
  762. </div>
  763. </div>
  764.  
  765.  
  766. <div id="pop5" class="popup_block">
  767. <div id="left"><img src="https://i.imgur.com/5lMk9hf.png" title="navigation"></div>
  768. <div style="height:500px; overflow: auto; padding-right: 10px;">
  769. <!--insert pop-up content html here for pop4
  770.  
  771. <div id="poph1">poph1</div> is the code for the special mini headers!!
  772. -->
  773.  
  774. <div id="navlinks"><a href="/">title</a></div>
  775. <div id="navlinks"><a href="/">title</a></div>
  776. <div id="navlinks"><a href="/">title</a></div>
  777. <div id="navlinks"><a href="/">title</a></div>
  778. <div id="navlinks"><a href="/">title</a></div>
  779. <div id="navlinks"><a href="/">title</a></div>
  780. <div id="navlinks"><a href="/">title</a></div>
  781. <div id="navlinks"><a href="/">title</a></div>
  782. <div id="navlinks"><a href="/">title</a></div>
  783. <div id="navlinks"><a href="/">title</a></div>
  784. <div id="navlinks"><a href="/">title</a></div>
  785.  
  786. </div>
  787. </div>
  788.  
  789.  
  790. </body>
  791.  
  792.  
  793.  
  794. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement