Advertisement
kngroo

Untitled

Oct 26th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <link href="https://fonts.googleapis.com/css?family=Caveat+Brush" rel="stylesheet">
  5.  
  6. <script type="text/javascript"
  7. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  8. <script>
  9. $(document).ready(function() {
  10. //
  11. $('a.poplight[href^=#]').click(function() {
  12. var popID = $(this).attr('rel'); //Get Popup Name
  13. var popURL = $(this).attr('href'); //Get Popup href to define size
  14. var query= popURL.split('?');
  15. var dim= query[1].split('&');
  16. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  17. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  18. var popMargTop = ($('#' + popID).height() + 80) / 2;
  19. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  20. //Apply Margin to Popup
  21. $('#' + popID).css({
  22. 'margin-top' : -popMargTop,
  23. 'margin-left' : -popMargLeft
  24. });
  25. $('body').append('<div id="fade"></div>');
  26. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  27. return false;
  28. });
  29. $('a.close, #fade').live('click', function() {
  30. $('#fade , .popup_block').fadeOut(function() {
  31. $('#fade, a.close').remove(); //fade them both out
  32. });
  33. return false;
  34. });
  35. });
  36. </script>
  37.  
  38. <!----------- BASE CODE by clumhood :> ------------>
  39.  
  40. <title>뚱빠천사</title>
  41. <link rel="shortcut icon" href="http://65.media.tumblr.com/tumblr_mc5uzctCsY1roozkr.gif">
  42. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  43. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  44.  
  45.  
  46. <!--------DEFAULT VARIABLES-------->
  47.  
  48. <meta name="color:background" content="#ffffff"/>
  49. <meta name="color:text" content="#000000"/>
  50. <meta name="color:links" content="#626262"/>
  51. <meta name="color:links hover" content="#a5a5a5"/>
  52. <meta name="color:question" content="#f8f8f8"/>
  53. <meta name="color:scrollbar" content="#000000"/>
  54. <meta name="color:scrollbar background" content="#ffffff"/>
  55.  
  56. <meta name="image:sidebar" content=""/>
  57.  
  58. <meta name="text:link 1 title" content="link 1"/>
  59. <meta name="text:link 1 url" content=""/>
  60. <meta name="text:link 2 title" content="link 2"/>
  61. <meta name="text:link 2 url" content=""/>
  62. <meta name="text:link 3 title" content="link 3"/>
  63. <meta name="text:link 3 url" content=""/>
  64.  
  65. <!----------------SCRIPTS---------------->
  66.  
  67. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  68. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  69. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  70. <script>
  71. (function($){
  72. $(document).ready(function(){
  73. $("[title]").style_my_tooltips({
  74. tip_follows_cursor:true,
  75. tip_delay_time:200,
  76. tip_fade_speed:300
  77. });
  78. });
  79. })(jQuery);
  80. </script>
  81.  
  82. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  83.  
  84. <style type="text/css">
  85.  
  86. /*---POPUP---*/
  87.  
  88. .popup_block{
  89. display:none;
  90. background:#fff;
  91. padding:20px;
  92. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  93. float:left;
  94. position:fixed;
  95. top:50%;left:50%;
  96. z-index: 99999;
  97. }
  98.  
  99. *html #fade {position: absolute;}
  100. *html .popup_block {position: absolute;}
  101. #fade {
  102. display:none;
  103. position:fixed;
  104. left:0px;
  105. top:0px;
  106. width:100%;
  107. height:100%;
  108. z-index:9999;
  109. background:#fff; /* change to #fff for solid white */
  110. opacity:0.8; /* change to opacity:1; */
  111. }
  112.  
  113. .boom{
  114. color:#fff;
  115. font-size:35px;
  116. font-family: 'Caveat Brush', cursive;
  117. text-transform:lowercase;
  118. color: #000;
  119. }
  120.  
  121. /*---MUSIC PLAYER---*/
  122.  
  123. #box{
  124. overflow:hidden;
  125. position:fixed;
  126. text-align:center;
  127. width:39px;
  128. height:39px;
  129. bottom:169px; /* You can change the number or change it to bottom*/
  130. left:134px; /* You can change the number or change it to right*/
  131. background:#f8f8f8; /* This is the background color */
  132. z-index:999;
  133. }
  134.  
  135. #icon{
  136. /* This is for the positioning of the music gif: */
  137. margin-top:11px;
  138. margin-left:0px;
  139. -webkit-transition: all 0.5s linear;
  140. -moz-transition: all 0.5s linear;
  141. transition: all 0.5s linear;
  142. }
  143.  
  144. #box:hover #icon{
  145. margin-top:-20px;
  146. -webkit-transition: all 0.5s linear;
  147. -moz-transition: all 0.5s linear;
  148. transition: all 0.5s linear;
  149. }
  150.  
  151. #musicbox{
  152. width:8px;
  153. height:8px;
  154. overflow:hidden;
  155. /* This is for the positioning of the music player: */
  156. margin-top:14px;
  157. margin-left:15px;
  158. }
  159.  
  160. #music{
  161. margin-top:-6px;
  162. margin-left:-35px;
  163. }
  164.  
  165. /*---BORDER---*/
  166.  
  167. #bottom {
  168. position:fixed;
  169. left:0px;
  170. bottom:0;
  171. width:100%;
  172. height:24px;
  173. background:#fff;
  174. z-index:0;}
  175.  
  176. /*---TEXT SELECTION---*/
  177.  
  178. ::selection {
  179. background: #8ca2b0;
  180. color: #fff;
  181. }
  182. ::-moz-selection {
  183. background: #8ca2b0;
  184. color: #fff;
  185. }
  186.  
  187.  
  188. /*----------SCROLLBAR---------*/
  189.  
  190. ::-webkit-scrollbar {
  191. background-color: #fff;
  192. border:1px solid #eee;
  193. height:8px;
  194. width:5px;
  195. }
  196.  
  197. ::-webkit-scrollbar-thumb:vertical {
  198. background-color:#ddd;
  199. height:50px;
  200. }
  201.  
  202. ::-webkit-scrollbar-thumb:horizontal {
  203. background-color:#ddd;
  204. height:8px;
  205. }
  206.  
  207. /*----------TOOLTIPS---------*/
  208.  
  209. #s-m-t-tooltip {
  210. max-width:300px;
  211. margin:15px;
  212. padding:5px;
  213. border-radius:0px;
  214. background:#fff;
  215. border:1px solid #eee;
  216. color:#888;
  217. z-index:999999;
  218. font-size:7px;
  219. font-style:none;
  220. letter-spacing:2px;
  221. font-family:arial;
  222. text-transform:uppercase;
  223. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  224. }
  225.  
  226. /*----------BASICS---------*/
  227.  
  228. body {
  229. background:#f8f8f8;
  230. color:#000;
  231. font-family:arial;
  232. font-size:11px;
  233. line-height:150%;
  234. margin:0;
  235. cursor:crosshair;
  236. text-align:left;
  237. }
  238.  
  239.  
  240. a {
  241. color:#607db2;
  242. cursor:help;
  243. text-decoration:none;
  244. }
  245.  
  246. a:hover {
  247. color:#fff;
  248. transition:1s;
  249. -webkit-transition:1s;
  250. -moz-transition:1s;
  251. -o-transition:1s;
  252. }
  253.  
  254. img {
  255. opacity:1;
  256. text-decoration:none;
  257. }
  258.  
  259. h1 {
  260. font-size:14px;
  261. font-weight:bold;
  262. font-family:arial;
  263. line-height:150%;
  264. text-transform:uppercase;
  265. }
  266.  
  267. blockquote {
  268. padding-left:10px;
  269. margin:10px;
  270. border-left:1px solid #eee;
  271. }
  272.  
  273. /*----------SIDEBAR---------*/
  274.  
  275. .sidebar {
  276. position:fixed;
  277. bottom:120px;
  278. width:370px;
  279. padding:10px;
  280. background:#fff;
  281. margin-left:125px;
  282. padding-bottom:15px;
  283. z-index:9;
  284. }
  285.  
  286. .title {
  287. font-size:61px;
  288. color:#fff;
  289. text-transform:uppercase;
  290. font-weight:bold;
  291. margin-top:120px;
  292. margin-left:-168px;
  293. width:250px;
  294. transform: rotate(-90deg);
  295. -ms-transform: rotate(-90deg);
  296. -webkit-transform: rotate(-90deg);
  297. -o-transform: rotate(-90deg);
  298. -moz-transform: rotate(-90deg);
  299.  
  300. }
  301.  
  302. .subtitle {
  303. font-size:28px;
  304. color:#eee;
  305. text-transform:uppercase;
  306. font-weight:bold;
  307. margin-top:17px;
  308. margin-left:3px;
  309. width:500px;
  310. }
  311.  
  312. .description {
  313. width:120px;
  314. background:#f8f8f8;
  315. padding:12px;
  316. text-align:justify;
  317. margin-top:-135px;
  318. margin-left:155px;
  319. }
  320.  
  321. .links {
  322. margin-top:57px;
  323. margin-left:-120px;
  324. position:fixed;
  325. width:500px;
  326. text-align:right;
  327. font-size:10px;
  328. text-transform:lowercase;
  329. }
  330.  
  331. .links a{
  332. margin-bottom:1px;
  333. display:inline-block;
  334. background:#fff;
  335. width:70px;
  336. height:15px;
  337. padding:2.8px;
  338. -webkit-transition: all 0.6s ease-in-out;
  339. -moz-transition: all 0.6s ease-in-out;
  340. -o-transition: all 0.6s ease-in-out;
  341. -ms-transition: all 0.6s ease-in-out;
  342. transition: all 0.6s ease-in-out;
  343. }
  344.  
  345. .links a:hover {
  346. background:#eee;
  347. }
  348.  
  349.  
  350. .nowplaying {
  351. width:106px;
  352. height:36px;
  353. background:#f8f8f8;
  354. padding:2px;
  355. text-align:justify;
  356. margin-top:5px;
  357. margin-left:40px;
  358. }
  359.  
  360. .bae {
  361. margin-top:26px;
  362. margin-left:-1px;
  363. width:145px;
  364. height:45px;
  365. border:3px solid #000;
  366. }
  367.  
  368. .bae img {
  369.  
  370. width:145px;
  371. height:45px;
  372. }
  373.  
  374.  
  375. .collect {
  376. margin-top:3px;
  377. margin-left:-1px;
  378. position:fixed;
  379. width:151px;
  380. text-align:right;
  381. font-size:10px;
  382. text-transform:lowercase;
  383. }
  384.  
  385. .collect a{
  386. margin-bottom:1px;
  387. display:inline-block;
  388. background:#1f3171;
  389. width:42px;
  390. height:12px;
  391. padding:4.1px;
  392. -webkit-transition: all 0.6s ease-in-out;
  393. -moz-transition: all 0.6s ease-in-out;
  394. -o-transition: all 0.6s ease-in-out;
  395. -ms-transition: all 0.6s ease-in-out;
  396. transition: all 0.6s ease-in-out;
  397. }
  398.  
  399. .collect a:hover {
  400. background:#fff;
  401. }
  402.  
  403. .boop {
  404. margin-top:-200px;
  405. margin-left:-1px;
  406. width:151px;
  407. height:78px;
  408. }
  409.  
  410. .boop img {
  411.  
  412. width:151px;
  413. height:78px;
  414. }
  415.  
  416. /*----------POSTS---------*/
  417.  
  418. .entries {
  419. margin-left:720px;
  420. margin-top:50px;
  421. margin-bottom:60px;
  422. width:400px;
  423. }
  424.  
  425. .posts {
  426. background:#fff;
  427. padding:5px;
  428. width:400px;
  429. margin-bottom:70px;
  430. }
  431.  
  432. /*----------PAGINATION---------*/
  433.  
  434. .jump_page {
  435. padding: 5px 5px;
  436. color:#000;
  437. font-family:century gothic;
  438. font-size:11px;
  439. text-decoration:none;
  440. margin-bottom:70px;
  441. }
  442.  
  443. .current_page, .jump_page:hover {
  444. padding: 5px 5px;
  445. color: #000;
  446. font-style:bold;
  447. font-family:century gothic;
  448. font-size:11px;
  449. text-decoration:none;
  450. margin-bottom:70px;
  451. }
  452.  
  453.  
  454. /*----------QUOTE---------*/
  455.  
  456. .quote {
  457. padding:10px;
  458. font-size:15px;
  459. }
  460.  
  461. .quotesource {
  462. padding:10px;
  463. text-align:center;
  464. }
  465.  
  466. /*----------CHAT---------*/
  467.  
  468. .chat {
  469. line-height:150%;
  470. list-style:none;
  471. }
  472.  
  473. .line.odd {
  474. padding:10px;
  475. background:#000;
  476. }
  477.  
  478. .line.even {
  479. padding:10px;
  480. }
  481.  
  482. .label {
  483. text-transform:uppercase;
  484. font-size:10px;
  485. letter-spacing:1px;
  486. font-weight:bold;
  487. }
  488.  
  489. /*----------AUDIO---------*/
  490.  
  491. .cover {
  492. position:relative;
  493. z-index:1;
  494. max-width:100px;
  495. padding:10px;
  496. float:left;
  497. }
  498.  
  499. .playbutton {
  500. width:20px;
  501. height:30px;
  502. overflow:hidden;
  503. position:relative;
  504. z-index:2;
  505.  
  506. }
  507.  
  508.  
  509. .playbox {
  510. background-color:#000;
  511. position:absolute;
  512. z-index:2;
  513. padding:15px 24px 13px 16px;
  514. margin-top:30px;
  515. margin-left:30px;
  516. opacity:0.5;
  517. }
  518.  
  519. .trackdetails {
  520. padding:10px;
  521. width:auto;
  522. height:100px;
  523. margin-top:10px;
  524. margin-left:100px;
  525. }
  526.  
  527. /*----------ASK---------*/
  528.  
  529.  
  530. .question{
  531. background:#eaeefa;
  532. padding-left:15px;
  533. margin-left:45px;
  534. padding:10px;
  535. margin-bottom:20px;
  536. }
  537.  
  538. img.ask{
  539. width:38px;
  540. border-radius:100%;
  541. height:38px;
  542. float:left;
  543. }
  544.  
  545. /*----------INFO---------*/
  546.  
  547. .info {
  548. padding:10px;
  549. text-transform:uppercase;
  550. background:#fff;
  551. border-bottom:1px solid #eee;
  552. width:390px;
  553. margin-top:15px;
  554. }
  555.  
  556.  
  557. .tags {
  558. background:#f8f8f8;
  559. padding:6px;
  560. margin-top:-5px;
  561. }
  562.  
  563. .tags a {
  564. margin-right:10px;
  565. letter-spacing:1px;
  566. }
  567.  
  568. /*----------POST NOTES---------*/
  569.  
  570. ol.notes {
  571. padding:0px;
  572. margin:25px 0px 0px -10px;
  573. list-style-type:none;
  574. }
  575.  
  576. ol.notes li.note {
  577. padding:10px;
  578. }
  579.  
  580. ol.notes li.note img.avatar {
  581. vertical-align:-4px;
  582. margin-right:10px;
  583. width:16px;
  584. height:16px;
  585. }
  586.  
  587. ol.notes li.note span.action {
  588. font-weight:none;
  589. }
  590.  
  591. ol.notes li.note .answer_content {
  592. font-weight:normal;
  593. }
  594.  
  595. ol.notes li.note blockquote {
  596. padding:4px 10px;
  597. margin:10px 0px 0px 25px;
  598. }
  599.  
  600. ol.notes li.note blockquote a {
  601. text-decoration:none;
  602. }
  603.  
  604. </style>
  605. </head>
  606.  
  607. <body>
  608.  
  609. <div id="box"><div id="icon">
  610. <img src="http://www.humandesigncollege.org/images/audio.png"/>
  611. </div>
  612. <div id="musicbox"><div id="music">
  613.  
  614. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_multi.swf" width="200" height="100">
  615. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_multi.swf" />
  616. <param name="bgcolor" value="#ffffff" />
  617. <param name="FlashVars" value="mp3=https%3A//a.tumblr.com/tumblr_o9jxz9iRaY1tskugyo1.mp3&amp;volume=25&amp;autoplay=1&amp;loop=1&amp;buttoncolor=888888&amp;buttonovercolor=000000&amp;textcolor=888888" />
  618. </object>
  619.  
  620. </div></div></div>
  621.  
  622. <div id="bottom"></div>
  623.  
  624. <img src="https://66.media.tumblr.com/ecc35ee322494f6180311292c329f522/tumblr_oa9rgkBWoH1ukpfe0o2_1280.png" height=222 style='position:fixed;bottom:120px;left:438px;z-index:999'/>
  625.  
  626. <div class="sidebar">
  627. <div class="title">EST.1990</div>
  628. <div class="description">CHA HAKYEON, ( born on June 30th, 1990 ) better known by his stage name N, is the leader and the main dancer of a conceptual idol group, VIXX. He is also an actor, a presenter, and a former radio host, signed under Jellyfish Entertainment.</div>
  629.  
  630. <div class="links">
  631. <a title="hover" href="/"></a>
  632. <a title="hover" href="/"></a>
  633. <a title="hover" href="/"></a>
  634. <a title="hover" href="/"></a>
  635. <a title="hover" href="http://clumhood.tumblr.com/"></a>
  636. </div>
  637.  
  638. <div class="boop">
  639. <a title="get to know me?" href="/PRO필"><img src="https://67.media.tumblr.com/c7b79a0448f68609a7ca6743536d9487/tumblr_oa9zhb1Hki1ukpfe0o1_500.png"></a>
  640. </div>
  641.  
  642. <div class="collect">
  643. <a href="/" style="opacity:0.8;"></a><a href="/" style="opacity:0.6;"></a><a href="/" style="opacity:0.4;"></a>
  644. </div>
  645.  
  646. <div class="bae">
  647. <a title="REAL VIXX" href="#?w=300" rel="brothers" class="poplight">
  648. <img src="https://67.media.tumblr.com/f29dfdaac9154e56968931a0532ff7d3/tumblr_oa9v35avGB1ukpfe0o1_500.png"></a>
  649. </div>
  650.  
  651. <div class="nowplaying">
  652. <center>MOONLIGHT</center>
  653. <center><b>BY VIXX</b></center>
  654. </div>
  655.  
  656. <div class="subtitle">MADE IN <a title="hover">CH</a><a title="hover">A</a><a title="hover">NG</a><a title="hover">WO</a><a title="hover">N</a></div>
  657. </div>
  658.  
  659. <div class="entries">
  660.  
  661. {block:Posts}
  662. <div class="info">
  663. {block:Date}
  664. <b><i class="fa fa-clock-o" aria-hidden="true"></i> <a style="color:#000;" href="{Permalink}" title="{Month} {DayOfMonth}{DayOfMonthSuffix}">{TimeAgo}</b></a>
  665. {/block:Date}
  666.  
  667. &nbsp;&nbsp;
  668.  
  669. <i class="fa fa-retweet"></i> <a style="color:#000;" href="{ReblogURL}" target="_blank" class="details">REBLOG</a>
  670.  
  671. <font style="float:right">
  672. <a style="color:#000;" href="{Permalink}">{NoteCount} N</a>
  673. </font style>
  674.  
  675. </div>
  676. <div class="posts">
  677.  
  678.  
  679. {block:Text}
  680. <h1>{block:Title}{Title}{/block:Title}</h1>
  681. {Body}{/block:Text}
  682.  
  683.  
  684. {block:Photo}
  685. {LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}
  686. {block:Caption}{Caption}{/block:Caption}
  687. {/block:Photo}
  688.  
  689.  
  690. {block:Photoset}
  691. {Photoset-400}
  692. {block:Caption}{Caption}{/block:Caption}
  693. {/block:Photoset}
  694.  
  695.  
  696. {block:Quote}
  697. <div class="quote">"{Quote}"</div>
  698. {block:Source}<div class="quotesource"> — {Source}</div>
  699. {/block:Source}{/block:Quote}
  700.  
  701.  
  702. {block:Link}
  703. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  704. {block:Description}{Description}{/block:Description}
  705. {/block:Link}
  706.  
  707.  
  708. {block:Chat}
  709. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  710. {/block:Chat}
  711.  
  712.  
  713. {block:Audio}
  714.  
  715. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  716.  
  717. {block:AlbumArt}
  718. <img src="{AlbumArtURL}" class="cover">
  719. {/block:AlbumArt}
  720.  
  721.  
  722. <div class="trackdetails"><br>
  723. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  724.  
  725. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  726.  
  727. <b>PLAYS:</b> {FormattedPlayCount}</div>
  728.  
  729.  
  730. {block:Caption}
  731. <div class="caption">{Caption}</div>
  732. {/block:Caption}
  733. {/block:Audio}
  734.  
  735.  
  736. {block:Video}
  737. {Video-400}
  738. {block:Caption}{Caption}{/block:Caption}
  739. {/block:Video}
  740.  
  741.  
  742. {block:Answer}
  743. <img src="{AskerPortraitURL-128}" style="border-radius:100px;" class="ask">
  744. <div class="question">{Question}</div><div class="a">{Answer}</div>
  745. {/block:Answer}
  746.  
  747. <div class="tags">
  748. <b><i class="fa fa-floppy-o" aria-hidden="true"></i> SAVED UNDER: </b>{block:HasTags}
  749. {block:Tags}
  750. <a style="color:#000;" href="{TagURL}">{Tag}</a>
  751. {/block:Tags}
  752. {/block:HasTags}
  753. </div>
  754. </div>
  755.  
  756.  
  757. {block:PostNotes}
  758. {PostNotes}
  759. {/block:PostNotes}
  760.  
  761. {/block:Posts}
  762.  
  763. {block:ContentSource}
  764. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  765. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  766. {/block:SourceLogo}
  767. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  768. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  769.  
  770. <div class="pagination"><center>
  771. {block:Pagination}
  772. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  773. {block:JumpPagination length="5"}
  774. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  775. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  776. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  777. {/block:Pagination}</center>
  778. </div>
  779. </body>
  780.  
  781. <div id="brothers" class="popup_block">
  782.  
  783. <div class="boom">
  784. <center>TITLE HERE</center>
  785. </div>
  786. WHATEVER YOU WANNA PUT HERE
  787. </div>
  788.  
  789. </div>
  790.  
  791. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement