Advertisement
Gazlan

♕ Versace

Sep 17th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 19.96 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <html>
  5. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  6.  
  7. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  8.  
  9. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  10.  
  11. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  12.  
  13. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  14.  
  15. <!--you are looking at TUMBLR THEME CONVERTED BY YANILAVIGNE.TUMBLR.COM based On DancingSheep codes. please credit if you use them.DONT REMOVE THIS HEADER thank you.-->
  16.  
  17. <head>
  18.  
  19. <script type='text/javascript'>
  20.  
  21.  //<![CDATA[
  22.  
  23. var rate = 20;
  24.  
  25. if (document.getElementById)
  26.  window.onerror=new Function("return true")
  27.  
  28. var objActive;  // The object which event occured in
  29.  var act = 0;    // Flag during the action
  30.  var elmH = 0;   // Hue
  31.  var elmS = 128; // Saturation
  32.  var elmV = 255; // Value
  33.  var clrOrg;     // A color before the change
  34.  var TimerID;    // Timer ID
  35.  
  36. if (document.all) {
  37.  document.onmouseover = doRainbowAnchor;
  38.  document.onmouseout = stopRainbowAnchor;
  39.  }
  40.  else if (document.getElementById) {
  41.  document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  42.  document.onmouseover = Mozilla_doRainbowAnchor;
  43.  document.onmouseout = Mozilla_stopRainbowAnchor;
  44.  }
  45.  
  46. function doRainbow(obj)
  47.  {
  48.  if (act == 0) {
  49.  act = 1;
  50.  if (obj)
  51.  objActive = obj;
  52.  else
  53.  objActive = event.srcElement;
  54.  clrOrg = objActive.style.color;
  55.  TimerID = setInterval("ChangeColor()",100);
  56.  }
  57.  }
  58.  
  59.  
  60. function stopRainbow()
  61.  {
  62.  if (act) {
  63.  objActive.style.color = clrOrg;
  64.  clearInterval(TimerID);
  65.  act = 0;
  66.  }
  67.  }
  68.  
  69.  
  70. function doRainbowAnchor()
  71.  {
  72.  if (act == 0) {
  73.  var obj = event.srcElement;
  74.  while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  75.  obj = obj.parentElement;
  76.  if (obj.tagName == 'A' || obj.tagName == 'BODY')
  77.  break;
  78.  }
  79.  
  80. if (obj.tagName == 'A' && obj.href != '') {
  81.  objActive = obj;
  82.  act = 1;
  83.  clrOrg = objActive.style.color;
  84.  TimerID = setInterval("ChangeColor()",100);
  85.  }
  86.  }
  87.  }
  88.  
  89.  
  90. function stopRainbowAnchor()
  91.  {
  92.  if (act) {
  93.  if (objActive.tagName == 'A') {
  94.  objActive.style.color = clrOrg;
  95.  clearInterval(TimerID);
  96.  act = 0;
  97.  }
  98.  }
  99.  }
  100.  
  101.  
  102. function Mozilla_doRainbowAnchor(e)
  103.  {
  104.  if (act == 0) {
  105.  obj = e.target;
  106.  while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  107.  obj = obj.parentNode;
  108.  if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  109.  break;
  110.  }
  111.  
  112. if (obj.nodeName == 'A' && obj.href != '') {
  113.  objActive = obj;
  114.  act = 1;
  115.  clrOrg = obj.style.color;
  116.  TimerID = setInterval("ChangeColor()",100);
  117.  }
  118.  }
  119.  }
  120.  
  121.  
  122. function Mozilla_stopRainbowAnchor(e)
  123.  {
  124.  if (act) {
  125.  if (objActive.nodeName == 'A') {
  126.  objActive.style.color = clrOrg;
  127.  clearInterval(TimerID);
  128.  act = 0;
  129.  }
  130.  }
  131.  }
  132.  
  133.  
  134. function ChangeColor()
  135.  {
  136.  objActive.style.color = makeColor();
  137.  }
  138.  
  139.  
  140. function makeColor()
  141.  {
  142.  // Don't you think Color Gamut to look like Rainbow?
  143.  
  144. // HSVtoRGB
  145.  if (elmS == 0) {
  146.  elmR = elmV;    elmG = elmV;    elmB = elmV;
  147.  }
  148.  else {
  149.  t1 = elmV;
  150.  t2 = (255 - elmS) * elmV / 255;
  151.  t3 = elmH % 60;
  152.  t3 = (t1 - t2) * t3 / 60;
  153.  
  154. if (elmH < 60) {
  155.  elmR = t1;  elmB = t2;  elmG = t2 + t3;
  156.  }
  157.  else if (elmH < 120) {
  158.  elmG = t1;  elmB = t2;  elmR = t1 - t3;
  159.  }
  160.  else if (elmH < 180) {
  161.  elmG = t1;  elmR = t2;  elmB = t2 + t3;
  162.  }
  163.  else if (elmH < 240) {
  164.  elmB = t1;  elmR = t2;  elmG = t1 - t3;
  165.  }
  166.  else if (elmH < 300) {
  167.  elmB = t1;  elmG = t2;  elmR = t2 + t3;
  168.  }
  169.  else if (elmH < 360) {
  170.  elmR = t1;  elmG = t2;  elmB = t1 - t3;
  171.  }
  172.  else {
  173.  elmR = 0;   elmG = 0;   elmB = 0;
  174.  }
  175.  }
  176.  
  177. elmR = Math.floor(elmR).toString(16);
  178.  elmG = Math.floor(elmG).toString(16);
  179.  elmB = Math.floor(elmB).toString(16);
  180.  if (elmR.length == 1)    elmR = "0" + elmR;
  181.  if (elmG.length == 1)    elmG = "0" + elmG;
  182.  if (elmB.length == 1)    elmB = "0" + elmB;
  183.  
  184. elmH = elmH + rate;
  185.  if (elmH >= 360)
  186.  elmH = 0;
  187.  
  188. return '#' + elmR + elmG + elmB;
  189.  }
  190.  
  191. //]]>
  192.  
  193.  </script>
  194.  
  195.  
  196.  
  197. <script type="text/javascript">
  198. // <![CDATA[
  199. var colour="green";
  200. var sparkles=50;
  201.  
  202. /****************************
  203. *  Tinkerbell Magic Sparkle *
  204. * (c) 2005 mf2fm web-design *
  205. *  http://www.mf2fm.com/rv  *
  206. * DON'T EDIT BELOW THIS BOX *
  207. ****************************/
  208. var x=ox=400;
  209. var y=oy=300;
  210. var swide=800;
  211. var shigh=600;
  212. var sleft=sdown=0;
  213. var tiny=new Array();
  214. var star=new Array();
  215. var starv=new Array();
  216. var starx=new Array();
  217. var stary=new Array();
  218. var tinyx=new Array();
  219. var tinyy=new Array();
  220. var tinyv=new Array();
  221.  
  222. window.onload=function() { if (document.getElementById) {
  223.  var i, rats, rlef, rdow;
  224.  for (var i=0; i<sparkles; i++) {
  225.    var rats=createDiv(3, 3);
  226.    rats.style.visibility="hidden";
  227.    document.body.appendChild(tiny[i]=rats);
  228.    starv[i]=0;
  229.    tinyv[i]=0;
  230.    var rats=createDiv(5, 5);
  231.    rats.style.backgroundColor="transparent";
  232.    rats.style.visibility="hidden";
  233.    var rlef=createDiv(1, 5);
  234.    var rdow=createDiv(5, 1);
  235.    rats.appendChild(rlef);
  236.    rats.appendChild(rdow);
  237.    rlef.style.top="2px";
  238.    rlef.style.left="0px";
  239.    rdow.style.top="0px";
  240.    rdow.style.left="2px";
  241.    document.body.appendChild(star[i]=rats);
  242.  }
  243.  set_width();
  244.  sparkle();
  245. }}
  246.  
  247. function sparkle() {
  248.  var c;
  249.  if (x!=ox || y!=oy) {
  250.    ox=x;
  251.    oy=y;
  252.    for (c=0; c<sparkles; c++) if (!starv[c]) {
  253.      star[c].style.left=(starx[c]=x)+"px";
  254.      star[c].style.top=(stary[c]=y)+"px";
  255.      star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  256.      star[c].style.visibility="visible";
  257.      starv[c]=50;
  258.      break;
  259.    }
  260.  }
  261.  for (c=0; c<sparkles; c++) {
  262.    if (starv[c]) update_star(c);
  263.    if (tinyv[c]) update_tiny(c);
  264.  }
  265.  setTimeout("sparkle()", 40);
  266. }
  267.  
  268. function update_star(i) {
  269.  if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  270.  if (starv[i]) {
  271.    stary[i]+=1+Math.random()*3;
  272.    if (stary[i]<shigh+sdown) {
  273.      star[i].style.top=stary[i]+"px";
  274.      starx[i]+=(i%5-2)/5;
  275.      star[i].style.left=starx[i]+"px";
  276.    }
  277.    else {
  278.      star[i].style.visibility="hidden";
  279.      starv[i]=0;
  280.      return;
  281.    }
  282.  }
  283.  else {
  284.    tinyv[i]=50;
  285.    tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  286.    tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  287.    tiny[i].style.width="2px";
  288.    tiny[i].style.height="2px";
  289.    star[i].style.visibility="hidden";
  290.    tiny[i].style.visibility="visible"
  291.  }
  292. }
  293.  
  294. function update_tiny(i) {
  295.  if (--tinyv[i]==25) {
  296.    tiny[i].style.width="1px";
  297.    tiny[i].style.height="1px";
  298.  }
  299.  if (tinyv[i]) {
  300.    tinyy[i]+=1+Math.random()*3;
  301.    if (tinyy[i]<shigh+sdown) {
  302.      tiny[i].style.top=tinyy[i]+"px";
  303.      tinyx[i]+=(i%5-2)/5;
  304.      tiny[i].style.left=tinyx[i]+"px";
  305.    }
  306.    else {
  307.      tiny[i].style.visibility="hidden";
  308.      tinyv[i]=0;
  309.      return;
  310.    }
  311.  }
  312.  else tiny[i].style.visibility="hidden";
  313. }
  314.  
  315. document.onmousemove=mouse;
  316. function mouse(e) {
  317.  set_scroll();
  318.  y=(e)?e.pageY:event.y+sdown;
  319.  x=(e)?e.pageX:event.x+sleft;
  320. }
  321.  
  322. function set_scroll() {
  323.  if (typeof(self.pageYOffset)=="number") {
  324.    sdown=self.pageYOffset;
  325.    sleft=self.pageXOffset;
  326.  }
  327.  else if (document.body.scrollTop || document.body.scrollLeft) {
  328.    sdown=document.body.scrollTop;
  329.    sleft=document.body.scrollLeft;
  330.  }
  331.  else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  332.    sleft=document.documentElement.scrollLeft;
  333. sdown=document.documentElement.scrollTop;
  334.  }
  335.  else {
  336.    sdown=0;
  337.    sleft=0;
  338.  }
  339. }
  340.  
  341. window.onresize=set_width;
  342. function set_width() {
  343.  if (typeof(self.innerWidth)=="number") {
  344.    swide=self.innerWidth;
  345.    shigh=self.innerHeight;
  346.  }
  347.  else if (document.documentElement && document.documentElement.clientWidth) {
  348.    swide=document.documentElement.clientWidth;
  349.    shigh=document.documentElement.clientHeight;
  350.  }
  351.  else if (document.body.clientWidth) {
  352.    swide=document.body.clientWidth;
  353.    shigh=document.body.clientHeight;
  354.  }
  355. }
  356.  
  357. function createDiv(height, width) {
  358.  var div=document.createElement("div");
  359.  div.style.position="absolute";
  360.  div.style.height=height+"px";
  361.  div.style.width=width+"px";
  362.  div.style.overflow="hidden";
  363.  div.style.backgroundColor=colour;
  364.  return (div);
  365. }
  366. // ]]>
  367. </script>
  368.  
  369.  
  370.  
  371.  
  372. <script language=JavaScript>
  373. <!--
  374.  
  375. //Disable right mouse click Script
  376. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  377. //For full source code, visit http://www.dynamicdrive.com
  378.  
  379. var message="This Theme Belongs to YaniLavigne.Tumblr.Com";
  380.  
  381. ///////////////////////////////////
  382. function clickIE4(){
  383. if (event.button==2){
  384. alert(message);
  385. return false;
  386. }
  387. }
  388.  
  389. function clickNS4(e){
  390. if (document.layers||document.getElementById&&!document.all){
  391. if (e.which==2||e.which==3){
  392. alert(message);
  393. return false;
  394. }
  395. }
  396. }
  397.  
  398. if (document.layers){
  399. document.captureEvents(Event.MOUSEDOWN);
  400. document.onmousedown=clickNS4;
  401. }
  402. else if (document.all&&!document.getElementById){
  403. document.onmousedown=clickIE4;
  404. }
  405.  
  406. document.oncontextmenu=new Function("alert(message);return false")
  407.  
  408. // -->
  409. </script>
  410.  
  411.  <title>%MY TUMBLOG</title>
  412.  
  413. <script>
  414. function changeNavigation(id) {document.getElementById('welcome').innerHTML=document.getElementById(id).innerHTML}
  415. </script>
  416.  
  417. <style type="text/css">
  418.  
  419. a:link, a:visited, a:active {
  420. color: #8ec2b7;
  421. cursor: default;
  422. text-decoration:none;
  423. }
  424.  
  425. a:hover {
  426. color: #4b5209;
  427. cursor: crosshair;
  428. text-decoration:none;
  429. background-color:#e4eba7;
  430. }
  431.  
  432.  
  433. body {
  434.  background-color: #f3f0dd;
  435.  background-image: url('http://i.imgur.com/XN9MsbC.gif');
  436.  background-repeat: repeat;
  437.  cursor: default;
  438.  font-family: tahoma;
  439.  font-size: 8pt;
  440.  color: #3f3f3f;
  441.  text-align:justify;
  442.  
  443.  scrollbar-arrow-color: #c03533;
  444.  scrollbar-track-color: #eff0e6;
  445.  scrollbar-face-color: #eff0e6;
  446.  scrollbar-darkshadow-color: #eff0e6;
  447.  scrollbar-shadow-color: #eff0e6;
  448.  scrollbar-3dlight-color: #eff0e6;
  449.  scrollbar-highlight-color: #eff0e6;
  450.  
  451. }
  452.  
  453. .h1 {
  454.  
  455.  font-family: Century gothic;
  456.  font-size: 20px;
  457.  line-height: 20px;
  458.  color: #dca83b;
  459.  letter-spacing: -1pt;
  460.  font-weight:none;
  461.  text-align:left;
  462.  
  463. }
  464.  
  465. .h2 {
  466.  
  467.  font-family: Arial;
  468.  font-size: 15px;
  469.  line-height: 14px;
  470.  color: #b9c767;
  471.  letter-spacing: -1pt
  472.  text-align: left;
  473.  
  474. }
  475.  
  476. .navs {
  477.  
  478.  font-family: georgia;
  479.  font-size: 12pt;
  480.  text-align: left;
  481.  font-color: #68675a;
  482.  
  483. }
  484.  
  485. blockquote {
  486.  
  487.  border: 1px dotted #b02405;
  488.  padding: 5px;
  489. }
  490.  
  491.  
  492. b {
  493.  
  494.  color: #fceef2;
  495.  background-color: #eb7b9a;
  496. }
  497.  
  498. u {
  499.  
  500.  font-color: #4b5209;
  501.  border-bottom: 2px solid #e7f05a;
  502. }
  503.  
  504.  
  505. #navbar-iframe {  
  506.  
  507.  display: none;
  508. }
  509.  
  510. </style>
  511. </head>
  512. <body>
  513. <div style="position: absolute; top:0px; left:0px; background-color:transparent;">
  514. <img src="http://www.dohaup.com/up/2013-07-18/admin2056681778.gif">
  515. </div>
  516.  
  517. <div style="position:absolute; top: 400px; left: 800; background-color: transparent;">
  518.  
  519. <span class="navs" style="cursor:crosshair;" onMouseout="this.style.color='#68675a';" onMouseover="this.style.color='#0b0b09';" onClick="changeNavigation('profile')">About Me</span>
  520.  
  521. <br>
  522.  
  523. <span class="navs" style="cursor:crosshair;" onMouseout="this.style.color='#68675a';" onMouseover="this.style.color='#0b0b09';" onClick="changeNavigation('entries')">ChatBox</span>
  524.  
  525. <br>
  526.  
  527. <span class="navs" style="cursor:crosshair;" onMouseout="this.style.color='#68675a';" onMouseover="this.style.color='#0b0b09';" onClick="changeNavigation('tagboard')">CREDITS</span>
  528.  
  529. <br>
  530.  
  531. </div>  
  532.  
  533.  
  534.  
  535. <div id="welcome" style="position:absolute; top: 225px; left:276px; z-index:2; width:458px; height:260px; overflow-y:
  536. auto;overflow-x: hidden; background-color:transparent; padding: 3px;">
  537.  
  538. <div class="h1">{Title}</div>
  539.  
  540. <ol id="posts">
  541.             {block:Posts}
  542.                 {block:Text}
  543.                     <li id="each">
  544. <div id="box"><a href="{Permalink}"><b>text post</b>  {ShortDayOfWeek},
  545.  
  546. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  547.                         {block:Title}
  548.                             <p id="posttitle"><a href="{Permalink}">{Title}</a></p>
  549.                         {/block:Title}
  550.                        
  551.                         <p>{Body}</p>
  552.  
  553.  
  554.                     </li><br><br>  
  555. <img src="http://i.imgur.com/5uoHWDs.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  556.  
  557. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  558.                 {/block:Text}
  559.                
  560.                 {block:Photo}
  561.                     <li id="each">
  562.  
  563. <div id="box"><a href="{Permalink}"><b>photo post</b>  {ShortDayOfWeek},
  564.  
  565. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  566.                         {LinkOpenTag}<img src="{PhotoURL-400} "
  567.  
  568. alt="{PhotoAlt}"/>{LinkCloseTag}
  569.                        
  570.                         {block:Caption}
  571.                             <p>{Caption}</p>
  572.                         {/block:Caption}
  573.  
  574.                     </li>  
  575.  
  576.  
  577. <img src="http://i.imgur.com/XcBjUWJ.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  578.  
  579. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  580.                 {/block:Photo}
  581.                
  582.                 {block:Quote}
  583.                     <li id="each">
  584. <div id="box"><a href="{Permalink}"><b>quote post</b>  {ShortDayOfWeek},
  585.  
  586. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  587. <p class="qcontainer">
  588.                         <span class="quote">“{Quote}”</span>
  589.                        
  590.                         {block:Source}
  591.                             <span class="source"><br><i>{Source}</i></span>
  592.                         {/block:Source}
  593. </p>
  594.  
  595.                     </li>  
  596.  
  597. <img src="http://i.imgur.com/5uoHWDs.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  598.  
  599. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  600.                 {/block:Quote}
  601.                
  602.                 {block:Link}
  603.                     <li id="each">
  604. <div id="box"><a href="{Permalink}"><b>link post</b>  {ShortDayOfWeek},
  605.  
  606. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  607.                         <p><a href="{URL}" id="postlink" {Target}>{Name}</a></p>
  608.                        
  609.                         {block:Description}
  610.                             <p>{Description}</p>
  611.                         {/block:Description}
  612.  
  613.  
  614.                     </li>  
  615.  
  616.  
  617.  
  618. <img src="http://i.imgur.com/XcBjUWJ.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  619.  
  620. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  621.                 {/block:Link}
  622.                
  623.                 {block:Chat}
  624.                     <li id="each">
  625. <div id="box"><a href="{Permalink}"><b>chat post</b>  {ShortDayOfWeek},
  626.  
  627. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  628.                         {block:Title}
  629.                             <p id="posttitle"><a href="{Permalink}">{Title}</a></p>
  630.                         {/block:Title}
  631.  
  632.                         <ul class="chat">
  633.                             {block:Lines}
  634.                                 <li class="{Alt}">
  635.                                     {block:Label}
  636.                                         <span class="label">{Label}</span>
  637.                                     {/block:Label}
  638.                                    
  639.                                     {Line}
  640.                                
  641.                             {/block:Lines}
  642.                         </ul>
  643.  
  644.                     </li></li>  
  645.  
  646. <img src="http://st.deviantart.net/emoticons/h/huggle.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  647.  
  648. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  649.                 {/block:Chat}
  650.                
  651.                 {block:Video}
  652.                     <li id="each">
  653. <div id="box"><a href="{Permalink}"><b>video post</b>  {ShortDayOfWeek},
  654.  
  655. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  656.                         {Video-400}
  657.                        
  658.                         {block:Caption}
  659.                             <p>{Caption}</p>
  660.                         {/block:Caption}
  661.  
  662.                     </li>  
  663.  
  664.  
  665. <img src="http://i.imgur.com/XcBjUWJ.gif" border="0" alt="Photobucket"></a> {block:NoteCount}<a
  666.  
  667. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  668.                 {/block:Video}
  669.                 {block:Audio}
  670.                     <li id="each">
  671. <div id="box"><a href="{Permalink}"><b>audio post</b>  {ShortDayOfWeek},
  672.  
  673. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a></div>
  674.                         <p align="center">{AudioPlayerBlack}</p>
  675.                        
  676.                         {block:Caption}
  677.                             <p>{Caption}</p>
  678.                         {/block:Caption}
  679.  
  680.                     </li>  
  681.  
  682.  {block:NoteCount}<a
  683.  
  684. href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br><br>
  685.                 {/block:Audio}
  686.  
  687. {block:PostNotes}
  688. {PostNotes}
  689. {/block:PostNotes}
  690.            
  691. {/block:Posts}            
  692. {/block:Posts}
  693.  
  694.         </ol>
  695.  
  696. {block:PreviousPage}
  697.                 <a href="{PreviousPage}"><< Previous</a>
  698.             {/block:PreviousPage}
  699.  
  700.             {block:NextPage}
  701.                 <a href="{NextPage}">Next >></a>
  702.             {/block:NextPage}
  703.  
  704. <br>
  705. <br>
  706.  
  707.  
  708.  
  709. <br>
  710. <br>
  711. </div>
  712.  
  713. <div id="profile" style="display:none">
  714. <div class="h1">     This is All ABout Me</div><br>
  715. {block:Description}{Description}{/block:Description}
  716. <br>
  717.  
  718. </div>
  719.  
  720.  
  721. <div id="entries" style="display:none">
  722. <Blogger>
  723.  
  724. <div id="cboxdiv" style="text-align: center; line-height: 0">
  725. <div><iframe frameborder="0" width="300" height="180" src="http://www2.cbox.ws/box/?boxid=1894031&boxtag=8111&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#FFD4F7 1px solid;" id="cboxmain"></iframe></div>
  726. <div><iframe frameborder="0" width="300" height="75" src="http://www2.cbox.ws/box/?boxid=1894031&boxtag=8111&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#FFD4F7 1px solid;border-top:0px" id="cboxform"></iframe></div>
  727. </div>
  728. <!-- END CBOX -->
  729.  
  730. </div>
  731.  
  732. <div id="tagboard" style="display:none">
  733. <div class="h1">credits.</div><br>
  734.  
  735. Get This Theme At:  <a href="http://www.yanilavigne.tumblr.com">YaniLavigne's</a><a href="http://www.yanilavigne.tumblr.com/themes">Themes</a><br>
  736.  
  737. Theme Designer   <a href="http://www.blogskins.com/me/dancingsheep/">Dancing</a><a href="http://www.falling-from-
  738. below.blogspot.com">Sheep</a>
  739. <br>
  740.  
  741. <br>
  742. <br>
  743. </div>
  744.  
  745. <br>
  746. <br>
  747. </div>
  748.  
  749. <div id="others" style="display:none">
  750. <div class="h1">links.</div><br>
  751.  
  752. <a href="http://www.blogger.com">link</a><br>
  753. <a href="http://www.blogger.com">link</a><br>
  754. <a href="http://www.blogger.com">link</a><br>
  755. <a href="http://www.blogger.com">link</a><br>
  756. <a href="http://www.blogger.com">link</a><br>
  757.  
  758. <br>
  759.  
  760.  
  761. <div class="h1">THANK YOU AREA:</div><br>
  762.  
  763. <FONT SIZE="14px">Designer   <a href="http://www.blogskins.com/me/dancingsheep/">Dancing</a><a href="http://www.falling-from-below.blogspot.com">Sheep</a>
  764. <br>
  765. Resources   <a href="http://shabbyprincess.com/">x</a>
  766.   <a href="http://digitalscrapbookplace.com">x</a>
  767.  
  768.  
  769.  
  770. <style type="text/css">body, a:hover {cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur836.cur), progress !important;}</style><a href="http://www.cursors-4u.com/" target="_blank" title="Small Cute Yellow Pointer"><img src="http://cur.cursors-4u.net/cursor.png" border="0" alt="Small Cute Yellow Pointer" style="position:absolute; top: 0px; right: 0px;" /></a>
  771.  
  772.  
  773. </FONT>
  774. <br>
  775. <br>
  776. </div>
  777.  
  778. </body>
  779. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement