Advertisement
aryasnark

aryasnark - Theme 9

Feb 8th, 2014
6,338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.11 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!--
  6.  
  7. THEME 9 by ARYASNARK
  8.  
  9. Copyright © Aryasnark 2014 All Rights Reserved. No part of this website may be reproduced without my express consent.
  10.  
  11. -->
  12.  
  13. <head>
  14. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19.  
  20. <script type="text/javascript"
  21. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  22.  
  23.  
  24. <script>
  25. $(document).ready(function() {
  26. //When you click on a link with class of poplight and the href starts with a #
  27. $('a.poplight[href^=#]').click(function() {
  28. var popID = $(this).attr('rel'); //Get Popup Name
  29. var popURL = $(this).attr('href'); //Get Popup href to define size
  30. //Pull Query & Variables from href URL
  31. var query= popURL.split('?');
  32. var dim= query[1].split('&');
  33. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  34. //Fade in the Popup and add close button
  35. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img class="btn_close"/></a>');
  36. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  37. var popMargTop = ($('#' + popID).height() + 80) / 2;
  38. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  39. //Apply Margin to Popup
  40. $('#' + popID).css({
  41. 'margin-top' : -popMargTop,
  42. 'margin-left' : -popMargLeft
  43. });
  44. //Fade in Background
  45. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  46. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  47. return false;
  48. });
  49. //Close Popups and Fade Layer
  50. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  51. $('#fade , .popup_block').fadeOut(function() {
  52. $('#fade, a.close').remove(); //fade them both out
  53. });
  54. return false;
  55. });
  56. });
  57. </script>
  58.  
  59. <script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script>
  60. <script type="text/javascript">
  61. $(window).load(function () {
  62. $('#posts').masonry({
  63. itemSelector : ".entries",
  64. },
  65. function() { $('#posts').masonry({ appendedContent: $(this) }); }
  66. );
  67. });
  68. </script>
  69.  
  70. <meta name="color:background" content="#ffffff">
  71. <meta name="color:title" content ="#3b3b3b">
  72. <meta name="color:text" content="#3b3b3b">
  73. <meta name="color:tags" content="#3b3b3b">
  74. <meta name="color:tags hover" content="#3b3b3b">
  75. <meta name="color:link" content="#b8b8b8">
  76. <meta name="color:link hover" content="#3b3b3b">
  77. <meta name="color:sidelink" content="#3b3b3b">
  78. <meta name="color:sidelink hover" content="#3b3b3b">
  79. <meta name="color:border" content="#eeeeee">
  80. <meta name="color:scrollbar" content="#dddddd">
  81. <meta name="color:scrollbar bg" content="#ffffff">
  82.  
  83. <meta name="if:double" content="1"/>
  84. <meta name="if:single" content="0"/>
  85. <meta name="if:400px" content="1"/>
  86. <meta name="if:500px" content="0"/>
  87. <meta name="if:avatar" content="0"/>
  88. <meta name="text:username" content=""/>
  89. <meta name="text:ask title" content=""/>
  90. <meta name="text:link 1 title" content=""/>
  91. <meta name="text:link 2 title" content=""/>
  92. <meta name="text:link 3 title" content=""/>
  93.  
  94.  
  95. <style type="text/css">
  96.  
  97. ::-webkit-scrollbar {width:5px; height:auto; background:{color:scrollbar bg};}
  98. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  99. body {
  100. margin:0 auto;
  101. padding:0px;
  102. font-family:helvetica;
  103. font-size:10px;
  104. color:{color:text};
  105. background:{color:background};
  106. line height:150%;
  107. font-weight:lighter;
  108. }
  109.  
  110. a:link, a, a:active, a:visited {
  111. text-decoration:none;
  112. color:{color:link};
  113. }
  114.  
  115. a:hover {
  116. color:{color:link hover};
  117. text-decoration:underline;
  118. }
  119.  
  120. .text img {
  121. max-width:400px;
  122. height:auto;
  123. {block:if500px}
  124. max-width:500px;
  125. {/block:if500px}
  126. }
  127.  
  128.  
  129. h1 {
  130. font-size:18px;
  131. line-height:150%;
  132. text-align:left;
  133. font-weight:bold;
  134. text-transform:lowercase;
  135. padding:10px;
  136. }
  137.  
  138. #posts {
  139. width:1000px;
  140. margin-left:80px;
  141. margin-top:50px;
  142. position:absolute;
  143. {block:ifsingle}
  144. width:500px;
  145. margin-left:375px;
  146. {block:if500px}
  147. width:600px;
  148. margin-left:325px;
  149. {/block:if500px}
  150. {/block:ifsingle}
  151. }
  152.  
  153. .entries {
  154. margin:40px;
  155. float:left;
  156. width:400px;
  157. {block:ifsingle}
  158. {block:if500px}
  159. width:500px;
  160. {/block:if500px}
  161. {/block:ifsingle}
  162. }
  163.  
  164. #sidebar {
  165. float:left;
  166. margin:40px;
  167. width:400px;
  168. {block:ifsingle}
  169. {block:if500px}
  170. width:500px;
  171. {/block:if500px}
  172. {/block:ifsingle}
  173. }
  174.  
  175. {block:ifavatar}
  176. #icon {
  177. position:absolute;
  178. padding:10px;
  179. padding-top:13px;
  180. }
  181. {/block:ifavatar}
  182.  
  183. #blogtitle {
  184. margin-top:25px;
  185. min-height:28px;
  186. font-size:18px;
  187. line-height:150%;
  188. text-align:left;
  189. font-weight:bold;
  190. text-transform:lowercase;
  191. padding:10px;
  192. {block:ifavatar}
  193. margin-left:58px;
  194. {/block:ifavatar}
  195. background:{color:background};
  196. }
  197. #blogtitle a {
  198. text-decoration:none;
  199. color:{color:title};
  200. }
  201.  
  202. #description {
  203. padding:15px;
  204. line-height:150%;
  205. letter-spacing:0px;
  206. background:{color:border};
  207. }
  208.  
  209. #sidelinks {
  210. font-style:none;
  211. text-align:left;
  212. padding:5px;
  213. line-height:150%;
  214. background:{color:background};
  215. }
  216. #sidelinks a {
  217. text-decoration:none;
  218. color:{color:sidelink};
  219. }
  220.  
  221. #sidelinks a:hover {
  222. color:{color:sidelink hover};
  223. text-decoration:underline;
  224. }
  225.  
  226. #sideline {
  227. color:{color:sidelink};
  228. }
  229. #sideline:before {content: "";
  230. height:1px;
  231. width:40px;
  232. display:inline-block;
  233. margin-right:5px;
  234. margin-bottom:2px;
  235. background-color:{color:border};
  236. transition-duration: 0.6s;
  237. -moz-transition-duration: 0.6s;
  238. -webkit-transition-duration: 0.6s;
  239. -o-transition-duration: 0.6s;
  240. }
  241.  
  242. {block:IndexPage}
  243. .caption {
  244. opacity:0;
  245. background:white;
  246. top:0px;
  247. position:absolute;
  248. width:350px;
  249. {block:ifsingle}
  250. {block:if500px}
  251. width:450px;
  252. {/block:if500px}
  253. {/block:ifsingle}
  254. margin:15px;
  255. padding:10px;
  256. padding-top:0px;
  257. padding-bottom:0px;
  258. line-height:130%;
  259. margin-bottom:10px;
  260. transition-duration: 0.6s;
  261. -moz-transition-duration: 0.6s;
  262. -webkit-transition-duration: 0.6s;
  263. -o-transition-duration: 0.6s;
  264. }
  265.  
  266. .caption a {
  267. text-decoration:underline;
  268. }
  269.  
  270. .entries:hover .caption {
  271. opacity:0.9;
  272. transition-duration: 0.6s;
  273. -moz-transition-duration: 0.6s;
  274. -webkit-transition-duration: 0.6s;
  275. -o-transition-duration: 0.6s;
  276. }
  277. {/block:IndexPage}
  278.  
  279. {block:PermalinkPage}
  280. .caption {
  281. background:white;
  282. width:380px;
  283. padding:10px;
  284. line-height:130%;
  285. {block:ifsingle}
  286. {block:if500px}
  287. width:480px;
  288. {/block:if500px}
  289. {/block:ifsingle}
  290. }
  291.  
  292. .caption a {
  293. text-decoration:underline;
  294. }
  295. {/block:PermalinkPage}
  296.  
  297. blockquote {
  298. padding-left:10px;
  299. border-left:1px solid {color:border};
  300. margin-left:10px;
  301. }
  302.  
  303. .info {
  304. font-size:8px;
  305. font-style:none;
  306. letter-spacing:1px;
  307. line-height:150%;
  308. text-transform:none;
  309. margin-bottom:10px;
  310. padding:10px 5px 5px 5px;
  311. }
  312.  
  313. .info a {
  314. color:{color:text};
  315. padding:0px;
  316. text-decoration:none;
  317. }
  318. .info a:hover {
  319. color:{color:tags hover};
  320. text-decoration:underline;
  321. }
  322.  
  323. .playbutton {
  324. width:26px;
  325. height:26px;
  326. overflow:hidden;
  327. position:relative;
  328. opacity:1;
  329. z-index:100;
  330. }
  331.  
  332. .audiobox {
  333. width:400px;
  334. opacity:1;
  335. background:{color:border};
  336. {block:ifsingle}
  337. {block:if500px}
  338. width:500px;
  339. {/block:if500px}
  340. {/block:ifsingle}
  341. }
  342.  
  343. .audio {
  344. height:26px;
  345. width:26px;
  346. margin-left:187px;
  347. {block:ifsingle}
  348. {block:if500px}
  349. margin-left:237px;
  350. {/block:if500px}
  351. {/block:ifsingle}
  352. }
  353.  
  354. .audioimg{
  355. width:75px;
  356. height:75px;
  357. position:absolute;
  358. }
  359.  
  360. .audioimg img{
  361. margin-left:0px;
  362. float:left;
  363. opacity:1;
  364. width:75px;
  365. }
  366.  
  367. .audiodata {
  368. background:{color:background};
  369. font-size:8px;
  370. letter-spacing:2px;
  371. color:{color:text};
  372. padding:5px;
  373. text-transform:none;
  374. height:auto;
  375. width:400px;
  376. margin-bottom:5px;
  377. text-align:center;
  378. {block:ifsingle}
  379. {block:if500px}
  380. width:500px;
  381. {/block:if500px}
  382. {/block:ifsingle}
  383. }
  384.  
  385. .audiocaption {
  386. background:white;
  387. width:380px;
  388. padding:10px;
  389. {block:ifsingle}
  390. {block:if500px}
  391. width:480px;
  392. {/block:if500px}
  393. {/block:ifsingle}
  394. }
  395.  
  396. .quote {
  397. font-size:10px;
  398. font-style:none;
  399. text-align:center;
  400. letter-spacing:1px;
  401. line-height:150%;
  402. padding:10px;
  403. background:{color:border};
  404. }
  405.  
  406. #source {
  407. font-size:8px;
  408. text-transform:uppercase;
  409. letter-spacing:3px;
  410. text-align:center;
  411. padding:5px;
  412. background-color:#fff;
  413. }
  414.  
  415. #source a {
  416. color:{color:text};
  417. text-decoration:none;
  418. }
  419.  
  420. #source a:hover {
  421. text-decoration:underline;
  422. }
  423.  
  424. #asker {
  425. text-align:center;
  426. font-style:none;
  427. padding:10px;
  428. text-transform:uppercase;
  429. }
  430.  
  431. #asker a {
  432. font-size:8px;
  433. text-transform:uppercase;
  434. letter-spacing:3px;
  435. color:{color:text}
  436. text-decoration:none;
  437. }
  438. #asker a:hover {
  439. text-decoration:underline;
  440. }
  441.  
  442. #asked {
  443. text-align:center;
  444. font-size:10px;
  445. font-style:none;
  446. line-height:150%;
  447. padding:10px;
  448. background:{color:border};
  449. }
  450.  
  451. #answer {
  452. font-size:10px;
  453. font-style:none;
  454. text-align:left;
  455. letter-spacing:0px;
  456. padding:10px;
  457. }
  458.  
  459. #answer img {
  460. max-width:380px;
  461. {block:ifsingle}
  462. {block:if500px}
  463. width:480px;
  464. {/block:if500px}
  465. {/block:ifsingle}
  466. }
  467.  
  468. ol.notes {
  469. padding-bottom:2%;
  470. width:380px;
  471. list-style-type:lower-roman;
  472. text-align:left;
  473. font-size:9px;
  474. {block:ifsingle}
  475. {block:if500px}
  476. width:480px;
  477. {/block:if500px}
  478. {/block:ifsingle}
  479. }
  480.  
  481. ol.notes li.note{
  482. border-bottom:1px dotted {color:border};
  483. padding:2%;
  484. }
  485.  
  486. ol.notes li.note img.avatar{
  487. width:0px;
  488. height:0px;
  489. }
  490.  
  491. #fade {
  492. display: none;
  493. background: #fff;
  494. position: fixed;
  495. left: 0;
  496. top: 0;
  497. width: 100%;
  498. height: 100%;
  499. opacity: .90;
  500. z-index: 9999;
  501. }
  502.  
  503. .popup_block{
  504. display: none;
  505. background:transparent;
  506. padding: 20px;
  507. float: left;
  508. position: fixed;
  509. top: 50%;
  510. left: 50%;
  511. z-index: 99999;
  512. }
  513.  
  514. *html #fade {
  515. position: absolute;
  516. }
  517.  
  518. *html .popup_block {
  519. position: absolute;
  520. }
  521.  
  522. #credit {
  523. position:fixed;
  524. bottom:0px;
  525. right:0px;
  526. text-align:right;
  527. font-size:7px;
  528. letter-spacing:3px;
  529. opacity:1;
  530. width:200px;
  531. padding:10px;
  532. }
  533.  
  534. #credit a {
  535. text-decoration:none;
  536. }
  537.  
  538. #credit a:hover {
  539. text-decoration:underline;
  540. }
  541.  
  542. {block:ifdouble}
  543. #pagination {
  544. position:fixed;
  545. width:150px;
  546. padding:5px;
  547. right:70px;
  548. bottom:50px;
  549. font-size:22px;
  550. text-align:right;
  551. letter-spacing:1px;
  552. font-weight:bold;
  553. }
  554. {/block:ifdouble}
  555.  
  556. {block:ifsingle}
  557. #pagination {
  558. width:400px;
  559. margin-top:50px;
  560. margin-bottom:50px;
  561. text-align:center;
  562. letter-spacing:1px;
  563. font-weight:bold;
  564. margin-left:40px;
  565. font-size:22px;
  566. {block:if500px}
  567. width:500px;
  568. {/block:if500px}
  569. }
  570. {/block:ifsingle}
  571.  
  572. #pagination a {
  573. color:{color:link};
  574. text-decoration:none;
  575. }
  576.  
  577. #pagination a:hover {
  578. color:{color:link hover};
  579. }
  580.  
  581.  
  582. </style></head>
  583.  
  584.  
  585. <body>
  586.  
  587. <div id="posts">
  588. <!----- SIDEBAR ----->
  589.  
  590. <div id="sidebar">
  591. {block:ifavatar}
  592. <div id="icon"><img src="{PortraitURL-48}" /></div>
  593. {/block:ifavatar}
  594.  
  595. <div id="blogtitle"><a href="/">{Title}</a></div>
  596.  
  597. {block:Description}
  598. <div id="description">{Description}</div>
  599. {/block:Description}
  600.  
  601. <div id="sidelinks">
  602. <a href="/archive" id="sideline">archive</a>,
  603. <a href="#?w=500" rel="01" class="poplight">ask</a>
  604. {block:iflink1title}, <a href="#?w=500" rel="02" class="poplight">{text:link 1 title}</a>{/block:iflink1title}
  605. {block:iflink2title}, <a href="#?w=500" rel="03" class="poplight">{text:link 2 title}</a>{/block:iflink2title}
  606. {block:iflink3title}, <a href="#?w=500" rel="04" class="poplight">{text:link 3 title}</a>{/block:iflink3title}
  607. </div>
  608. </div>
  609.  
  610. <!----- ENTRIES ----->
  611.  
  612.  
  613. {block:Posts}
  614. <div class="entries">
  615.  
  616. {block:Text}
  617. {block:Title}
  618. <h1><a href="{Permalink}">{Title}</a></h1>
  619. {/block:Title}
  620. {Body}
  621. {/block:Text}
  622.  
  623.  
  624. {block:Photo}
  625. {block:if400px}
  626. <a href="{Permalink}"><img src="{PhotoURL-400}" alt="{PhotoAlt}"/></a>
  627. {/block:if400px}
  628. {block:if500px}
  629. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a>
  630. {/block:if500px}
  631.  
  632. {block:Caption}
  633. <div class="caption">{Caption}</div>
  634. {/block:Caption}
  635. {/block:Photo}
  636.  
  637.  
  638. {block:Photoset}
  639. {block:if400px}
  640. {Photoset-400}
  641. {/block:if400px}
  642. {block:if500px}
  643. {Photoset-500}
  644. {/block:if500px}
  645.  
  646. {block:Caption}
  647. <div class="caption">{Caption}</div>
  648. {/block:Caption}
  649. {/block:Photoset}
  650.  
  651.  
  652. {block:Quote}
  653. {block:Source}
  654. <div id="source">{Source}</div>
  655. {/block:Source}
  656.  
  657. <div class="quote">❝ {Quote} ❞</div>
  658. {/block:Quote}
  659.  
  660.  
  661. {block:Link}
  662. <h1><a href="{URL}" class="link" {Target}>{Name}</a></h1>
  663.  
  664. {block:Description}
  665. {Description}
  666. {/block:Description}
  667. {/block:Link}
  668.  
  669.  
  670. {block:Chat}
  671. {block:Title}<h1>{Title}</h1>{/block:Title}
  672.  
  673. {block:Lines}
  674. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  675. {/block:Lines}
  676. {/block:Chat}
  677.  
  678.  
  679. {block:Video}
  680. {block:if400px}
  681. {Video-400}
  682. {/block:if400px}
  683. {block:if500px}
  684. {Video-500}
  685. {/block:if500px}
  686.  
  687. {block:Caption}
  688. <div class="caption">{Caption}</div>
  689. {/block:Caption}
  690. {/block:Video}
  691.  
  692.  
  693. {block:Audio}
  694. <div class="audiodata"><font style="text-transform:uppercase">
  695.  
  696. {block:TrackName}
  697. {TrackName} -
  698. {/block:TrackName}
  699.  
  700. {block:Artist}
  701. {Artist}
  702. {/block:Artist}
  703.  
  704. <br><br><small><small>{PlayCountWithLabel}</small></small></font>
  705. </div>
  706.  
  707. <div class="audiobox"><div class="audio"><div class="playbutton"><center>{AudioPlayerWhite}</center>
  708. </div></div></div>
  709. <br>
  710.  
  711. {block:Caption}
  712. {block:ifshowcaptions}
  713. <span class="audiocaption">{Caption}</span>
  714. {/block:ifshowcaptions}
  715. {/block:Caption}
  716. {/block:Audio}
  717.  
  718.  
  719. {block:Answer}
  720. <div id="asker">{Asker}</div>
  721. <div id="asked">{Question}</div>
  722. <div id="answer">{Answer}</div>
  723. {/block:Answer}
  724.  
  725.  
  726. <!----- DATE/NOTES/TAGS ----->
  727.  
  728. {block:IndexPage}
  729. <div class="info" id="sideline"><b><a href="{Permalink}">{block:Date}{DayofMonth}.{MonthNumberwithZero}.{ShortYear}{/block:Date}</a></b>
  730. {block:HasTags}&nbsp;&nbsp;&nbsp;{block:Tags}#<a href="/tagged/{Tag}">{Tag}</a>&nbsp;&nbsp;&nbsp;{/block:Tags}{/block:HasTags}
  731. </div>
  732. {/block:IndexPage}
  733.  
  734.  
  735. {block:PermalinkPage}
  736. <div class="info">{block:Date}Posted on the {DayOfMonth}{DayOfMonthSuffix} of {Month}, {Year}{/block:Date}&nbsp;{block:NoteCount}with {NoteCountwithLabel}{/block:NoteCount}<br>
  737. {block:ContentSource}by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  738. <br>
  739. {block:HasTags}{block:Tags}#<a href="/tagged/{Tag}">{Tag}</a>&nbsp;&nbsp;&nbsp;{/block:Tags}{/block:HasTags}
  740.  
  741. </div>
  742. {/block:PermalinkPage}
  743.  
  744.  
  745. </div>
  746.  
  747. {/block:Posts}
  748.  
  749. {block:PermalinkPage}
  750. {block:PostNotes}
  751. <div id="notes">{PostNotes}</div>
  752. {/block:PostNotes}
  753. {/block:permalinkpage}
  754.  
  755. {block:ifsingle}
  756. {block:IndexPage}
  757. <div id="pagination">
  758. {block:Pagination}
  759. {block:PreviousPage}
  760. <a href="{PreviousPage}">&lang;</a>&nbsp;&nbsp;&nbsp;&nbsp;
  761. {/block:PreviousPage}
  762. {block:NextPage}
  763. &nbsp;&nbsp;&nbsp;&nbsp;<a href="{NextPage}">&rang;</a>
  764. {/block:NextPage}
  765. {/block:Pagination}
  766. </div>
  767. {/block:IndexPage}
  768. {/block:ifsingle}
  769.  
  770. </div>
  771.  
  772. {block:ifdouble}
  773. {block:IndexPage}
  774. <div id="pagination">
  775. {block:Pagination}
  776. {block:PreviousPage}
  777. <a href="{PreviousPage}">&lang;</a>&nbsp;&nbsp;&nbsp;&nbsp;
  778. {/block:PreviousPage}
  779. {block:NextPage}
  780. &nbsp;&nbsp;&nbsp;&nbsp;<a href="{NextPage}">&rang;</a>
  781. {/block:NextPage}
  782. {/block:Pagination}
  783. </div>
  784. {/block:IndexPage}
  785. {/block:ifdouble}
  786.  
  787. <div id="credit">
  788. <a href="https://aryasnark.tumblr.com">©</a>
  789. </div>
  790.  
  791.  
  792.  
  793.  
  794. <!----- POP-UP LINKS CONTENT ----->
  795.  
  796. <div id="01" class="popup_block">
  797. <h1>{text:ask title}</h1>
  798. <iframe frameborder="0" border="0" scrolling="no" width="100%" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/{text:username}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  799. </div></div></div></div></div></div></div></div></div></div>
  800.  
  801.  
  802. <div id="02" class="popup_block">
  803. <h1>TITLE</h1>
  804. TEXT
  805. </div>
  806. </div></div></div></div></div></div></div></div></div></div>
  807.  
  808.  
  809. <div id="03" class="popup_block">
  810. <h1>TITLE</h1>
  811. TEXT
  812. </div>
  813. </div></div></div></div></div></div></div></div></div></div>
  814.  
  815.  
  816. <div id="04" class="popup_block">
  817. <h1>TITLE</h1>
  818. TEXT
  819. </div>
  820. </div></div></div></div></div></div></div></div></div></div>
  821.  
  822. </body>
  823. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement