Advertisement
cornetespoir

9 // Saitama v2 (sidebar)

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