Advertisement
skullsandrosesthemes

Glaze

Jul 18th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.97 KB | None | 0 0
  1. <!-- cream theme was made by tropicalii. You may NOT use this theme for anything else but your own blog. You can edit it for YOURSELF, but do not put it on your "theme" site, or you will be reported. Enjoy this theme! -->
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6.  
  7.  
  8. <script type="text/javascript">
  9. // <![CDATA[
  10. var colour="#55d2dd"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  11. var sparkles=60;
  12.  
  13. /****************************
  14. * Tinkerbell Magic Sparkle *
  15. *(c)2005-11 mf2fm web-design*
  16. * http://www.mf2fm.com/rv *
  17. * DON'T EDIT BELOW THIS BOX *
  18. ****************************/
  19. var x=ox=400;
  20. var y=oy=300;
  21. var swide=800;
  22. var shigh=600;
  23. var sleft=sdown=0;
  24. var tiny=new Array();
  25. var star=new Array();
  26. var starv=new Array();
  27. var starx=new Array();
  28. var stary=new Array();
  29. var tinyx=new Array();
  30. var tinyy=new Array();
  31. var tinyv=new Array();
  32.  
  33. window.onload=function() { if (document.getElementById) {
  34. var i, rats, rlef, rdow;
  35. for (var i=0; i<sparkles; i++) {
  36. var rats=createDiv(3, 3);
  37. rats.style.visibility="hidden";
  38. document.body.appendChild(tiny[i]=rats);
  39. starv[i]=0;
  40. tinyv[i]=0;
  41. var rats=createDiv(5, 5);
  42. rats.style.backgroundColor="transparent";
  43. rats.style.visibility="hidden";
  44. var rlef=createDiv(1, 5);
  45. var rdow=createDiv(5, 1);
  46. rats.appendChild(rlef);
  47. rats.appendChild(rdow);
  48. rlef.style.top="2px";
  49. rlef.style.left="0px";
  50. rdow.style.top="0px";
  51. rdow.style.left="2px";
  52. document.body.appendChild(star[i]=rats);
  53. }
  54. set_width();
  55. sparkle();
  56. }}
  57.  
  58. function sparkle() {
  59. var c;
  60. if (x!=ox || y!=oy) {
  61. ox=x;
  62. oy=y;
  63. for (c=0; c<sparkles; c++) if (!starv[c]) {
  64. star[c].style.left=(starx[c]=x)+"px";
  65. star[c].style.top=(stary[c]=y)+"px";
  66. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  67. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  68. star[c].style.visibility="visible";
  69. starv[c]=50;
  70. break;
  71. }
  72. }
  73. for (c=0; c<sparkles; c++) {
  74. if (starv[c]) update_star(c);
  75. if (tinyv[c]) update_tiny(c);
  76. }
  77. setTimeout("sparkle()", 40);
  78. }
  79.  
  80. function update_star(i) {
  81. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  82. if (starv[i]) {
  83. stary[i]+=1+Math.random()*3;
  84. if (stary[i]<shigh+sdown && starx[i]>0) {
  85. star[i].style.top=stary[i]+"px";
  86. starx[i]+=(i%5-2)/5;
  87. star[i].style.left=starx[i]+"px";
  88. }
  89. else {
  90. star[i].style.visibility="hidden";
  91. starv[i]=0;
  92. return;
  93. }
  94. }
  95. else {
  96. tinyv[i]=50;
  97. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  98. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  99. tiny[i].style.width="2px";
  100. tiny[i].style.height="2px";
  101. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  102. star[i].style.visibility="hidden";
  103. tiny[i].style.visibility="visible"
  104. }
  105. }
  106.  
  107. function update_tiny(i) {
  108. if (--tinyv[i]==25) {
  109. tiny[i].style.width="1px";
  110. tiny[i].style.height="1px";
  111. }
  112. if (tinyv[i]) {
  113. tinyy[i]+=1+Math.random()*3;
  114. if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
  115. tiny[i].style.top=tinyy[i]+"px";
  116. tinyx[i]+=(i%5-2)/5;
  117. tiny[i].style.left=tinyx[i]+"px";
  118. }
  119. else {
  120. tiny[i].style.visibility="hidden";
  121. tinyv[i]=0;
  122. return;
  123. }
  124. }
  125. else tiny[i].style.visibility="hidden";
  126. }
  127.  
  128. document.onmousemove=mouse;
  129. function mouse(e) {
  130. set_scroll();
  131. y=(e)?e.pageY:event.y+sdown;
  132. x=(e)?e.pageX:event.x+sleft;
  133. }
  134.  
  135. function set_scroll() {
  136. if (typeof(self.pageYOffset)=="number") {
  137. sdown=self.pageYOffset;
  138. sleft=self.pageXOffset;
  139. }
  140. else if (document.body.scrollTop || document.body.scrollLeft) {
  141. sdown=document.body.scrollTop;
  142. sleft=document.body.scrollLeft;
  143. }
  144. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  145. sleft=document.documentElement.scrollLeft;
  146. sdown=document.documentElement.scrollTop;
  147. }
  148. else {
  149. sdown=0;
  150. sleft=0;
  151. }
  152. }
  153.  
  154. window.onresize=set_width;
  155. function set_width() {
  156. if (typeof(self.innerWidth)=="number") {
  157. swide=self.innerWidth;
  158. shigh=self.innerHeight;
  159. }
  160. else if (document.documentElement && document.documentElement.clientWidth) {
  161. swide=document.documentElement.clientWidth;
  162. shigh=document.documentElement.clientHeight;
  163. }
  164. else if (document.body.clientWidth) {
  165. swide=document.body.clientWidth;
  166. shigh=document.body.clientHeight;
  167. }
  168. }
  169.  
  170. function createDiv(height, width) {
  171. var div=document.createElement("div");
  172. div.style.position="absolute";
  173. div.style.height=height+"px";
  174. div.style.width=width+"px";
  175. div.style.overflow="hidden";
  176. return (div);
  177. }
  178.  
  179. function newColour() {
  180. var c=new Array();
  181. c[0]=255;
  182. c[1]=Math.floor(Math.random()*256);
  183. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  184. c.sort(function(){return (0.5 - Math.random());});
  185. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  186. }
  187. // ]]>
  188. </script>
  189.  
  190.  
  191.  
  192. <script type="text/javascript">
  193.  
  194.  
  195.  
  196. <!--
  197. //(c) Ian Muscat 2007
  198. function IE(e)
  199. {
  200. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  201. {
  202. return false;
  203. }
  204. }
  205. function NS(e)
  206. {
  207. if (document.layers || (document.getElementById && !document.all))
  208. {
  209. if (e.which == "2" || e.which == "3")
  210. {
  211. return false;
  212. }
  213. }
  214. }
  215. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  216. //-->
  217. </script>
  218.  
  219.  
  220.  
  221. <script type="text/javascript"
  222. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  223.  
  224.  
  225.  
  226. <style type="text/css">
  227.  
  228. ::selection {
  229. background: #9f9ab9;
  230. color: #ffffff;
  231. }
  232.  
  233. ::-moz-selection {
  234. background: #9f9ab9;
  235. color: #ffffff;
  236. }
  237.  
  238.  
  239. #tumblr_controls{
  240. position:fixed !important;
  241. }
  242.  
  243. .wrapper{
  244. margin: 0px auto;
  245. width: 802px;
  246. }
  247.  
  248. .header{
  249. float: left;
  250. width: 100%;
  251. }
  252.  
  253. .left{
  254. float: left;
  255. margin-right: 20px;
  256. width: 802px;
  257. }
  258.  
  259. .right{
  260. float: right;
  261. width: 200px;
  262. background-color: #000;
  263. }
  264.  
  265. body {
  266. background-image: url(http://static.tumblr.com/jnukgfq/Wfjmq4wav/sophisticated.png);
  267. CURSOR: URL(http://media.tumblr.com/tumblr_m2um8yWkrX1qfamg6.gif), PROGRESS;
  268. background-color:#ffffff;
  269. background-repeat;
  270. margin: 0px;
  271. padding: 0px;
  272. font-family:silkscreen;
  273. color:#474747;
  274. font-size:8px; line-height:9px;
  275. text-align:justify;
  276. text-transform:normal;
  277. background-attachment:fixed;
  278. }
  279.  
  280.  
  281.  
  282. a:link, a:active, a:visited {
  283. text-decoration:none;
  284. font-family:silkscreen;
  285. font-size:8px;
  286. line-height:8px;
  287. font-weight:normal; text-transform:normal;
  288. color:#9f9ab9;
  289. }
  290.  
  291. a:hover {
  292. color:#b3725a;
  293. CURSOR: URL(http://media.tumblr.com/tumblr_m2um8yWkrX1qfamg6.gif), PROGRESS;
  294. font-family:handy;
  295. font-size:8px;
  296. font-style: underline;
  297. }
  298.  
  299. b{color:#9f9ab9; font-weight:normal;}
  300. i{color:#ee6195; font-style:normal;}
  301. u{color:#b3725a;}
  302. s{color:#55d2dd;}
  303.  
  304. d{
  305. font-family: pixel;
  306. text-decoration: none;
  307. font-size: 8px;
  308. color:#9f9ab9;
  309. text-transform: lowercase;}
  310.  
  311. a{
  312. font-family: pixel;
  313. font-size: 8px;
  314. color:#ee6195;
  315. text-transform: lowercase;}
  316.  
  317. c{
  318. font-family: pixel;
  319. font-size: 8px;
  320. color:#b3725a;
  321. text-transform: lowercase;}
  322.  
  323. m{
  324. font-family: pixel;
  325. font-size: 8px;
  326. color:#55d2dd;
  327. text-transform: lowercase;}
  328.  
  329. w{
  330. font-family: handy;
  331. font-size: 8px;
  332. color:#9f9ab9;
  333. text-transform: lowercase;}
  334.  
  335.  
  336. .bffs{
  337. width:20px;
  338. height:20px;
  339. margin:2px;
  340. text-align: center;
  341. margin-bottom:-1px;
  342. padding:1px;
  343. border:1px solid #9f9ab9;}
  344.  
  345. .bffr{
  346. width:20px;
  347. height:20px;
  348. margin:2px;
  349. text-align: center;
  350. margin-bottom:-1px;
  351. padding:1px;
  352. border:1px solid #ee6195;}
  353.  
  354. .bfft{
  355. width:20px;
  356. height:20px;
  357. margin:2px;
  358. text-align: center;
  359. margin-bottom:-1px;
  360. padding:1px;
  361. border:1px solid #b3725a;}
  362.  
  363. .bffu{
  364. width:20px;
  365. height:20px;
  366. margin:2px;
  367. text-align: center;
  368. margin-bottom:-1px;
  369. padding:1px;
  370. border:1px solid #55d2dd;}
  371.  
  372. .bffv{
  373. width:20px;
  374. height:20px;
  375. margin:2px;
  376. text-align: center;
  377. margin-bottom:-1px;
  378. padding:1px;
  379. border:1px solid #67a7c5;}
  380.  
  381.  
  382.  
  383.  
  384.  
  385. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  386.  
  387. a.linka, a.linka:link, a.linka:active, a.linka:visited {
  388. display:block;
  389. height:20px;
  390. width: auto;
  391. text-align:center;
  392. text-transform: lowercase;
  393. text-decoration: none;
  394. color: #9f9ab9;
  395. font-family: lobster;
  396. font-size:22px;
  397. border-left: 4px solid #9f9ab9;
  398. border-right: 4px solid #9f9ab9
  399. border-radius:5px;
  400. -moz-border-radius:5px;
  401. }
  402.  
  403. a.linka:hover {
  404. text-align:left;
  405. }
  406.  
  407. a.linkb, a.linkb:link, a.linkb:active, a.linkb:visited {
  408. display:block;
  409. height:20px;
  410. width: auto;
  411. text-align:center;
  412. text-transform: lowercase;
  413. text-decoration: none;
  414. color: #ee6195;
  415. font-family: lobster;
  416. font-size:22px;
  417. border-left: 4px solid #ee6195;
  418. border-right: 4px solid #ee6195
  419. border-radius:5px;
  420. -moz-border-radius:5px;
  421. }
  422.  
  423. a.linkb:hover {
  424. text-align:left;
  425. }
  426.  
  427. a.linkc, a.linkc:link, a.linkc:active, a.linkc:visited {
  428. display:block;
  429. height:20px;
  430. width: auto;
  431. text-align:center;
  432. text-transform: lowercase;
  433. text-decoration: none;
  434. color: #b3725a;
  435. font-family: lobster;
  436. font-size:22px;
  437. border-left: 4px solid #b3725a;
  438. border-right: 4px solid #b3725a
  439. border-radius:5px;
  440. -moz-border-radius:5px;
  441. }
  442.  
  443. a.linkc:hover {
  444. text-align:left;
  445. }
  446.  
  447. a.linkd, a.linkd:link, a.linkd:active, a.linkd:visited {
  448. display:block;
  449. height:20px;
  450. width: auto;
  451. text-align:center;
  452. text-transform: lowercase;
  453. text-decoration: none;
  454. color: #55d2dd;
  455. font-family: lobster;
  456. font-size:22px;
  457. border-left: 4px solid #55d2dd;
  458. border-right: 4px solid #55d2dd
  459. border-radius:5px;
  460. -moz-border-radius:5px;
  461. }
  462.  
  463. a.linkd:hover {
  464. text-align:left;
  465. }
  466.  
  467. a.linke, a.linke:link, a.linke:active, a.linke:visited {
  468. display:block;
  469. height:20px;
  470. width: auto;
  471. text-align:center;
  472. text-transform: lowercase;
  473. text-decoration: none;
  474. color: #ffe9af;
  475. font-family: lobster;
  476. font-size:22px;
  477. border-left: 4px solid #ffe9af;
  478. border-right: 4px solid #ffe9af
  479. border-radius:5px;
  480. -moz-border-radius:5px;
  481. }
  482.  
  483. a.linke:hover {
  484. text-align:left;
  485. }
  486.  
  487.  
  488. .box{
  489. background:#fafafa;
  490. border:1px solid #e2e2e2;
  491. margin-bottom:5px;
  492. padding:3px;
  493. text-align:justify;
  494. overflow:hidden;
  495. -webkit-border-radius: 10px;
  496. -moz-border-radius: 10px;
  497. border-radius: 10px;}
  498.  
  499. .bubble {align:right;background: #ececec; margin:7px 0px 5px 66px;padding:10px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
  500. .bubble p {margin:1px 0px;}
  501. .bubble span {display:block; position:absolute; width:1px; height:1px; font-size: 0; line-height: 1px; left:-10px;top:10px; border-top:7px solid transparent;
  502. border-bottom:7px solid transparent; border-right:10px solid #ececec;}
  503.  
  504. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #ececec}
  505.  
  506.  
  507.  
  508. ::-webkit-scrollbar {
  509. height: 8px;
  510. width: 12px;
  511. background: #45d1e0;
  512. background-image: url('http://static.tumblr.com/jnukgfq/tu3mq4z4f/sfdklsjdfkl.png');}
  513.  
  514. ::-webkit-scrollbar-thumb {
  515. background: #45d1e0;
  516. background-image: url('http://static.tumblr.com/jnukgfq/tu3mq4z4f/sfdklsjdfkl.png');
  517. border:1px solid #d0d0d0;
  518. -webkit-border-radius: 8px;}
  519.  
  520. ::-webkit-scrollbar-corner {
  521. background: #45d1e0;
  522. background-image: url('http://static.tumblr.com/jnukgfq/tu3mq4z4f/sfdklsjdfkl.png');}
  523.  
  524.  
  525. @font-face { font-family: "freehand"; src: url('http://static.tumblr.com/u5sjz8c/0g1m8pv5t/tt1018m_.ttf');}
  526. @font-face { font-family: "bangalore"; src: url('http://static.tumblr.com/rmj06l2/VP8llx2mg/bangalor.ttf'); }
  527. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/u5sjz8c/k3Fm8y1ck/handy00.ttf'); }
  528.  
  529.  
  530. .entry {
  531. margin:0px;
  532. padding: 1px;
  533. float:left;
  534. position:center;
  535. border: 3px solid #ffffff;
  536. background-color: #f9f9f9;
  537. width:286px;
  538. }
  539.  
  540. .entry .permalink{
  541. position:absolute;
  542. width:100%;
  543. height:auto;
  544. left:0px;
  545. top:0px;
  546. padding:1px;
  547. background-color:#f9f9f9;
  548. overflow:hidden;
  549. font-family: handy;
  550. text-transform: lowercase;
  551. font-size: 8px;
  552. line-height:9px;
  553. text-align:center;
  554. opacity:0.0;
  555. border-radius:4px;
  556. -moz-border-radius:4px;
  557. }
  558.  
  559. .entry:hover .permalink{
  560. margin-top:0%;
  561. overflow:visible;
  562. -webkit-transition: all 0.4s linear; opacity: 0.8;
  563. -webkit-transition: all 0.4s linear;
  564. -moz-transition: all 0.4s linear;
  565. transition: all 0.4s linear;
  566. }
  567.  
  568.  
  569.  
  570. #posts {
  571. width: 600px;
  572. left: -5px;
  573. top: 201px;
  574. float:left;
  575. }
  576.  
  577. #navigation {
  578. position: absolute;
  579. position: fixed;
  580. left: 1139px;
  581. top: 35px;
  582. height:100%;
  583. width:auto;
  584. }
  585.  
  586.  
  587.  
  588. div#sidebar{
  589. position:fixed !important;
  590. left: 9px;
  591. width: 260px;
  592. background: #ffffff;
  593. top: 201px;
  594. padding: 0px;
  595. font-family: silkscreen;
  596. font-size: 8px;
  597. line-height:8px;
  598. padding: 1px;
  599. letter-spacing:0px;
  600. }
  601.  
  602. div#sidebar2{
  603. position:fixed !important;
  604. right: 40px;
  605. width: 300px;
  606. top: 40px;
  607. border:1px solid #e2e2e2;
  608. padding: 0px;
  609. font-family: silkscreen;
  610. font-size: 8px;
  611. line-height:8px;
  612. padding: 1px;
  613. letter-spacing:0px;
  614. }
  615.  
  616. div#favs{
  617. position:fixed !important;
  618. width:90px;
  619. margin-left:795px;
  620. margin-top:100px;
  621. padding:2px;
  622. height:auto;
  623. background-color: #000;
  624. border:1px solid #313131;
  625. text-align:left;}
  626.  
  627.  
  628. #infscr-loading{
  629. top: -20px;
  630. position: absolute;
  631. left: 50%;
  632. margin-left:-8px;
  633. width:16px;
  634. height:11px;
  635. overflow:hidden;
  636. margin-bottom: 50px;
  637. }
  638.  
  639. .title{
  640. font-family: lobster;
  641. color: #9f9ab9;
  642. font-size: 24px;
  643. text-align:left;
  644. text-transform:lowercase;
  645. margin:1px;
  646. }
  647.  
  648. .box h1{
  649. color: #55d2dd;
  650. font-family: lobster;
  651. font-size: 24px;
  652. text-align: center;
  653. font-style: none;
  654. font-weight: normal;
  655. text-transform: lowercase;
  656. line-height: 15px;
  657. border-bottom: 1px dashed #e1e1e1;
  658. margin: 0px;
  659. -webkit-border-radius: 10px;
  660. -moz-border-radius: 10px;
  661. border-radius: 10px;}
  662.  
  663.  
  664. blockquote {
  665. width:200px;
  666. margin-left: 10px;
  667. margin-right: 10px;
  668. text-align:center;
  669. color:#4c384c;
  670. font-family:handy;
  671. font-size:8px;
  672. background-color: #fff;
  673. background-image: url('');
  674. border-radius:5px;
  675. -moz-border-radius:5px;
  676. border:1px solid #cfcfcf;
  677. }
  678.  
  679.  
  680. @font-face {
  681. font-family: "tinytots";
  682. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  683. }
  684.  
  685. @font-face { font-family: 'pixel'; src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf'); }
  686.  
  687. @font-face { font-family: 'tattoo'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/k92m2cek0/vtc-nuetattooscript.ttf'); }
  688.  
  689. @font-face { font-family: 'starry'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/A9Im3zav5/grinchedregular.ttf'); }
  690.  
  691. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  692.  
  693. @font-face
  694. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  695.  
  696.  
  697.  
  698. {CustomCSS}
  699.  
  700. </style>
  701.  
  702. {block:IndexPage}
  703. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  704. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  705.  
  706. <script type="text/javascript">
  707. $(window).load(function () {
  708. var $content = $('#posts');
  709. $content.masonry({itemSelector: '.entry'}),
  710. $content.infinitescroll({
  711. navSelector : 'div#pagination',
  712. nextSelector : 'div#pagination a#nextPage',
  713. itemSelector : '.entry',
  714. loading: {
  715. finishedMsg: '',
  716. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  717. },
  718. bufferPx : 600,
  719. debug : false,
  720. },
  721. // call masonry as a callback.
  722. function( newElements ) {
  723. var $newElems = $( newElements );
  724. $newElems.hide();
  725. // ensure that images load before adding to masonry layout
  726. $newElems.imagesLoaded(function(){
  727. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  728.  
  729.  
  730. });
  731. });
  732. });
  733. </script>
  734.  
  735. {/block:IndexPage}
  736.  
  737. <title>(title)</title>
  738. <link rel="shortcut icon" href="http://olhar-43.net/conteudo/minigifs/11/1.gif">
  739.  
  740. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  741. <meta name="viewport" content="width=820" />
  742.  
  743. </head>
  744. <body>
  745.  
  746.  
  747.  
  748.  
  749.  
  750. <div class="wrapper">
  751. <div class="header">
  752. </div>
  753.  
  754.  
  755.  
  756.  
  757. <div class="left">
  758.  
  759. <div id="posts">
  760.  
  761. {block:Posts}
  762. <div class="entry">
  763.  
  764. {block:IndexPage}
  765. <div class="permalink">
  766. <w>Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</w>-- <a href="{permalink}"> {NoteCount}</a> -- <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  767. {/block:IndexPage}
  768.  
  769. {block:Text}
  770. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  771. {/block:Text}
  772.  
  773. {block:Link}
  774. <a href="{URL}" class="title">{Name}</a>
  775. {block:Description}{Description}{/block:Description}
  776. {block:Link}
  777.  
  778. {block:Photo}
  779. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}{/block:IndexPage}
  780. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>{LinkCloseTag}{/block:PermalinkPage}
  781. {/block:Photo}
  782.  
  783. {block:Photoset}
  784. {block:IndexPage}
  785. <center>
  786. {Photoset-250}</center>
  787. {/block:IndexPage}
  788. {block:PermalinkPage}
  789. <center>
  790. {Photoset-500}</center>
  791. {/block:PermalinkPage}
  792. {/block:Photoset}
  793.  
  794. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}{/block:Answer}
  795.  
  796. {block:Quote}
  797. {Quote}</span>
  798. {block:Source}<a>{Source}</a>{/block:Source}
  799. {/block:Quote}
  800.  
  801. {block:Chat}
  802. {block:Title}<span class="title">{Title}</span>{/block:Title}
  803. <ul class="chat">
  804. {block:Lines}
  805. <li class="user_{UserNumber}">
  806. {block:Label}
  807. <span class="label">{Label}</span>
  808. {/block:Label}
  809.  
  810. {Line}
  811. </li>
  812. {/block:Lines}
  813. </ul>
  814. {/block:Chat}
  815.  
  816. {block:Audio}
  817. <center><div style="width:100%; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  818. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  819. {/block:Audio}
  820.  
  821. {block:Video}
  822. {block:IndexPage}
  823. <center>
  824. {Video-250}</center>
  825. {/block:IndexPage}
  826. {block:PermalinkPage}
  827. <center>
  828. {Video-500}</center>
  829. {/block:PermalinkPage}
  830. {block:Video}
  831.  
  832. {block:PermalinkPage}
  833. <center>
  834. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  835.  
  836.  
  837. {/block:PermalinkPage}
  838.  
  839.  
  840. {block:PostNotes}{PostNotes}
  841. {/block:PostNotes}
  842. </div>
  843.  
  844.  
  845. {/block:Posts}
  846. </div>
  847. </div>
  848. {block:IndexPage}
  849. {block:Pagination}
  850. <div id="pagination">
  851. {block:NextPage}
  852. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  853. {/block:NextPage}
  854. {block:PreviousPage}
  855. <a href="{PreviousPage}">&larr;&nbsp;</a>
  856. {/block:PreviousPage}
  857. </div>
  858. {/block:Pagination}
  859. {/block:IndexPage}
  860. </div>
  861.  
  862.  
  863.  
  864. </div>
  865.  
  866.  
  867. <div id="sidebar">
  868. <div class="box">
  869. <img src="http://25.media.tumblr.com/tumblr_mcyzirqHgM1rhipuzo1_500.jpg" width=100%; align="left" />
  870. </div>
  871. <div class="box">
  872. <img src="http://i122.photobucket.com/albums/o260/mhilka/minigifs/mini69.gif"/><a>></a><d>></d><c>></c><m>></m><w>></w><d>write</d> something <c>about</c> yourself here. like your <m>name</m>, age, where you <w>came</w> from, what <d>school</d> you go to, your activities, and <c>all</c> that other good <m>stuff</m>. remember to keep <w>credits</w> on everything. If you have any <d>questions</d> about this theme, don't be <a>afraid</a> to ask. I will try my <m>best</m> to help you. please have <w>basic</w> knowledge of <d>html</d> before you use this <a>theme</a> because i can't help with <m>everything</m>.
  873. </div>
  874.  
  875.  
  876.  
  877. <div class="box">
  878. <center>
  879. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_multi.swf" width="120" height="19">
  880. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_multi.swf" />
  881. <param name="bgcolor" value="#ffffff" />
  882. <param name="FlashVars" value="mp3=URLHERE&amp;height=19&amp;autoplay=1&amp;loop=1&amp;buttonwidth=28&amp;sliderwidth=0&amp;sliderheight=0&amp;skin=none&amp;loadingcolor=9f9ab9&amp;bgcolor=ffffff&amp;slidercolor1=9f9ab9&amp;slidercolor2=9f9ab9&amp;sliderovercolor=9f9ab9&amp;buttoncolor=9f9ab9&amp;buttonovercolor=9f9ab9&amp;showlist=0" />
  883. </object>
  884. </div>
  885.  
  886. <div class="box">
  887. <table width="100%">
  888. <td width="50%">
  889. <a class="linka" href="/">Home</a>
  890. <a class="linkb" href="/ask">Message</a>
  891. <a class="linkc" href="url">LinkTwo</a>
  892. <td width="50%">
  893. <a class="linkd" href="/archive">Archive</a>
  894. <a class="linka" href="url">LinkOne</a>
  895. <a class="linkb" href="http://tropicalii.tk/">Credit</a>
  896. </td></table>
  897. </div>
  898. <div class="box">
  899. <center>
  900. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/6.png" class="bffs"></a>
  901. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/2.png" class="bffr"></a>
  902. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/10.png" class="bfft"></a>
  903. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/13.png" class="bffu"></a>
  904. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/26.png" class="bffv"></a>
  905. </center>
  906. </div>
  907.  
  908. <div class="box">
  909. <d>x</d><c>x</c><m>x</m><w>x</w>--i track the tag "TAGHERE". <br>
  910. you can put your other stats here!
  911. </div>
  912. </div>
  913.  
  914. <img style="position:fixed; opacity: 1.0; left: 9px; top:0px;border:1px solid #ffffff;" src="http://static.tumblr.com/jnukgfq/ZDGmq4yly/welcome.png">
  915.  
  916.  
  917.  
  918.  
  919. </body>
  920. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement