Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 17th, 2011  |  syntax: None  |  size: 19.08 KB  |  hits: 2,707  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--Winter Snowflakes by: http://fairycandles.tumblr.com/-->
  2. <!--NOTE: Will update this theme soon! To add more colors for you to customize. (Sorry, I'm a bit lazy today. Lol!) But for now,I hope you'll like this theme! :-)
  3. PLEASE DON'T REMOVE ANY CREDITS. THANK YOU SO MUCH :"> -->
  4. <?xml version="1.0" encoding="UTF-8"?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  7. <head>
  8. <META name="color:Sidebar" content="#F8F8F8">
  9. <META name="color:Title" content="#f5cacd">
  10. <META name="color:Post Title" content="#f5cacd">
  11. <META name="color:Font" content="#CCCCCC">
  12. <META name="color:Navigation" content="#F8F8F8">
  13. <META name="color:Navigation Hover" content="#ffffff">
  14. <META name="color:Link" content="#B3B3B3">
  15. <META name="color:Dividers" content="#f5cacd">
  16. <meta name="if:ShowSnowflakes" content="1"/>
  17. <META name="image:Background" content="http://media.tumblr.com/tumblr_lqwopeSQgn1qe0vu3.jpg">
  18. <meta name="image:About Me" content="http://media.tumblr.com/tumblr_lqwi6feHIN1qaj7nf.jpg"/>
  19. <meta name="image:Links" content="http://media.tumblr.com/tumblr_lqwi5tkO2Q1qaj7nf.jpg"/>
  20. <meta name="image:Photo" content="http://media.tumblr.com/tumblr_lqwivaEOpl1qaj7nf.jpg"/>
  21. {block:IfShowSnowflakes}
  22. <script type="text/javascript">
  23.  
  24. /******************************************
  25.  
  26. * Snow Effect Script- By Altan d.o.o. (http://www.altan.hr/snow/index.html)
  27.  
  28. * Visit Dynamic Drive DHTML code library (http://www.dynamicdrive.com/) for full source code
  29.  
  30. * Last updated Nov 9th, 05' by DD. This notice must stay intact for use
  31.  
  32. ******************************************/
  33.  
  34. //Configure below to change URL path to the snow image
  35.  
  36. var snowsrc="http://www.snazzyspace.com/tumblr/snowb.gif"
  37.  
  38. // Configure below to change number of snow to render
  39.  
  40. var no = 30;
  41.  
  42. // Configure whether snow should disappear after x seconds (0=never):
  43.  
  44. var hidesnowtime = 0;
  45.  
  46. // Configure how much snow should drop down before fading ("windowheight" or "pageheight")
  47.  
  48. var snowdistance = "pageheight";
  49.  
  50. ///////////Stop Config//////////////////////////////////
  51.  
  52. var ie4up = (document.all) ? 1 : 0;
  53.  
  54. var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
  55.  
  56. function iecompattest(){
  57.  
  58. return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
  59.  
  60. }
  61.  
  62. var dx, xp, yp; // coordinate and position variables
  63.  
  64. var am, stx, sty; // amplitude and step variables
  65.  
  66. var i, doc_width = 800, doc_height = 600;
  67.  
  68. if (ns6up) {
  69.  
  70. doc_width = self.innerWidth;
  71.  
  72. doc_height = self.innerHeight;
  73.  
  74. } else if (ie4up) {
  75.  
  76. doc_width = iecompattest().clientWidth;
  77.  
  78. doc_height = iecompattest().clientHeight;
  79.  
  80. }
  81.  
  82. dx = new Array();
  83.  
  84. xp = new Array();
  85.  
  86. yp = new Array();
  87.  
  88. am = new Array();
  89.  
  90. stx = new Array();
  91.  
  92. sty = new Array();
  93.  
  94. snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
  95.  
  96. for (i = 0; i < no; ++ i) {
  97.  
  98. dx[i] = 0; // set coordinate variables
  99.  
  100. xp[i] = Math.random()*(doc_width-50); // set position variables
  101.  
  102. yp[i] = Math.random()*doc_height;
  103.  
  104. am[i] = Math.random()*20; // set amplitude variables
  105.  
  106. stx[i] = 0.02 + Math.random()/10; // set step variables
  107.  
  108. sty[i] = 0.7 + Math.random(); // set step variables
  109.  
  110. if (ie4up||ns6up) {
  111.  
  112. if (i == 0) {
  113.  
  114. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><a href=\"http://www.snazzyspace.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
  115.  
  116. } else {
  117.  
  118. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT: 15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
  119.  
  120. }
  121.  
  122. }
  123.  
  124. }
  125.  
  126. /******************************************
  127.  
  128. * Generated at tumblr-layouts.tumblr.com
  129.  
  130. ******************************************/
  131.  
  132. function snowIE_NS6() { // IE and NS6 main animation function
  133.  
  134. doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
  135.  
  136. doc_height=(window.innerHeight && snowdistance=="windowheight")? window.innerHeight : (ie4up && snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up && !window.opera && snowdistance=="pageheight")? iecompattest().scrollHeight : iecompattest().offsetHeight;
  137.  
  138. for (i = 0; i < no; ++ i) { // iterate for every dot
  139.  
  140. yp[i] += sty[i];
  141.  
  142. if (yp[i] > doc_height-50) {
  143.  
  144. xp[i] = Math.random()*(doc_width-am[i]-30);
  145.  
  146. yp[i] = 0;
  147.  
  148. stx[i] = 0.02 + Math.random()/10;
  149.  
  150. sty[i] = 0.7 + Math.random();
  151.  
  152. }
  153.  
  154. dx[i] += stx[i];
  155.  
  156. document.getElementById("dot"+i).style.top=yp[i]+"px";
  157.  
  158. document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
  159.  
  160. }
  161.  
  162. snowtimer=setTimeout("snowIE_NS6()", 10);
  163.  
  164. }
  165.  
  166. function hidesnow(){
  167.  
  168. if (window.snowtimer) clearTimeout(snowtimer)
  169.  
  170. for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
  171.  
  172. }
  173.  
  174.  
  175. if (ie4up||ns6up){
  176.  
  177. snowIE_NS6();
  178.  
  179. if (hidesnowtime>0)
  180.  
  181. setTimeout("hidesnow()", hidesnowtime*1000)
  182.  
  183. }
  184.  
  185. </script>
  186. {/block:IfShowSnowflakes}
  187.  
  188. <script type="text/javascript"
  189. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  190. <script>
  191.  
  192. $(document).ready(function() {
  193.  
  194.  //
  195.  
  196. //When you click on a link with class of poplight and the href starts with a #
  197.  
  198. $('a.poplight[href^=#]').click(function() {
  199.  
  200.     var popID = $(this).attr('rel'); //Get Popup Name
  201.  
  202.     var popURL = $(this).attr('href'); //Get Popup href to define size
  203.  
  204.     //Pull Query & Variables from href URL
  205.  
  206.     var query= popURL.split('?');
  207.  
  208.     var dim= query[1].split('&');
  209.  
  210.     var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  211.  
  212.     //Fade in the Popup and add close button
  213.  
  214.     $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/mw3v5cd/DbGlpuxvw/61.png" class="btn_close" title="Close Window" alt="Close" /></a>');
  215.  
  216.  
  217.     //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
  218.  
  219.     var popMargTop = ($('#' + popID).height() + 80) / 2;
  220.  
  221.     var popMargLeft = ($('#' + popID).width() + 80) / 2;
  222.  
  223.     //Apply Margin to Popup
  224.  
  225.     $('#' + popID).css({
  226.  
  227.         'margin-top' : -popMargTop,
  228.  
  229.         'margin-left' : -popMargLeft
  230.  
  231.     });
  232.  
  233.     //Fade in Background
  234.  
  235.     $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  236.  
  237.     $('#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
  238.     return false;
  239. });
  240. //Close Popups and Fade Layer
  241. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  242.  
  243.     $('#fade , .popup_block').fadeOut(function() {
  244.  
  245.         $('#fade, a.close').remove();  //fade them both out
  246.     });
  247.     return false;
  248.  
  249. });
  250. });
  251.  
  252. </script>
  253.  
  254. <link href='http://fonts.googleapis.com/css?family=Dancing+Script&v1' rel='stylesheet' type='text/css'>
  255. <script src="http://static.tumblr.com/3ikgvxs/K16l80ow6/cufon-yui.js" type="text/javascript"></script>
  256. <script src="http://static.tumblr.com/3ikgvxs/K16l80ow6/cufon-yui.js" type="text/javascript"></script>
  257.  
  258. <script src="http://static.tumblr.com/3ikgvxs/K16l80ow6/cufon-yui.js" type="text/javascript"></script>
  259. <script src="http://static.tumblr.com/8sh7vfk/J9Slpb3zs/cac-champagne.cufonfonts.js" type="text/javascript"></script>
  260.  
  261. <script type="text/javascript">Cufon.replace('.h1');</script>
  262.  
  263.  
  264. <script type="text/javascript">
  265. //desabilita menu de opcoes ao clicar no botao direito
  266. function desabilitaMenu(e)
  267. {
  268. if (window.Event)
  269. {
  270. if (e.which == 2 || e.which == 3)
  271. return false;
  272. }
  273. else
  274. {
  275. event.cancelBubble = true
  276. event.returnValue = false;
  277. return false;
  278. }
  279. }
  280. document.oncontextmenu = desabilitaMenu;
  281. document.onmousedown = desabilitaBotaoDireito;
  282. document.onmouseup = desabilitaBotaoDireito;
  283. </script>
  284.  
  285. <script type="text/javascript">
  286. function changeNavigation(id) {document.getElementById('liuc').innerHTML=document.getElementById(id).innerHTML}
  287. </script>
  288. <title>{Title}</title>
  289. <link rel="shortcut icon" href="{favicon}" />
  290. </head>
  291.  
  292. <style type="text/css">
  293.  
  294. img{
  295. -webkit-transition: opacity 0.8s linear;
  296. opacity: 0.60;
  297. }
  298. img:hover{
  299. -webkit-transition: opacity 0.8s linear;
  300. opacity: 3;
  301. }
  302.  
  303. #fade { /*--Transparent background layer--*/
  304.  display: none; /*--hidden by default--*/
  305.  background: #000;
  306.  position: fixed; left: 0; top: 0;
  307.  width: 100%; height: 100%;
  308.  opacity: .30;
  309.  z-index: 9999;
  310. }
  311. .popup_block{
  312.  display: none; /*--hidden by default--*/
  313.  background: #fff;
  314.  padding: 10px;
  315.  border: 10px solid #fff;
  316.  float: left;
  317.  font-size: 1.2em;
  318.  position: fixed;
  319.  top: 50%; left: 50%;
  320.  z-index: 99999;
  321.  /*--CSS3 Box Shadows--*/
  322.  -webkit-box-shadow: 0px 0px 20px #000;
  323.  -moz-box-shadow: 0px 0px 20px #000;
  324.  box-shadow: 0px 0px 20px #000;
  325.  /*--CSS3 Rounded Corners--*/
  326.  -webkit-border-radius: 20px;
  327.  -moz-border-radius: 20px;
  328.  border-radius: 20px;
  329. }
  330. img.btn_close {
  331.  float: right;
  332.  margin: -45px -28px 0 0;
  333. }
  334. /*--Making IE6 Understand Fixed Positioning--*/
  335. *html #fade {
  336.  position: absolute;
  337. }
  338. *html .popup_block {
  339.  position: absolute;
  340. }
  341.  
  342. .h9{font-family:verdana; color:#888; font-size:11px;}
  343.  
  344. .h1 { font-size: 35px; color: {color:Post Title};font-family: 'Dancing Script', arial, serif;margin-bottom: 2px;}
  345.  
  346. .h2 {font-size:20px;font-family: 'COURIER NEW', arial, serif; color:;color: #777; !important;text-decoration: none; cursor: help; margin-bottom: 2px;background: #{color:navigation};text-shadow: 0px 1px 1px #000;}
  347. .h3 {font-size:20px;font-family: 'COURIER NEW', arial, serif; color:;color: {color:Title}; !important;text-decoration: none; cursor: help; margin-bottom: 2px;background: #{color:Navigation};text-shadow: 0px 1px 1px #000;}
  348. .h5 {background: #{color:Navigation};color: {color:Font};font-size: 11px;margin-top:1px; text-align:left;border-top: 1px dashed {color:Dividers};font-variant:small-caps;padding:3px;letter-spacing:2px;}
  349.  
  350. .borda{border-top-left-radius: 50px;border-top-right-radius:50px;}
  351.  
  352. b, strong {color: #e0677e; text-decoration: none; cursor: help;}
  353. s {color: #e0677e;cursor: help;}
  354. i, em {color: #e0677e; text-decoration: none;cursor: help;}
  355. a:link,a:active,a:visited { color: {color:Link}; text-decoration: none;}
  356. a:hover { color: #e0677e;}
  357.  
  358.   ::-moz-selection{background: #000;color:#e0677e;}
  359.   ::selection{background: #000;color:#e0677e;}
  360.  
  361. body {background: #ffffff; background-image: url({image:Background}); background-attachment: fixed;}
  362. blockquote {background:{color:Navigation};padding: 3px 3px 3px 8px; margin: 3px;font:11px tahoma;}
  363.  
  364. .box {background: {color:navigation};margin: 10px 10px 10px 10px;padding: 5px 5px 8px 5px;margin-bottom:15px;}
  365. #conteudo { width: 560px; padding-bottom: 8px; margin-top:0px; color: {color:Font}; font: 11px tahoma; margin-bottom: 15px; margin-left: 200px; padding: 5px; float: left; }
  366.  
  367. #sidebar {position:fixed; background: {color:Sidebar}; float: center; width:300px; right:70px; top:20px;text-align:justify;color: {color:Font}; font-size:11px; font-family:tahoma; letter-spacing:2px; }
  368.  
  369. #paginacaoml {font-size: 11px; font-weight: bold; line-height: 21px; }
  370. #paginacaoml a {background: #{color:Navigaiton}; margin: 0 1px 0 0; padding: 2px 4px; color: #888; text-decoration: none;}
  371. #paginacaoml a:hover {background: #{color:Navigation Hover}; border: none;}
  372. #paginacaoml span.pagina_atual {background: #{color:Navigation}; margin: 0 1px 0 0; padding: 2px 4px; color: #777; text-decoration: none;}
  373. #paginacaoml span.info {background: #202020; margin: 0 1px 0 0; padding: 2px 4px; color: #888; text-decoration: none;}
  374.  
  375. ul.a{margin:5px 0 5px 0;padding:1px;}
  376. ul.a li,ul{list-style:none;}
  377. ul.a li{margin:1px 0 2px 0;font-family : verdana;
  378. border-bottom:1px solid #202020;}
  379.  
  380. .ask {align:right;background:#202020;border-right: 7px solid #202020; margin:7px 5px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px; font: 11px Tahoma, Verdana, Tahoma; color:#666;}
  381.  
  382. .ask p {margin:1px 0px;}
  383.  
  384. .ask span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px;left:-10px;top:10px;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:10px solid #202020;}
  385.  
  386. .res {font-family: georgia; font-size:11px; color:#888; text-align:center;}
  387.  
  388. .nav1 {font-size: 12px;  font-family:tahoma; color: #777;float:left;padding: 5px;  letter-spacing:1px; text-align:left; height:15px;margin:2px;border-radius:2px;background:{color:Navigation};width:85px;}
  389. .nav1:hover {color: #e0677e;background:{color:Navigation Hover};}
  390.  
  391. input, textarea, option, select, button form {font-family: Verdana, Helvetica;font-size: 10px;
  392. color: #d1c9a2;background: #ffffff;padding: 1px;border: 1px solid #d1c9a2;}
  393. </style>
  394.  
  395.  
  396. <body>
  397.  
  398. <div class="la3"></div>
  399. <center>
  400. <div id="sidebar">
  401. <center>
  402. <div class="h3">{title}</div></center>
  403.  
  404. <center><img src="{image:Photo}" width="290" height="200"></center>
  405.  
  406.  
  407. {block:Description}{Description}{/block:Description}
  408.  
  409. <br><br>
  410. <center>
  411. <a href="/" class="nav1"> Home</a>
  412.  
  413. <div class="nav1"><a href="#?w=500"rel="03" class="poplight" >Links</a></div>
  414.  
  415.  
  416. <a href="/archive" class="nav1">Archive</a>
  417.  
  418. <div class="nav1" align="center"><a href="#?w=500"rel="01" class="poplight" >About</a> </div>
  419.  
  420. <a href="/ask" class="nav1">Ask Me</a>
  421.  
  422. <div class="nav1"><a href="#?w=500"rel="02" class="poplight" >Theme ©</div>
  423.  
  424. </div></div>
  425.  
  426.  
  427. <div id="posts"><div id="conteudo"><div id="mar"><div id="liuc">
  428. {block:Posts}
  429.  
  430. {block:Text}
  431. <div class="box">
  432. <div class="h1">{block:Title}<a href="{Permalink}" class="title">{Title}</a>{/block:Title}</div>
  433. <div>{Body}</div>
  434. <BR>
  435. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  436. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  437. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  438. {/block:Text}
  439.  
  440. {block:Quote}
  441. <div class="box">
  442. <div class="h1">{Quote}</div>
  443. {block:Source}&mdash; {Source}{/block:Source}
  444. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  445. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  446. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  447. {/block:Quote}
  448.  
  449. {block:Answer}
  450. <div class="box">
  451. <img src="{AskerPortraitURL-40}"align="left" width="40px" /> <div class="ask"><span></span>{Asker}: {Question}</div>
  452. <div class="res">{Answer}</div>
  453. <div class="h5"><b>Ask</b></div>
  454. <div class="h3"></div></div>
  455. {/block:Answer}
  456.  
  457. {block:Photo}
  458. <div class="box">
  459. <center>{LinkOpenTag}<a href="{Permalink}"><img class="border" src="{PhotoURL-500}" title="{PhotoAlt}" width="524"/>{LinkCloseTag}</center></a><br>
  460. {block:Caption}{Caption}{/block:Caption}
  461. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  462. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  463. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  464. {/block:Photo}
  465.  
  466. {block:Chat}
  467. <div class="box">
  468. {block:Title}<a href="{Permalink}">{Title}</a>{/block:Title}
  469. <table>
  470. {block:Lines}
  471. <tr>
  472. {block:Label}<td class="name">{Label}</td>{block:Label}
  473. <td class="words">{Line}</td>
  474. </tr>
  475. {/block:Lines}
  476. </table>
  477. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  478. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  479. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  480. {/block:Chat}
  481.  
  482. {block:Audio}
  483. <div class="box">
  484. <div style="float:right; margin-top: 4px;"><i> {PlayCount} vezes</i> {block:ExternalAudio}(<a href="{ExternalAudioURL}">Download</a>){/block:ExternalAudio}</div>
  485. <center>{AudioPlayerWhite}</center>
  486. {block:Caption}{Caption}{/block:Caption}
  487. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  488. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  489. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  490. {/block:Audio}
  491.  
  492. {block:Video}
  493. <div class="box">
  494. <center>{Video-500}</center>
  495. {block:Caption}{Caption}{/block:Caption}<br>
  496. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  497. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  498. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div></div>
  499. {/block:Video}
  500.  
  501. {block:Link}
  502. <div class="box">
  503. <div class="h1">
  504. <a href="{URL}" class="link" {Target}>{Name}</a></div>
  505. {block:Description}
  506. <div class="description">{Description}</div>
  507. {/block:Description}
  508. <BR>
  509. <div class="h5">{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  510. {block:ContentSource}<a href="{SourceURL}" target=blank>(Source)</a>{/block:ContentSource}     
  511. | <a href="{ReblogURL}" target="_blank" class="details">Reblog</a></div>
  512. <div class="h3">{block:HasTags} {block:Tags}&nbsp;#<a class="tag" href="{TagURL}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}</a></div></div>
  513. {/block:Link}
  514.  
  515. {/block:Posts}
  516. <div class="box">
  517. <center><div id="paginacaoml">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&laquo;</a>{/block:PreviousPage}{/block:Pagination}
  518. {block:JumpPagination length="10"}
  519. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  520. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  521. {/block:JumpPagination}
  522. {block:Pagination}{block:NextPage}<a href="{NextPage}">&raquo;</a>{/block:NextPage}{/block:Pagination}
  523. </div></center></div>
  524. </div></div></p></div></div></div>
  525.  
  526. </div></div></div></div></div></div></div></div></div></div></div></div>
  527.  
  528. <div id="01" class="popup_block">
  529. <div class="h2">Behind the Screen</div>
  530. <div class="h9">
  531. <br><img class="icon" src="{image:About Me}" align="left" width="250"></br>
  532. To edit this page Customize > Theme > CTRL + F > type "HULLO" > delete this then add a description about yourself. / other pages like self portraits, faqs, tumblr family and etc. :-)
  533. </div></div></div></div></div>
  534.  
  535. <div id="02" class="popup_block">
  536.  
  537. <div class="h2">Credits</div>
  538. <div class="h9">
  539.  
  540. <br><img class="icon" src="http://media.tumblr.com/tumblr_lqpwogw3sQ1qa60d8.jpg" align="left" width="250"></br>
  541. <br><br><br><br><br><br>Winter Snowflakes by: <a href="http://fairycandles.tumblr.com">fairycandles</a>
  542. <br>Powered by: <a href="http://tumblr.com">Tumblr</a></br>
  543. </div></div></div></div></div>
  544.  
  545. <div id="03" class="popup_block">
  546. <br><img class="icon" src="{image:Links}" align="left" width="250"></br>
  547. <div class="h2">Links</div>
  548. <div class="h9">
  549. <br><br><br><br><br><br>
  550.  <a href="linkhere">link</a>
  551. || <a href="linkhere">link</a>
  552. || <a href="linkhere">link</a>
  553. || <a href="linkhere">link</a>
  554. || <a href="http://fairycandles.tumblr.com/" div id="nav">theme</a>
  555.  
  556. </div></div></div>
  557.  
  558. </div></div></div></div></div></div></div></div></div></div></div></div>
  559.  
  560. </body>
  561. </html>