Advertisement
cornetespoir

9 // Saitama

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