Advertisement
skullsandrosesthemes

storm

Jul 17th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.54 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="#ff94b5"; // 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: #cab89b;
  230. color: #ffffff;
  231. }
  232.  
  233. ::-moz-selection {
  234. background: #cab89b;
  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/Y9Rmq46yv/storm.png);
  267. CURSOR: URL(http://media.tumblr.com/tumblr_m2um8yWkrX1qfamg6.gif), PROGRESS;
  268. background-color:#000000;
  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:#ff98b8;
  288. }
  289.  
  290. a:hover {
  291. color:#a6ccbe;
  292. CURSOR: URL(http://media.tumblr.com/tumblr_m2um8yWkrX1qfamg6.gif), PROGRESS;
  293. font-family:handy;
  294. font-size:8px;
  295. font-style: underline;
  296. }
  297.  
  298. b{color:#c9b799; font-weight:normal;}
  299. i{color:#ff90b2; font-style:normal;}
  300. u{color:#e7bec4;}
  301. s{color:#7eb69a;}
  302.  
  303. d{
  304. font-family: pixel;
  305. text-decoration: none;
  306. font-size: 8px;
  307. color:#7eb69a;
  308. text-transform: lowercase;}
  309.  
  310. a{
  311. font-family: pixel;
  312. font-size: 8px;
  313. color:#c7b496;
  314. text-transform: lowercase;}
  315.  
  316. c{
  317. font-family: pixel;
  318. font-size: 8px;
  319. color:#ff8fb1;
  320. text-transform: lowercase;}
  321.  
  322. m{
  323. font-family: pixel;
  324. font-size: 8px;
  325. color:#e7bec4;
  326. text-transform: lowercase;}
  327.  
  328. w{
  329. font-family: handy;
  330. font-size: 8px;
  331. color:#9fc7b8;
  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 #7eb69a;}
  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 #cdbb9f;}
  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 #ff96b7;}
  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 #e7bdc4;}
  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 #9ec7b7;}
  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: #c6b395;
  394. font-family: lobster;
  395. font-size:22px;
  396. border-left: 4px solid #c6b395;
  397. border-right: 4px solid #c6b395
  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: #7eb69a;
  414. font-family: lobster;
  415. font-size:22px;
  416. border-left: 4px solid #7eb69a;
  417. border-right: 4px solid #7eb69a
  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: #ff8fb0;
  434. font-family: lobster;
  435. font-size:22px;
  436. border-left: 4px solid #ff8fb0;
  437. border-right: 4px solid #ff8fb0
  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: #e6bbc2;
  454. font-family: lobster;
  455. font-size:22px;
  456. border-left: 4px solid #e6bbc2;
  457. border-right: 4px solid #e6bbc2
  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: #a1c9b9;
  474. font-family: lobster;
  475. font-size:22px;
  476. border-left: 4px solid #a1c9b9;
  477. border-right: 4px solid #a1c9b9
  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. border: 1px solid #292929;
  489. background-color: #000;
  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/cHQmq46bs/dsklfjadsklfjadsf.png');}
  512.  
  513. ::-webkit-scrollbar-thumb {
  514. background: #45d1e0;
  515. background-image: url('http://static.tumblr.com/jnukgfq/cHQmq46bs/dsklfjadsklfjadsf.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/cHQmq46bs/dsklfjadsklfjadsf.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 #292929;
  535. background-color: #000;
  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:#000;
  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.  
  586. div#sidebar{
  587. position:fixed !important;
  588. left: 735px;
  589. width: 260px;
  590. top: 0px;
  591. padding: 0px;
  592. font-family: silkscreen;
  593. font-size: 8px;
  594. line-height:8px;
  595. padding: 1px;
  596. letter-spacing:0px;
  597. }
  598.  
  599. div#sidebar2{
  600. position:fixed !important;
  601. right: 40px;
  602. width: 300px;
  603. top: 40px;
  604. padding: 0px;
  605. font-family: silkscreen;
  606. font-size: 8px;
  607. line-height:8px;
  608. padding: 1px;
  609. letter-spacing:0px;
  610. }
  611.  
  612. div#favs{
  613. position:fixed !important;
  614. width:90px;
  615. margin-left:795px;
  616. margin-top:100px;
  617. padding:2px;
  618. height:auto;
  619. background-color: #000;
  620. border:1px solid #313131;
  621. text-align:left;}
  622.  
  623.  
  624. #infscr-loading{
  625. top: -20px;
  626. position: absolute;
  627. left: 50%;
  628. margin-left:-8px;
  629. width:16px;
  630. height:11px;
  631. overflow:hidden;
  632. margin-bottom: 50px;
  633. }
  634.  
  635. .title{
  636. font-family: lobster;
  637. color: #ff8eb0;
  638. font-size: 24px;
  639. text-align:left;
  640. text-transform:lowercase;
  641. margin:1px;
  642. }
  643.  
  644. .box h1{
  645. color: #ff8eb0;
  646. font-family: lobster;
  647. font-size: 24px;
  648. text-align: center;
  649. font-style: none;
  650. font-weight: normal;
  651. text-transform: uppercase;
  652. line-height: 15px;
  653. border-bottom: 1px dashed #292929;
  654. margin: 0px;
  655. -webkit-border-radius: 10px;
  656. -moz-border-radius: 10px;
  657. border-radius: 10px;}
  658.  
  659.  
  660. blockquote {
  661. width:200px;
  662. margin-left: 10px;
  663. margin-right: 10px;
  664. text-align:center;
  665. color:#ff8eb0;
  666. font-family:handy;
  667. font-size:8px;
  668. background-color: #000;
  669. background-image: url('');
  670. border-radius:5px;
  671. -moz-border-radius:5px;
  672. border:1px solid #333333;
  673. }
  674.  
  675.  
  676. @font-face {
  677. font-family: "tinytots";
  678. src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
  679. }
  680.  
  681. @font-face { font-family: 'pixel'; src: local('04b24'), url('http://static.tumblr.com/zm7jcjw/dtClscghb/04b_24__.ttf'); }
  682.  
  683. @font-face { font-family: 'tattoo'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/k92m2cek0/vtc-nuetattooscript.ttf'); }
  684.  
  685. @font-face { font-family: 'starry'; src: local('04b24'), url('http://static.tumblr.com/bd1p68p/A9Im3zav5/grinchedregular.ttf'); }
  686.  
  687. @font-face { font-family: "handy"; src: url('http://static.tumblr.com/yqxw8ss/qOClwq07v/handy00.ttf'); }
  688.  
  689. @font-face
  690. {font-family: "silkscreen"; src: url('http://static.tumblr.com/jzyx4rl/MMBm86zxd/pf_arma_five.ttf');}
  691.  
  692.  
  693.  
  694. {CustomCSS}
  695.  
  696. </style>
  697.  
  698. {block:IndexPage}
  699. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  700. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  701.  
  702. <script type="text/javascript">
  703. $(window).load(function () {
  704. var $content = $('#posts');
  705. $content.masonry({itemSelector: '.entry'}),
  706. $content.infinitescroll({
  707. navSelector : 'div#pagination',
  708. nextSelector : 'div#pagination a#nextPage',
  709. itemSelector : '.entry',
  710. loading: {
  711. finishedMsg: '',
  712. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  713. },
  714. bufferPx : 600,
  715. debug : false,
  716. },
  717. // call masonry as a callback.
  718. function( newElements ) {
  719. var $newElems = $( newElements );
  720. $newElems.hide();
  721. // ensure that images load before adding to masonry layout
  722. $newElems.imagesLoaded(function(){
  723. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  724.  
  725.  
  726. });
  727. });
  728. });
  729. </script>
  730.  
  731. {/block:IndexPage}
  732.  
  733. <title>(title)</title>
  734. <link rel="shortcut icon" href="http://olhar-43.net/conteudo/minigifs/11/1.gif">
  735.  
  736. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  737. <meta name="viewport" content="width=820" />
  738.  
  739. </head>
  740. <body>
  741.  
  742.  
  743.  
  744.  
  745.  
  746. <div class="wrapper">
  747. <div class="header">
  748. </div>
  749.  
  750.  
  751.  
  752.  
  753. <div class="left">
  754.  
  755. <div id="posts">
  756.  
  757. {block:Posts}
  758. <div class="entry">
  759.  
  760. {block:IndexPage}
  761. <div class="permalink">
  762. <w>Posted on {DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</w>-- <a href="{permalink}"> {NoteCount}</a> -- <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  763. {/block:IndexPage}
  764.  
  765. {block:Text}
  766. {block:Title}<span class="title">{Title}</span>{/block:Title}<span class="entrytext">{Body}</span>
  767. {/block:Text}
  768.  
  769. {block:Link}
  770. <a href="{URL}" class="title">{Name}</a>
  771. {block:Description}{Description}{/block:Description}
  772. {block:Link}
  773.  
  774. {block:Photo}
  775. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>{LinkCloseTag}{/block:IndexPage}
  776. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="400"/></a>{LinkCloseTag}{/block:PermalinkPage}
  777. {/block:Photo}
  778.  
  779. {block:Photoset}
  780. {block:IndexPage}
  781. <center>
  782. {Photoset-250}</center>
  783. {/block:IndexPage}
  784. {block:PermalinkPage}
  785. <center>
  786. {Photoset-500}</center>
  787. {/block:PermalinkPage}
  788. {/block:Photoset}
  789.  
  790. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span>{Asker}: {Question}&nbsp;</div>{Answer}{/block:Answer}
  791.  
  792. {block:Quote}
  793. {Quote}</span>
  794. {block:Source}<a>{Source}</a>{/block:Source}
  795. {/block:Quote}
  796.  
  797. {block:Chat}
  798. {block:Title}<span class="title">{Title}</span>{/block:Title}
  799. <ul class="chat">
  800. {block:Lines}
  801. <li class="user_{UserNumber}">
  802. {block:Label}
  803. <span class="label">{Label}</span>
  804. {/block:Label}
  805.  
  806. {Line}
  807. </li>
  808. {/block:Lines}
  809. </ul>
  810. {/block:Chat}
  811.  
  812. {block:Audio}
  813. <center><div style="width:100%; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  814. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  815. {/block:Audio}
  816.  
  817. {block:Video}
  818. {block:IndexPage}
  819. <center>
  820. {Video-250}</center>
  821. {/block:IndexPage}
  822. {block:PermalinkPage}
  823. <center>
  824. {Video-500}</center>
  825. {/block:PermalinkPage}
  826. {block:Video}
  827.  
  828. {block:PermalinkPage}
  829. <center>
  830. <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>
  831.  
  832.  
  833. {/block:PermalinkPage}
  834.  
  835.  
  836. {block:PostNotes}{PostNotes}
  837. {/block:PostNotes}
  838. </div>
  839.  
  840.  
  841. {/block:Posts}
  842. </div>
  843. </div>
  844. {block:IndexPage}
  845. {block:Pagination}
  846. <div id="pagination">
  847. {block:NextPage}
  848. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  849. {/block:NextPage}
  850. {block:PreviousPage}
  851. <a href="{PreviousPage}">&larr;&nbsp;</a>
  852. {/block:PreviousPage}
  853. </div>
  854. {/block:Pagination}
  855. {/block:IndexPage}
  856. </div>
  857.  
  858.  
  859.  
  860. </div>
  861.  
  862.  
  863. <div id="sidebar">
  864. <div class="box">
  865. <img src="http://25.media.tumblr.com/tumblr_mcyzirqHgM1rhipuzo1_500.jpg" width=100%; align="left" />
  866. </div>
  867. <div class="box">
  868. <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>.
  869. </div>
  870.  
  871. <br>
  872. <div class="box">
  873. <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>
  874. </div>
  875. </div>
  876. <div id="sidebar2">
  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="#000000" />
  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=e4b7bf&amp;bgcolor=000000&amp;slidercolor1=e4b7bf&amp;slidercolor2=e4b7bf&amp;sliderovercolor=e4b7bf&amp;buttoncolor=e4b7bf&amp;buttonovercolor=e4b7bf&amp;showlist=0" />
  883. </object>
  884. </div>
  885. <br><br>
  886. <div class="box">
  887. <a class="linka" href="/">Home</a>
  888. <a class="linkb" href="/ask">Message</a>
  889. <a class="linkc" href="url">LinkTwo</a>
  890. <a class="linkd" href="/archive">Archive</a>
  891. <a class="linke" href="url">LinkOne</a>
  892. <a class="linka" href="http://tropicalii.tk/">Credit</a>
  893. <br>
  894. </div>
  895. <div class="box">
  896. <h1>favorites</h1>
  897. <center>
  898. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/6.png" class="bffs"></a>
  899. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/2.png" class="bffr"></a>
  900. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/10.png" class="bfft"></a>
  901. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/13.png" class="bffu"></a>
  902. <a href="URL"><img src="http://neonboxx.com/tumblr/avatars/26.png" class="bffv"></a>
  903. </center>
  904. </div>
  905.  
  906. <br>
  907. <div class="box">
  908. <h1>stats</h1>
  909. <d>x</d><c>x</c><m>x</m><w>x</w>--i track the tag "TAGHERE".
  910. <br><br>
  911. </div>
  912.  
  913.  
  914.  
  915. </div>
  916.  
  917.  
  918.  
  919.  
  920. </body>
  921. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement