Advertisement
skullsandrosesthemes

dreams

Jul 17th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.82 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="#9f9ab9"; // 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/eKOmq3hfk/rare.png);
  267. CURSOR: URL(http://media.tumblr.com/tumblr_lpyq1ipTIe1qcn2vb.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. a:link, a:active, a:visited {
  282. text-decoration:none;
  283. font-family:silkscreen;
  284. font-size:8px;
  285. line-height:8px;
  286. font-weight:normal; text-transform:normal;
  287. color:#9f9ab9;
  288. }
  289.  
  290. a:hover {
  291. color:#ff62ac;
  292. CURSOR: URL(http://media.tumblr.com/tumblr_lpyq1ipTIe1qcn2vb.gif), PROGRESS;
  293. font-family:handy;
  294. font-size:8px;
  295. font-style: underline;
  296. }
  297.  
  298. b{color:#ee6195; font-weight:normal;}
  299. i{color:#9f9ab9; font-style:normal;}
  300. u{color:#45d1e0;}
  301. s{color:#b3725a;}
  302.  
  303. d{
  304. font-family: pixel;
  305. text-decoration: none;
  306. font-size: 8px;
  307. color:#ee6195;
  308. text-transform: lowercase;}
  309.  
  310. a{
  311. font-family: pixel;
  312. font-size: 8px;
  313. color:#9f9ab9;
  314. text-transform: lowercase;}
  315.  
  316. c{
  317. font-family: pixel;
  318. font-size: 8px;
  319. color:#45d1e0;
  320. text-transform: lowercase;}
  321.  
  322. m{
  323. font-family: pixel;
  324. font-size: 8px;
  325. color:#b3725a;
  326. text-transform: lowercase;}
  327.  
  328. w{
  329. font-family: handy;
  330. font-size: 8px;
  331. color:#ee6195;
  332. text-transform: lowercase;}
  333.  
  334.  
  335. .bffs{
  336. width:40px;
  337. height:40px;
  338. margin:2px;
  339. text-align: center;
  340. margin-bottom:-1px;
  341. padding:1px;
  342. border:1px solid #b3725a;}
  343.  
  344. .bffr{
  345. width:40px;
  346. height:40px;
  347. margin:2px;
  348. text-align: center;
  349. margin-bottom:-1px;
  350. padding:1px;
  351. border:1px solid #ee6195;}
  352.  
  353. .bfft{
  354. width:40px;
  355. height:40px;
  356. margin:2px;
  357. text-align: center;
  358. margin-bottom:-1px;
  359. padding:1px;
  360. border:1px solid #9f9ab9;}
  361.  
  362. .bffu{
  363. width:40px;
  364. height:40px;
  365. margin:2px;
  366. text-align: center;
  367. margin-bottom:-1px;
  368. padding:1px;
  369. border:1px solid #45d1e0;}
  370.  
  371. .bffv{
  372. width:40px;
  373. height:40px;
  374. margin:2px;
  375. text-align: center;
  376. margin-bottom:-1px;
  377. padding:1px;
  378. border:1px solid #7ab0c9;}
  379.  
  380.  
  381.  
  382.  
  383.  
  384. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  385.  
  386. a.linka, a.linka:link, a.linka:active, a.linka:visited {
  387. display:block;
  388. height:20px;
  389. width: auto;
  390. text-align:center;
  391. text-transform: lowercase;
  392. text-decoration: none;
  393. color: #7ab0c9;
  394. font-family: lobster;
  395. font-size:22px;
  396. border-left: 4px solid #7ab0c9;
  397. border-right: 4px solid #7ab0c9
  398. border-radius:5px;
  399. -moz-border-radius:5px;
  400. }
  401.  
  402. a.linka:hover {
  403. text-align:left;
  404. }
  405.  
  406. a.linkb, a.linkb:link, a.linkb:active, a.linkb:visited {
  407. display:block;
  408. height:20px;
  409. width: auto;
  410. text-align:center;
  411. text-transform: lowercase;
  412. text-decoration: none;
  413. color: #ee6195;
  414. font-family: lobster;
  415. font-size:22px;
  416. border-left: 4px solid #ee6195;
  417. border-right: 4px solid #ee6195
  418. border-radius:5px;
  419. -moz-border-radius:5px;
  420. }
  421.  
  422. a.linkb:hover {
  423. text-align:left;
  424. }
  425.  
  426. a.linkc, a.linkc:link, a.linkc:active, a.linkc:visited {
  427. display:block;
  428. height:20px;
  429. width: auto;
  430. text-align:center;
  431. text-transform: lowercase;
  432. text-decoration: none;
  433. color: #9f9ab9;
  434. font-family: lobster;
  435. font-size:22px;
  436. border-left: 4px solid #9f9ab9;
  437. border-right: 4px solid #9f9ab9
  438. border-radius:5px;
  439. -moz-border-radius:5px;
  440. }
  441.  
  442. a.linkc:hover {
  443. text-align:left;
  444. }
  445.  
  446. a.linkd, a.linkd:link, a.linkd:active, a.linkd:visited {
  447. display:block;
  448. height:20px;
  449. width: auto;
  450. text-align:center;
  451. text-transform: lowercase;
  452. text-decoration: none;
  453. color: #45d1e0;
  454. font-family: lobster;
  455. font-size:22px;
  456. border-left: 4px solid #45d1e0;
  457. border-right: 4px solid #45d1e0
  458. border-radius:5px;
  459. -moz-border-radius:5px;
  460. }
  461.  
  462. a.linkd:hover {
  463. text-align:left;
  464. }
  465.  
  466. a.linke, a.linke:link, a.linke:active, a.linke:visited {
  467. display:block;
  468. height:20px;
  469. width: auto;
  470. text-align:center;
  471. text-transform: lowercase;
  472. text-decoration: none;
  473. color: #b3725a;
  474. font-family: lobster;
  475. font-size:22px;
  476. border-left: 4px solid #b3725a;
  477. border-right: 4px solid #b3725a
  478. border-radius:5px;
  479. -moz-border-radius:5px;
  480. }
  481.  
  482. a.linke:hover {
  483. text-align:left;
  484. }
  485.  
  486.  
  487. .box{
  488. background:#fafafa;
  489. border:1px solid #e2e2e2;
  490. margin-bottom:5px;
  491. padding:3px;
  492. text-align:justify;
  493. overflow:hidden;
  494. -webkit-border-radius: 10px;
  495. -moz-border-radius: 10px;
  496. border-radius: 10px;}
  497.  
  498. .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;}
  499. .bubble p {margin:1px 0px;}
  500. .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;
  501. border-bottom:7px solid transparent; border-right:10px solid #ececec;}
  502.  
  503. .askborder {float: left;margin: 1px 4px 0 0;padding: 2px; background: #ececec}
  504.  
  505.  
  506.  
  507. ::-webkit-scrollbar {
  508. height: 8px;
  509. width: 12px;
  510. background: #45d1e0;
  511. background-image: url('http://static.tumblr.com/jnukgfq/xbfmq3j3p/jdsfjdlfk.png');}
  512.  
  513. ::-webkit-scrollbar-thumb {
  514. background: #45d1e0;
  515. background-image: url('http://static.tumblr.com/jnukgfq/xbfmq3j3p/jdsfjdlfk.png');
  516. border:1px solid #d0d0d0;
  517. -webkit-border-radius: 8px;}
  518.  
  519. ::-webkit-scrollbar-corner {
  520. background: #45d1e0;
  521. background-image: url('http://static.tumblr.com/jnukgfq/xbfmq3j3p/jdsfjdlfk.png');}
  522.  
  523.  
  524. @font-face { font-family: "freehand"; src: url('http://static.tumblr.com/u5sjz8c/0g1m8pv5t/tt1018m_.ttf');}
  525. @font-face { font-family: "bangalore"; src: url('http://static.tumblr.com/rmj06l2/VP8llx2mg/bangalor.ttf'); }
  526. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/u5sjz8c/k3Fm8y1ck/handy00.ttf'); }
  527.  
  528.  
  529. .entry {
  530. margin:2px;
  531. padding: 1px;
  532. float:left;
  533. position:center;
  534. border: 1px solid #cfcfcf;
  535. background-color: #f9f9f9;
  536. width:220px;
  537. }
  538.  
  539. .entry .permalink{
  540. position:absolute;
  541. width:100%;
  542. height:auto;
  543. left:0px;
  544. top:0px;
  545. padding:1px;
  546. background-color:#f9f9f9;
  547. overflow:hidden;
  548. font-family: handy;
  549. text-transform: lowercase;
  550. font-size: 8px;
  551. line-height:9px;
  552. text-align:center;
  553. opacity:0.0;
  554. border-radius:4px;
  555. -moz-border-radius:4px;
  556. }
  557.  
  558. .entry:hover .permalink{
  559. margin-top:0%;
  560. overflow:visible;
  561. -webkit-transition: all 0.4s linear; opacity: 0.8;
  562. -webkit-transition: all 0.4s linear;
  563. -moz-transition: all 0.4s linear;
  564. transition: all 0.4s linear;
  565. }
  566.  
  567.  
  568.  
  569. #posts {
  570. width: 700px;
  571. left: -250px;
  572. top: 0px;
  573. float:left;
  574. }
  575.  
  576. #navigation {
  577. position: absolute;
  578. position: fixed;
  579. left: 1139px;
  580. top: 35px;
  581. height:100%;
  582. width:auto;
  583. }
  584.  
  585. .box h1{
  586. color: #ffffff;
  587. font-family: lobster;
  588. font-size: 24px;
  589. text-align: center;
  590. font-style: none;
  591. font-weight: normal;
  592. text-transform: uppercase;
  593. line-height: 15px;
  594. border-bottom: 1px dashed #e1e1e1;
  595. margin: 0px;
  596. -webkit-border-radius: 10px;
  597. -moz-border-radius: 10px;
  598. border-radius: 10px;}
  599.  
  600. div#sidebar{
  601. position:fixed !important;
  602. left: 735px;
  603. width: 260px;
  604. top: 0px;
  605. padding: 0px;
  606. font-family: silkscreen;
  607. font-size: 8px;
  608. line-height:8px;
  609. padding: 1px;
  610. letter-spacing:0px;
  611. }
  612.  
  613. div#sidebar2{
  614. position:fixed !important;
  615. right: 40px;
  616. width: 300px;
  617. top: 40px;
  618. padding: 0px;
  619. font-family: silkscreen;
  620. font-size: 8px;
  621. line-height:8px;
  622. padding: 1px;
  623. letter-spacing:0px;
  624. }
  625.  
  626. div#favs{
  627. position:fixed !important;
  628. width:90px;
  629. margin-left:795px;
  630. margin-top:100px;
  631. padding:2px;
  632. height:auto;
  633. background-color: #000;
  634. border:1px solid #313131;
  635. text-align:left;}
  636.  
  637.  
  638. #infscr-loading{
  639. top: -20px;
  640. position: absolute;
  641. left: 50%;
  642. margin-left:-8px;
  643. width:16px;
  644. height:11px;
  645. overflow:hidden;
  646. margin-bottom: 50px;
  647. }
  648.  
  649. .title{
  650. font-family: lobster;
  651. color: #b3725a;
  652. font-size: 24px;
  653. text-align:left;
  654. text-transform:lowercase;
  655. margin:1px;
  656. }
  657.  
  658. .box h1{
  659. color: #9f9ab9;
  660. font-family: lobster;
  661. font-size: 24px;
  662. text-align: center;
  663. font-style: none;
  664. font-weight: normal;
  665. text-transform: uppercase;
  666. line-height: 15px;
  667. border-bottom: 1px dashed #e1e1e1;
  668. margin: 0px;
  669. -webkit-border-radius: 10px;
  670. -moz-border-radius: 10px;
  671. border-radius: 10px;}
  672.  
  673.  
  674. blockquote {
  675. width:200px;
  676. margin-left: 10px;
  677. margin-right: 10px;
  678. text-align:center;
  679. color:#4c384c;
  680. font-family:handy;
  681. font-size:8px;
  682. background-color: #fff;
  683. background-image: url('');
  684. border-radius:5px;
  685. -moz-border-radius:5px;
  686. border:1px solid #cfcfcf;
  687. }
  688.  
  689.  
  690. @font-face {
  691. font-family: "tinytots";
  692. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  693. }
  694.  
  695. @font-face { font-family: 'pixel'; src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf'); }
  696.  
  697. @font-face { font-family: 'tattoo'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/k92m2cek0/vtc-nuetattooscript.ttf'); }
  698.  
  699. @font-face { font-family: 'starry'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/A9Im3zav5/grinchedregular.ttf'); }
  700.  
  701. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  702.  
  703. @font-face
  704. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  705.  
  706.  
  707.  
  708. {CustomCSS}
  709.  
  710. </style>
  711.  
  712. {block:IndexPage}
  713. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  714. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  715.  
  716. <script type="text/javascript">
  717. $(window).load(function () {
  718. var $content = $('#posts');
  719. $content.masonry({itemSelector: '.entry'}),
  720. $content.infinitescroll({
  721. navSelector : 'div#pagination',
  722. nextSelector : 'div#pagination a#nextPage',
  723. itemSelector : '.entry',
  724. loading: {
  725. finishedMsg: '',
  726. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  727. },
  728. bufferPx : 600,
  729. debug : false,
  730. },
  731. // call masonry as a callback.
  732. function( newElements ) {
  733. var $newElems = $( newElements );
  734. $newElems.hide();
  735. // ensure that images load before adding to masonry layout
  736. $newElems.imagesLoaded(function(){
  737. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  738.  
  739.  
  740. });
  741. });
  742. });
  743. </script>
  744.  
  745. {/block:IndexPage}
  746.  
  747. <title>(title)</title>
  748. <link rel="shortcut icon" href="http://olhar-43.net/conteudo/minigifs/11/1.gif">
  749.  
  750. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  751. <meta name="viewport" content="width=820" />
  752.  
  753. </head>
  754. <body>
  755.  
  756.  
  757.  
  758.  
  759.  
  760. <div class="wrapper">
  761. <div class="header">
  762. </div>
  763.  
  764.  
  765.  
  766.  
  767. <div class="left">
  768.  
  769. <div id="posts">
  770.  
  771. {block:Posts}
  772. <div class="entry">
  773.  
  774. {block:IndexPage}
  775. <div class="permalink">
  776. <w>Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</w>-- <a href="{permalink}"> {NoteCount}</a> -- <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  777. {/block:IndexPage}
  778.  
  779. {block:Text}
  780. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  781. {/block:Text}
  782.  
  783. {block:Link}
  784. <a href="{URL}" class="title">{Name}</a>
  785. {block:Description}{Description}{/block:Description}
  786. {block:Link}
  787.  
  788. {block:Photo}
  789. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}{/block:IndexPage}
  790. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>{LinkCloseTag}{/block:PermalinkPage}
  791. {/block:Photo}
  792.  
  793. {block:Photoset}
  794. {block:IndexPage}
  795. <center>
  796. {Photoset-250}</center>
  797. {/block:IndexPage}
  798. {block:PermalinkPage}
  799. <center>
  800. {Photoset-500}</center>
  801. {/block:PermalinkPage}
  802. {/block:Photoset}
  803.  
  804. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}{/block:Answer}
  805.  
  806. {block:Quote}
  807. {Quote}</span>
  808. {block:Source}<a>{Source}</a>{/block:Source}
  809. {/block:Quote}
  810.  
  811. {block:Chat}
  812. {block:Title}<span class="title">{Title}</span>{/block:Title}
  813. <ul class="chat">
  814. {block:Lines}
  815. <li class="user_{UserNumber}">
  816. {block:Label}
  817. <span class="label">{Label}</span>
  818. {/block:Label}
  819.  
  820. {Line}
  821. </li>
  822. {/block:Lines}
  823. </ul>
  824. {/block:Chat}
  825.  
  826. {block:Audio}
  827. <center><div style="width:100%; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  828. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  829. {/block:Audio}
  830.  
  831. {block:Video}
  832. {block:IndexPage}
  833. <center>
  834. {Video-250}</center>
  835. {/block:IndexPage}
  836. {block:PermalinkPage}
  837. <center>
  838. {Video-500}</center>
  839. {/block:PermalinkPage}
  840. {block:Video}
  841.  
  842. {block:PermalinkPage}
  843. <center>
  844. <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>
  845.  
  846.  
  847. {/block:PermalinkPage}
  848.  
  849.  
  850. {block:PostNotes}{PostNotes}
  851. {/block:PostNotes}
  852. </div>
  853.  
  854.  
  855. {/block:Posts}
  856. </div>
  857. </div>
  858. {block:IndexPage}
  859. {block:Pagination}
  860. <div id="pagination">
  861. {block:NextPage}
  862. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  863. {/block:NextPage}
  864. {block:PreviousPage}
  865. <a href="{PreviousPage}">&larr;&nbsp;</a>
  866. {/block:PreviousPage}
  867. </div>
  868. {/block:Pagination}
  869. {/block:IndexPage}
  870. </div>
  871.  
  872.  
  873.  
  874. </div>
  875.  
  876.  
  877. <div id="sidebar">
  878. <div class="box">
  879. <img src="http://25.media.tumblr.com/tumblr_ma7lcpfcYT1qgltz8o1_500.png" width=100%; align="left" />
  880. </div>
  881. <div class="box">
  882. <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>.
  883. </div>
  884.  
  885. <br>
  886. <div class="box">
  887. <img src="http://i122.photobucket.com/albums/o260/mhilka/minigifs/mini69.gif"/><a>></a><d>></d><c>></c><m>></m><w>></w><w>Halloween</w>, Scary Movies, <d>Rock Music</d>, <c>Spongebob</c>, <a>Vodka</a>, Weed, <m>Tattoos</m>, Makeup, <w>Purses</w>, Playboy Bunnies, <d>Victoria's Secret</d>, <c>Skulls</c>, <a>Avenged Sevenfold</a>, $$$, </m>Photoshop</m>, Shopping, <w>Subway</w>, Purple, <d>Volleyball</d>, <c>Cheetah</c> Print, <a>Babies</a>, Huskies, <m>Miley Cyrus & Megan Fox</m>, Channing <c>Tatum & Taylor</c> Lautner, <w>Country</w>, Chipotle, <d>Tigers</d>, Cars, <a>Sarcasm</a>, <c>Sleeping</c>, <m>Curls</m>, Yoga Pants, <w>Stars</w>, Piercings, <d>Honesty</d>, Pretty Little Liars, <a>Reading</a>, Arby's, <m>Eminem</m>, <c>Ripped</c> Jeans, <w>PJ's</w>.<br>
  888. </div>
  889. </div>
  890. <div id="sidebar2">
  891. <div class="box">
  892. <center>
  893. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_multi.swf" width="120" height="19">
  894. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_multi.swf" />
  895. <param name="bgcolor" value="#ffffff" />
  896. <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" />
  897. </object>
  898. </div>
  899. <br><br>
  900. <div class="box">
  901. <a class="linka" href="/">Home</a>
  902. <a class="linkb" href="/ask">Message</a>
  903. <a class="linkc" href="url">LinkTwo</a>
  904. <a class="linkd" href="/archive">Archive</a>
  905. <a class="linke" href="url">LinkOne</a>
  906. <a class="linka" href="http://tropicalii.tk/">Credit</a>
  907. <br>
  908. </div>
  909. <div class="box">
  910. <h1>favorites</h1>
  911. <center>
  912. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/6.png" class="bffs"></a>
  913. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/2.png" class="bffr"></a>
  914. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/10.png" class="bfft"></a>
  915. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/13.png" class="bffu"></a>
  916. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/26.png" class="bffv"></a>
  917. </center>
  918. </div>
  919.  
  920. <br>
  921. <div class="box">
  922. <h1>stats</h1>
  923. <d>x</d><c>x</c><m>x</m><w>x</w>--i track the tag "TAGHERE".
  924. <br><br>
  925. </div>
  926.  
  927.  
  928.  
  929. </div>
  930.  
  931.  
  932.  
  933.  
  934. </body>
  935. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement