Advertisement
quoc9x

Untitled

Sep 22nd, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.06 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  7. <script>
  8. (function($){
  9. $(document).ready(function(){
  10. $("[title]").style_my_tooltips({
  11. tip_follows_cursor:true,
  12. tip_delay_time:200,
  13. tip_fade_speed:300
  14. }
  15. );
  16. });
  17. })(jQuery);
  18. </script>
  19.  
  20. <title>{Title}</title>
  21. <link rel="shortcut icon" href="{Favicon}">
  22. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  23. {block:Description}
  24. <meta name="description" content="{MetaDescription}" />
  25. {/block:Description}
  26.  
  27. <meta name="image:background" content="" />
  28. <meta name="image:sidebar" content="" />
  29.  
  30. <meta name="color:background" content="#f7f7f7" />
  31. <meta name="color:posts" content="#fff" />
  32. <meta name="color:text" content="#444" />
  33. <meta name="color:links" content="#C44A3B" />
  34. <meta name="color:link hover" content="#eee" />
  35. <meta name="color:italics" content="#777" />
  36. <meta name="color:bold" content="#111" />
  37. <meta name="color:border" content="#ddd" />
  38. <meta name="color:scrollbar" content="#222" />
  39. <meta name="color:tooltip" content="#222" />
  40. <meta name="color:tooltip text" content="#fff" />
  41. <meta name="color:current page" content="#fff" />
  42. <meta name="color:jump page" content="#fff" />
  43. <meta name="color:jump page hover" content="#aaa" />
  44. <meta name="color:jump page hover text" content="#000" />
  45.  
  46. <meta name="text:link1" content="un" />
  47. <meta name="text:url1" content="/url" />
  48. <meta name="text:link2" content="deux" />
  49. <meta name="text:url2" content="/url" />
  50. <meta name="text:link3" content="trois" />
  51. <meta name="text:url3" content="/url" />
  52. <meta name="text:link4" content="quatre" />
  53. <meta name="text:url4" content="/url" />
  54. <meta name="text:current page" content="X" />
  55. <meta name="text:about" content="about goes here" />
  56.  
  57. <meta name="if:full background" content="" />
  58.  
  59. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  60. <script type="text/javascript"
  61. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  62. <script>
  63. $(document).ready(function() {
  64. //
  65. $('a.poplight[href^=#]').click(function() {
  66. var popID = $(this).attr('rel'); //Get Popup Name
  67. var popURL = $(this).attr('href'); //Get Popup href to define size
  68. var query= popURL.split('?');
  69. var dim= query[1].split('&');
  70. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  71. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://38.media.tumblr.com/30853fe6c9b10e246922a5953db4d1a0/tumblr_inline_nl8j0gMXwf1ry72eo.gif" class="btn_close" title="escape" alt="escape" /></a>');
  72. var popMargTop = ($('#' + popID).height() + 80) / 2;
  73. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  74. //Apply Margin to Popup
  75. $('#' + popID).css({
  76. 'margin-top' : -popMargTop,
  77. 'margin-left' : -popMargLeft
  78. });
  79. $('body').append('<div id="fade"></div>');
  80. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  81. return false;
  82. });
  83. $('a.close, #fade').live('click', function() {
  84. $('#fade , .popup_block').fadeOut(function() {
  85. $('#fade, a.close').remove(); //fade them both out
  86. });
  87. return false;
  88. });
  89. });
  90. </script>
  91.  
  92.  
  93. <script>
  94. $(document).ready(function(){
  95. tumblrNotesLoaded(notes_html);
  96. tumblrNotesInserted();
  97. });
  98.  
  99. </script>
  100. </head>
  101.  
  102. <style type="text/css">
  103.  
  104.  
  105.  
  106. #fade { /*--Transparent background layer--*/
  107. display: none; /*--hidden by default--*/
  108. background: #fff;
  109. background-image: url('');
  110. position: fixed; left: 0; top: 0;
  111. width: 100%; height: 100%;
  112. opacity: .80;
  113. z-index: 9999;
  114. }
  115.  
  116. .popup_block{
  117. display: none; /*--hidden by default--*/
  118. background: #fff;
  119. padding: 20px;
  120. border: 2px solid {color:border};
  121. float: left;
  122. font-size: 12px;
  123. position: fixed;
  124. top: 50%; left: 50%;
  125. z-index: 99999;
  126. /*--CSS3 Box Shadows--*/
  127.  
  128. box-shadow: 10px 10px 0px rgba(50, 50, 50, .2);
  129. }
  130. img.btn_close {
  131. float: right;
  132. margin: -5px -5px 0 0;
  133. }
  134. /*--Making IE6 Understand Fixed Positioning--*/
  135. *html #fade {
  136. position: absolute;
  137. }
  138. *html .popup_block {
  139. position: absolute;
  140. }
  141.  
  142. #pagination { text-align:center; font-size:20px; bottom:20px; position:relative; }
  143. #pagination a{text-decoration:none}
  144.  
  145. .jump_page {margin-top:10px;
  146. padding: 4px 8px;
  147. color:{color:Link};
  148. background:{color:posts};
  149. font-size:12px;
  150. text-decoration:none; transition:.6s ease-in-out;
  151.  
  152. }
  153.  
  154. .chat {
  155. padding:5px;
  156. line-height:150%;
  157. }
  158.  
  159. .chat:nth-of-type(odd) {
  160. color:{color:text};
  161. -webkit-transition:.5s;
  162. transition:.5s; }
  163.  
  164. .chat:nth-of-type(odd) b {
  165. color:{color:text};
  166. -webkit-transition:.5s;
  167. transition:.5s; }
  168.  
  169. .chat:nth-of-type(even) {
  170. background:#aaa;
  171. color:{color:text};
  172. -webkit-transition:.5s;
  173. transition:.5s; }
  174. .chat:nth-of-type(even) b{
  175. color:{color:text};
  176. -webkit-transition:.5s;
  177. transition:.5s; }
  178.  
  179.  
  180. .jump_page a{font-size:12px;}
  181. .jump_page:hover{ background:{color:border};transition:.6s;border-bottom:1px solid {color:link hover};}
  182. .jump_page:hover a{color:{color:posts}; }
  183.  
  184. .current_page{margin-top:10px;
  185. padding: 4px 8px;
  186.  
  187. color: {color:link hover};
  188. font-size:12px;
  189. background:{color:posts};
  190. text-decoration:none;
  191. }
  192. .about{border:1px solid {color:border}; width:500px; padding:10px; font-size:16px; height:100px; overflow:auto;}
  193. .linklist{position:absolute; width:700px; bottom:18px;}
  194. .linklist li{list-style:none; display:inline-block; margin-left:100px;}
  195. .linklist li a{padding:4px; border:1px solid {color:border}; font-size:16px;}
  196.  
  197. #egg { opacity:.8;left:10px; bottom:10px; position:fixed;bottom:4px;display:block; width: 14px; height: 18px; background-color:#FFFEFC; -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  198. font-family: "bitxmap";
  199. border:2px solid #aaa;
  200.  
  201. }
  202. #egg:hover { animation-name: egg;
  203. animation-duration: 1s;
  204. animation-iteration-count: infinite;}
  205. @keyframes egg{
  206. 0%{}
  207. 10%{transform:rotate(20deg)}
  208. 80%{transform:rotate(-20deg)}
  209. 100%{}
  210. }
  211.  
  212.  
  213.  
  214. #s-m-t-tooltip{
  215. max-width:300px;
  216. margin-top:-50px;
  217. margin-left:-20px;
  218.  
  219. border:2px solid white;
  220. box-shadow: 0px 0px 0px 2px {color:tooltip};
  221. font-family:consolas;
  222. padding:5px 5px;
  223. background:{color:tooltip}; /*if you're changing the color in the code, make sure this is the same as the s-m-t:after */
  224. color:{color:tooltip text};
  225. z-index:9999;
  226. font-size:12px;
  227. text-transform:uppercase;
  228. }
  229.  
  230. /* don't touch this, this is the what makes it look like a speech bubble */
  231. #s-m-t-tooltip:after{
  232.  
  233. content: '';
  234. position: absolute;
  235. border-style: solid;
  236. border-width: 8px 10px 0;
  237. border-color: {color:tooltip} transparent;
  238. display: block;
  239. width: 0;
  240. z-index: 1;
  241. bottom: -10px;
  242. left: 50%;}
  243.  
  244.  
  245. ::-webkit-scrollbar {width: 10px; height: 4px; background: #ffffff; border:1px solid {color:border}; }
  246. ::-webkit-scrollbar-thumb { background-color: {color:scrollbar}; }
  247.  
  248.  
  249.  
  250. ::selection {color: #000; background: #ddd;}
  251. ::-moz-selection {color: #000; background: #ddd;}
  252.  
  253. body{
  254. margin:0;
  255.  
  256. background:{color:background} url({image:background})
  257. {block:iffullbackground} no-repeat center center fixed;
  258. -webkit-background-size: cover;
  259. -moz-background-size: cover;
  260. -o-background-size: cover;
  261. background-size: cover; {/block:iffullbackground};
  262. background-attachment:fixed;
  263. word-wrap:break-word;
  264. font-size:16.2px;
  265.  
  266. }
  267.  
  268. a{color:{color:links};
  269. text-decoration:none; transition:.4s;
  270. }
  271.  
  272. a:hover{color:{color:link hover}; transition:.4s;}
  273.  
  274. b{
  275. color:{color:bold};
  276. }
  277.  
  278. i{color:{color:italic};
  279. }
  280.  
  281. blockquote{border-left:1px dotted black; margin-left:10px; padding:0px; padding-left:4px; }
  282. blockquote img{width:100%;}
  283.  
  284. #container {width:500px; margin:100px auto;}
  285. #sidebar{position:fixed; background:{color:posts};top:100px; left:100px; padding:8px; display:block; width: 200px; border:1px solid {color:border}; max-height: 280px;/*background-color:#FAE2D1; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; border:2px solid #1b1b1b; transition:.6s; */
  286. z-index:2;
  287. box-shadow:4px 4px 0px 0px rgba(50, 50, 50, .2);
  288. }
  289.  
  290. .eye{
  291. border-bottom-left-radius:60% 80%;
  292. border-bottom-right-radius:60% 80%;
  293. border-top-left-radius:50% 40%;
  294. border-top-right-radius:50% 40%;
  295. width:50px; height:28px; position:absolute;
  296. background:white; margin-top:110px;
  297. margin-left:100px;
  298. border-width:1px 1px 1px 1px;
  299. border-style:solid;
  300. border-color:#1b1b1b;
  301. }
  302. .pupil{position:absolute; left:20px; border-radius:100%; height:6px; width:6px; background:#1b1b1b; top:10px;}
  303. .shine{position:absolute; right:24px; transform:skew(30deg); width:20px; height:40px;background:rgba(255, 255, 255, .5); top:30px; border-radius:100% 70%; }
  304. .eye.left{margin-left:22px;transform:skew(4deg);}
  305.  
  306. .eye.right{right:22px;transform:skew(-4deg);}
  307. .brow{ border-top-left-radius:50% 50%;
  308. border-top-right-radius:50% 50%; width:48px; height:8px; top:100px; border-top:1px solid #1b1b1b; position:absolute;}
  309. .brow.left{margin-left:30px;}
  310. .nose{left:48%; border-left:1px solid #1b1b1b; height:70px; width:10px; position:absolute; margin-top:110px; border-bottom-left-radius:20px;}
  311. .brow.right{right:30px;}
  312. .mouth{
  313. border-top-left-radius: 70% 10%;
  314. border-top-right-radius: 70% 10%;
  315. border-bottom-right-radius: 70% 120%;
  316. border-bottom-left-radius: 70% 120%;
  317. position:absolute; border:1px solid #1b1b1b; top:200px; height:18px; width:30px; background:#C44A3B; left:42%;}
  318. #sidebar:hover .mouth{opacity:0; transition:.6s;}
  319. #sidebar:hover .eye{opacity:0; transition:.6s;}
  320. #sidebar:hover .brow{opacity:0; transition:.6s;}
  321. #sidebar:hover .nose{opacity:0; transition:.6s;}
  322. .description{ width: 180px; padding:8px;/*margin-top:70px; */ max-height:100px; transition:.6s; text-align:center; overflow:auto;}
  323. #sidebar:hover .description{opacity:1;}
  324. .posts{margin: 100px 0 100px 0; width: 500px;text-align: justify; background-color:{color:posts}; padding:10px; border:1px solid {color:border};}
  325. .postmarker{width:500px; height:20px; padding:10px; background:{color:posts}; text-align:left;position:absolute; margin-top:-40px;border:1px solid {color:border}; margin-left:-11px; font-family:consolas; font-size:14px;}
  326.  
  327. h3{background-color:{color:border}; padding:20px; margin-top:2px; font-size:18px; text-align:center; padding-bottom:30px; position:relative;}
  328. .text{padding:10px;}
  329. .linkcon{bottom:130px; width:200px; height:100px;position:fixed; left:110px;}
  330. .linkcon li{display:inline-block;margin-left:20px; height:20px; width:20px; background:white; box-shadow:0px 0px 0px 1px #444, 0px 0px 0px 2px #444;transition:.6s;border-radius:100%;}
  331. .linkcon li:hover{box-shadow:0px 0px 0px 2px #333, 0px 0px 4px 10px rgba(0,0,0,.0);transition:.6s;background:#333;border-radius:0%;}
  332. .speechbubble {
  333. width:400px;
  334. position: relative;
  335. background:#eee ;
  336. left:70px;
  337. color:#a0a0a0;
  338. margin: 0;
  339. padding:8px;
  340. text-align:left;
  341.  
  342. box-shadow: 0px 0 1px rgba(0,0,0,0);
  343. }
  344.  
  345.  
  346. .speechbubble:after {
  347. position: absolute;
  348. content: "";
  349. border-color: #eee transparent transparent transparent;
  350. border-style: solid;
  351. border-width: 15px 15px 0px;
  352. height:0;
  353. width:0;
  354. position:absolute;
  355. left:-15px;
  356. top:10px;
  357. }
  358.  
  359.  
  360. .reblog{ margin-left:20px; width:100%; }
  361. .reblog svg path {
  362. fill: #000;
  363. }
  364. .dinky {
  365. float:left;
  366. }
  367. #albumart{width:150px;height:150px; border-radius:90px; transition:.5s;}
  368.  
  369. #albumart img{
  370. width:150px;
  371. height:150px;
  372. padding:0px;
  373. opacity:.8;
  374. border-radius:90px;
  375. border-width:0px; transition:.5s;
  376.  
  377. }
  378. .dinky:hover #albumart img{ -ms-transform: rotate(-300deg); /* IE 9 */
  379. -webkit-transform: rotate(-300deg); /* Chrome, Safari, Opera */
  380. transform: rotate(-300deg); transition:.8s;}
  381.  
  382. .player {
  383. width:30px;
  384. overflow:hidden;
  385. height:40px;
  386. padding:0px;
  387. padding-top:5px;
  388. padding-left:8px;
  389. opacity:.8;
  390. border-radius:90px;
  391. position:absolute;
  392. left:50%;
  393. top:50%;
  394. margin-top:-20px;
  395. margin-left:-20px;
  396. transform:scale(1.2);
  397.  
  398. }
  399.  
  400.  
  401.  
  402. .daplaya {
  403. background-color:#Fff;
  404. box-shadow:0px 0px 0px 2px #1b1b1b;
  405. border:2px solid #aaa;
  406. width:50px;border-radius:90px;
  407. height:50px;
  408. position:absolute;
  409. margin-top:-100px;
  410. margin-left:48px;
  411. -webkit-transition-duration:500ms;
  412. -moz-transition-duration:500ms;
  413. -o-transition-duration:500ms;
  414. -ms-transition-duration:500ms;
  415. }
  416.  
  417.  
  418.  
  419. .donkey {
  420. float:left top;
  421. margin-left:92px;
  422. background-color:transparent;
  423. padding:10px;
  424. padding-left:20px;
  425. height:110px;
  426. text-align:center;
  427. color:{color:text};
  428. }
  429.  
  430. .track {
  431. font-size:14px;
  432. letter-spacing:4px;
  433. padding:10px;
  434. padding-left:28px;
  435. background-color:#eee;
  436. font-weight:300;
  437. text-transform:uppercase; transition:.6s;
  438. font-family:Helvetica;
  439. color:black;
  440. }
  441.  
  442.  
  443. .album{padding-left:28px;}
  444.  
  445. .artist {
  446. letter-spacing:1px;
  447. font-style:italic;
  448.  
  449. padding-left:28px;
  450.  
  451.  
  452.  
  453. }
  454.  
  455. .playcount {
  456. font-size:9px;
  457. padding-left:28px;
  458. text-transform:uppercase;
  459. letter-spacing:3px;
  460. }
  461.  
  462.  
  463. #audiolo {
  464.  
  465. width:500px;
  466.  
  467.  
  468. }
  469.  
  470. .info{background:{color:posts}; width:500px; position:absolute; padding:10px; margin-left:-11px; margin-top:10px; border:1px solid {color:border};}
  471. info a:hover{color: #F58020;}
  472.  
  473. ol.notes { background:{color:posts};
  474. padding: 10px;
  475. margin: 25px 0px;
  476. width:500px;
  477. list-style-type: none;
  478. border: solid 1px {color:border};
  479. }
  480.  
  481. ol.notes li.note {
  482. border-bottom: solid 1px {color:border};
  483. padding: 10px;
  484. width:480px;
  485. margin-left:8px;
  486. }
  487.  
  488. ol.notes li.note img.avatar {
  489. vertical-align: -4px;
  490. margin-right: 10px;
  491. width: 16px;
  492. height: 16px;
  493. }
  494.  
  495.  
  496. </style>
  497. <body>
  498. <div id="sidebar">
  499. <center>
  500. <img src="{image:sidebar}" style="width:150px; max-height:150px;"></center>
  501. <!--
  502. <div class="shine"></div>
  503. <div class="brow left"></div><div class="brow right"></div>
  504. <div class="eye left"><div class="pupil"></div></div><div class="eye right"><div class="pupil"></div></div>
  505. <div class="nose"></div>
  506. <div class="mouth"></div> -->
  507. <div class="description">{description}</div>
  508. </div>
  509.  
  510. <div class="linkcon">
  511. <a href="/" title="refresh"><li class="link"></li></a>
  512. <a href="#?w=500" rel="03" class="poplight" title="message"><li class="link"></li></a>
  513. <a href="/archive" title="archive"><li class="link"></li></a>
  514. <a href="#?w=700" rel="02" class="poplight" title="more"><li class="link"></li></a>
  515.  
  516. </div>
  517.  
  518. <a href="http://espoirthemes.tumblr.com" title="credit"><div id="egg"></div></a>
  519.  
  520. <div id="container">
  521.  
  522. {block:Posts}<div class="posts">
  523. <div class="postmarker"><div style="position:absolute; margin-left:4px">{likebutton}</div><div style="position:absolute; margin-left:40px;">{reblogbutton}</div>
  524.  
  525. <div style="right:10px; text-align:right;">
  526. {block:date}<a href="{permalink}">{timeago}</a>{/block:date}
  527. {block:NoteCount}| <a href="{permalink}">{NoteCount} notes</a> {/block:NoteCount}
  528.  
  529.  
  530. </div></div><br>
  531. <!-- {block:NoRebloggedFrom}
  532. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  533. {/block:NoRebloggedFrom} -->
  534. {block:ContentSource}
  535. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  536. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  537. {/block:SourceLogo}
  538. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  539. {/block:ContentSource}
  540. {block:Text}
  541.  
  542. {block:Title}
  543. <h3><a href="{Permalink}">{Title}</a></h3>
  544. {/block:Title}
  545.  
  546. <div class="text">{Body}</div>
  547.  
  548. {/block:Text}{block:Photo}
  549.  
  550. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  551.  
  552. {block:Caption}
  553. <div class="text">{Caption}</div>
  554. {/block:Caption}
  555.  
  556. {/block:Photo}{block:Panorama}
  557.  
  558. {LinkOpenTag}
  559. <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
  560. {LinkCloseTag}{block:Caption}
  561. <div class="text">{Caption}</div>
  562. {/block:Caption}
  563.  
  564. {/block:Panorama}{block:Photoset}
  565.  
  566. {Photoset-500}{block:Caption}
  567. {Caption}
  568. {/block:Caption}
  569.  
  570. {/block:Photoset}{block:Quote}
  571.  
  572. "{Quote}"
  573.  
  574. {block:Source}
  575. {Source}
  576. {/block:Source}
  577.  
  578. {/block:Quote}{block:Link}
  579.  
  580. <big> &#187 <a href="{URL}" class="link" {Target}>{Name}</a> &#187</big>
  581.  
  582. {block:Description}
  583. {Description}
  584. {/block:Description}
  585.  
  586. {/block:Link}
  587.  
  588. {block:Chat}{block:Title}<h1>{title}</h1>{/block:Title}{block:Lines}<div class="chat">{block:Label}<b>{Label}</b>{/block:Label} {Line}<br/></div>{/block:Lines}{/block:Chat}
  589.  
  590.  
  591. {block:Video}
  592.  
  593. {Video-500}{block:Caption}
  594. <div class="caption">{Caption}</div>
  595. {/block:Caption}
  596.  
  597. {/block:Video}{block:Audio}<div id="audiolo">
  598. <div class="dinky">
  599. {block:AlbumArt}<div id="albumart"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  600.  
  601. <div class="daplaya"><div class="player">{AudioPlayerwhite}</div></div></div>
  602. <div class="donkey">
  603. <div class="track"> {block:TrackName}
  604. {TrackName}
  605. {/block:TrackName} </div>
  606.  
  607.  
  608. <div class="artist">
  609. {block:Artist}{Artist}
  610. {/block:Artist} </div>
  611.  
  612. <div class="album">
  613. {block:Album}
  614. {Album}
  615. {/block:Album}
  616. </div>
  617.  
  618. <div class="playcount">
  619.  
  620. {block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}</div>
  621. </div></div><br>
  622. {caption}
  623. {/block:Audio}
  624.  
  625.  
  626.  
  627. {block:Answer}
  628.  
  629. <br>
  630. <div class="askerportrait"><img style=" margin-left:10px" src="{AskerPortraitURL-40}" align="left" /></div><div class="speechbubble">{Asker} shouted: {Question}</div> {answer}
  631.  
  632.  
  633. {/block:Answer}
  634. <div class="info">{block:HasTags}{block:tags}<a href="{tagURL}">#{tag}</a> {/block:tags}{/block:HasTags}</div>
  635.  
  636. </div><br><!--posts end-->{/block:Posts}
  637. <center>
  638. {block:Pagination}
  639. <div id="pagination">
  640. {block:previousPage} <span class ="jump_page"><a href="{PreviousPage}"> &#171;</a></span>{/block:PreviousPage}
  641.  
  642. {block:JumpPagination length="5"}
  643. {block:CurrentPage}
  644. <span class="current_page">{text:current page}</span>
  645. {/block:CurrentPage}
  646.  
  647. {block:JumpPage}
  648. <a class="jump_page" href="{URL}">{PageNumber}</a>
  649. {/block:JumpPage}
  650. {/block:JumpPagination}
  651.  
  652. {block:NextPage} <span class="jump_page">
  653. <a href="{NextPage}"> &#187; </a>
  654. </span>{/block:NextPage}
  655. </div>
  656. {/block:Pagination}
  657. </center>
  658. {block:PostNotes}{PostNotes}{/block:PostNotes}
  659. </div><!--container end-->
  660.  
  661.  
  662.  
  663.  
  664.  
  665. </body>
  666.  
  667.  
  668. <div id="02" class="popup_block">
  669.  
  670.  
  671. <table cellpadding="10">
  672. <tr>
  673. <td><img src="{portraitURl-96}" style="padding:8px; border:1px solid {color:border}"></td>
  674. <td> <div class="about">
  675. {text:about}
  676. </div></td>
  677.  
  678.  
  679. </tr>
  680. <tr><td>
  681. <div class="linklist" >
  682. <li><a href="{text:url1}">{text:link1}</a></li>
  683. <li><a href="{text:url2}">{text:link2}</a></li>
  684. <li><a href="{text:url3}">{text:link3}</a></li>
  685. <li><a href="{text:url4}">{text:link4}</a></li>
  686.  
  687. </div>
  688.  
  689. </td></tr>
  690. </table>
  691.  
  692. </div></div>
  693.  
  694.  
  695. <div id="03" class="popup_block">
  696.  
  697.  
  698. <iframe id="ask_form" style="background-color: transparent; overflow: hidden;" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" frameborder="0" scrolling="no" width="100%" height="180"></iframe>
  699. </div></div>
  700.  
  701.  
  702.  
  703.  
  704.  
  705. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement