Advertisement
alicescreed

truedeaths

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