Advertisement
Guest User

commission for flooredunder SPOCK EDITION

a guest
May 27th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.62 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3.  
  4.  
  5.  
  6. <head>
  7.  
  8. <script type="text/javascript">
  9. // <![CDATA[
  10. var colour="#ccc"; // what colour are the blobs
  11. var speed=86; // speed of animation, lower is faster
  12. var blobs=9; // how many blobs are in the jar
  13. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  14.  
  15. /***************************\
  16. * Blobs in a Jar Effect *
  17. *(c)2012-13 mf2fm web-design*
  18. * http://www.mf2fm.com/rv *
  19. * DON'T EDIT BELOW THIS BOX *
  20. \***************************/
  21.  
  22. var div;
  23. var xpos=new Array();
  24. var ypos=new Array();
  25. var zpos=new Array();
  26. var dx=new Array();
  27. var dy=new Array();
  28. var dz=new Array();
  29. var blob=new Array();
  30. var swide=800;
  31. var shigh=600;
  32. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  33.  
  34. function addLoadEvent(funky) {
  35. var oldonload=window.onload;
  36. if (typeof(oldonload)!='function') window.onload=funky;
  37. else window.onload=function() {
  38. if (oldonload) oldonload();
  39. funky();
  40. }
  41. }
  42.  
  43. addLoadEvent(fill_the_jar);
  44.  
  45. function fill_the_jar() {
  46. var i, dvs;
  47. div=document.createElement('div');
  48. dvs=div.style;
  49. dvs.position='fixed';
  50. dvs.left='0px';
  51. dvs.top='0px';
  52. dvs.width='1px';
  53. dvs.height='1px';
  54. document.body.appendChild(div);
  55. set_width();
  56. for (i=0; i<blobs; i++) {
  57. add_blob(i);
  58. jamjar(i);
  59. }
  60. }
  61.  
  62. function add_blob(ref) {
  63. var dv, sy;
  64. dv=document.createElement('div');
  65. sy=dv.style;
  66. sy.position='absolute';
  67. sy.textAlign='center';
  68. if (ie_version && ie_version<10) {
  69. sy.fontSize="10px";
  70. sy.width="100px";
  71. sy.height="100px";
  72. sy.paddingTop="40px";
  73. sy.color=colour;
  74. dv.appendChild(document.createTextNode(charc));
  75. }
  76. else if (ie_version) {
  77. sy.fontSize="1px";
  78. sy.width="0px";
  79. sy.height="0px";
  80. }
  81. else {
  82. dv.appendChild(document.createTextNode(charc));
  83. sy.color='rgba(0,0,0,0)';
  84. }
  85. ypos[ref]=Math.floor(shigh*Math.random());
  86. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  87. xpos[ref]=Math.floor(swide*Math.random());
  88. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  89. zpos[ref]=Math.random()*20;
  90. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  91. blob[ref]=dv;
  92. div.appendChild(blob[ref]);
  93. set_blob(ref);
  94. }
  95.  
  96. function rejig(ref, xy) {
  97. if (xy=='y') {
  98. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  99. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  100. }
  101. else {
  102. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  103. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  104. }
  105. }
  106.  
  107. function sign(a) {
  108. if (a<0) return (-2);
  109. else if (a>0) return (2);
  110. else return (0);
  111. }
  112.  
  113. function set_blob(ref) {
  114. var sy;
  115. sy=blob[ref].style;
  116. sy.top=ypos[ref]+'px';
  117. sy.left=xpos[ref]+'px';
  118. if (ie_version && ie_version<10) {
  119. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  120. sy.fontSize=30-zpos[ref]+"px";
  121. }
  122. else if (ie_version) {
  123. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  124. }
  125. else {
  126. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  127. sy.fontSize=40+zpos[ref]+'px';
  128. }
  129. }
  130.  
  131. function jamjar(ref) {
  132. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  133. ypos[ref]+=dy[ref];
  134. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  135. xpos[ref]+=dx[ref];
  136. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  137. zpos[ref]+=dz[ref];
  138. set_blob(ref);
  139. setTimeout("jamjar("+ref+")", speed);
  140. }
  141.  
  142. window.onresize=set_width;
  143. function set_width() {
  144. var sw_min=999999;
  145. var sh_min=999999;
  146. if (document.documentElement && document.documentElement.clientWidth) {
  147. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  148. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  149. }
  150. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  151. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  152. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  153. }
  154. if (document.body.clientWidth) {
  155. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  156. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  157. }
  158. if (sw_min==999999 || sh_min==999999) {
  159. sw_min=800;
  160. sh_min=600;
  161. }
  162. swide=sw_min;
  163. shigh=sh_min;
  164. }
  165. // ]]>
  166. </script>
  167.  
  168. <title>{Title}</title>
  169.  
  170. <link rel="shortcut icon" href="{Favicon}" />
  171. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  172.  
  173.  
  174. <meta name="color:tags" content="#b9b7b7"/>
  175. <meta name="color:ask" content="#fcfcfc"/>
  176. <meta name="color:hover" content="#eeeeee"/>
  177. <meta name="color:border" content="#e7e7e7"/>
  178. <meta name="color:scrollbar" content="#d6d5d5"/>
  179. <meta name="color:post title color" content="#000"/>
  180.  
  181.  
  182. <meta name="text:text size" content="11px" />
  183.  
  184. <meta name="text:btext size" content="11px" />
  185.  
  186. <meta name="text:itext size" content="11px" />
  187.  
  188. <meta name="text:ltext size" content="11px" />
  189.  
  190. <meta name="text:link one link" content="/"/>
  191.  
  192. <meta name="text:link one title" content="home."/>
  193. <meta name="text:link two link" content="/ask"/>
  194.  
  195. <meta name="text:link two title" content="ask."/>
  196. <meta name="text:link three link" content="insert link here"/>
  197.  
  198. <meta name="text:link three title" content="title"/>
  199. <meta name="text:link four link" content="insert link here"/>
  200.  
  201. <meta name="text:link four title" content="title"/>
  202. <meta name="text:link five link" content="insert link here"/>
  203.  
  204. <meta name="text:link five title" content="title"/>
  205.  
  206.  
  207.  
  208. <link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
  209. <link href='https://fonts.googleapis.com/css?family=Arapey:400,400italic' rel='stylesheet' type='text/css'>
  210. <link href='https://fonts.googleapis.com/css?family=Titillium+Web:600' rel='stylesheet' type='text/css'>
  211.  
  212. <style type="text/css"/>
  213.  
  214. #bite
  215. #bite a{
  216. display:block
  217. }
  218. #bite .death {
  219. margin-top:0px;filter: alpha(opacity = 0);
  220. opacity:0;-webkit-transition: all 0.5s ease-out;
  221. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  222. }
  223.  
  224. #bite:hover .death {
  225. margin-top:0px;
  226. -webkit-transition: all 0.8s ease-out;
  227. -moz-transition: all 0.8s ease-out;
  228. transition: all 0.8s ease-out;
  229. filter: alpha(opacity = 100);
  230. filter: alpha(opacity = 100);
  231. opacity:100;
  232. }
  233.  
  234. #s-m-t-tooltip{
  235. max-width:300px;
  236. margin:15px;
  237. padding:2px 8px;
  238. border:1px solid black opacity:.9;
  239. background: transparent;
  240. color:{color:link title color};
  241. z-index:999999;
  242. font-size:8px;
  243. font-style:none;
  244. font-family: "calibri";
  245. text-transform:uppercase;
  246. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  247.  
  248.  
  249.  
  250. ::-webkit-scrollbar-thumb:vertical {border:3px solid color width:9px; height:12px; background-color:{color:scrollbar};}
  251. ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar};}
  252. ::-webkit-scrollbar {height:7px;width:2px;}
  253. ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment{background-color:transparent;display:block;height:8px;border-right:2px solid transparent;border-left:2px solid transparent;
  254. }
  255.  
  256.  
  257.  
  258.  
  259. body {
  260. background-color:#000;
  261. background-image: url("http://i.imgur.com/umZcC4s.gif");
  262. background-position: {text:background position};
  263. background-repeat: no-repeat;
  264. background-attachment: fixed;
  265. line-height:110%;
  266. color:#fff;
  267. font-family: Helvetica;
  268. font-size: {text:text size};}
  269.  
  270. a {
  271. color:#fff;
  272. text-decoration:none;
  273. -webkit-transition: all 0.5s ease-out;
  274. -moz-transition: all 0.5s ease-out;
  275. transition: all 0.5s ease-out;
  276. font-family: 'Abel';
  277. font-size: {text:ltext size};
  278. text-shadow: 0px 0px 5px #fff;
  279. }
  280.  
  281. a:hover {
  282. color:{color:hover};
  283. text-decoration:none;
  284. -webkit-transition: all 0.8s ease-out;
  285. -moz-transition: all 0.8s ease-out;
  286. transition: all 0.8s ease-out;
  287. }
  288.  
  289. img {
  290. border:none;
  291. max-width:100%;
  292. justify:left
  293.  
  294. }
  295.  
  296.  
  297.  
  298. h1 {
  299. font-size:20px;
  300. line-height:20px;
  301. color:{color:post title color};
  302. font-family: "calibri";
  303. width:{text:post width};
  304. text-align:left;
  305. }
  306.  
  307. blockquote {
  308. padding:2px ;
  309. margin:5px 0 3px 7px;
  310. border-left:2px solid {color:border};
  311. border-radius:1px;
  312. border-color:#ccc;
  313. justify:left;
  314.  
  315. }
  316.  
  317.  
  318.  
  319. #alinks {
  320. margin-top:458px;
  321. margin-left:800px;
  322. color:{color:link};
  323. position:fixed;
  324. width:9px;
  325. font-family:"calibri";
  326. text-transform:uppercase;
  327. text-align:center;
  328. color: {color:link};
  329. text-shadow: 0 0 5px {color:link};, 0 0 10px {color:link};, 0 0 15px {color:link};, 0 0 20px {color:link};, 0 0 30px {color:link};, 0 0 40px {color:link};, 0 0 50px {color:link};, 0 0 75px {color:link};
  330. font-family: "calibri", Arial;
  331. }
  332.  
  333.  
  334.  
  335. #alinks a {
  336. padding:3px;
  337. font-size:12px;
  338. font-family: cambria;
  339. color:#fff;
  340. }
  341.  
  342. #alinks a:hover {
  343. color:{color:hover};
  344. text-shadow: 0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
  345. color: {color:hover};
  346. }
  347.  
  348. #blinks {
  349. margin-top:458px;
  350. margin-left:830px;
  351. color:{color:link};
  352. position:fixed;
  353. width:9px;
  354. font-family:"calibri";
  355. text-transform:uppercase;
  356. text-align:center;
  357. color: {color:link};
  358. text-shadow: 0 0 5px {color:link};, 0 0 10px {color:link};, 0 0 15px {color:link};, 0 0 20px {color:link};, 0 0 30px {color:link};, 0 0 40px {color:link};, 0 0 50px {color:link};, 0 0 75px {color:link};
  359. font-family: "calibri", Arial;
  360. }
  361.  
  362.  
  363.  
  364. #blinks a {
  365. padding:3px;
  366. font-size:12px;
  367. font-family: cambria;
  368. color:#fff;
  369. }
  370.  
  371. #blinks a:hover {
  372. color:{color:hover};
  373. text-shadow: 0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
  374. color: {color:hover};
  375. }
  376.  
  377. #clinks {
  378. margin-top:458px;
  379. margin-left:860px;
  380. color:{color:link};
  381. position:fixed;
  382. width:9px;
  383. font-family:"calibri";
  384. text-transform:uppercase;
  385. text-align:center;
  386. color: {color:link};
  387. text-shadow: 0 0 5px {color:link};, 0 0 10px {color:link};, 0 0 15px {color:link};, 0 0 20px {color:link};, 0 0 30px {color:link};, 0 0 40px {color:link};, 0 0 50px {color:link};, 0 0 75px {color:link};
  388. font-family: "calibri", Arial;
  389. }
  390.  
  391.  
  392. #clinks a {
  393. padding:3px;
  394. font-size:12px;
  395. font-family: cambria;
  396. color:#fff;
  397. }
  398.  
  399. #clinks a:hover {
  400. color:{color:hover};
  401. text-shadow: 0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
  402. color: {color:hover};
  403. }
  404.  
  405. #dlinks {
  406. margin-top:458px;
  407. margin-left:890px;
  408. color:{color:link};
  409. position:fixed;
  410. width:9px;
  411. font-family:"calibri";
  412. text-transform:uppercase;
  413. text-align:center;
  414. color: {color:link};
  415. text-shadow: 0 0 5px {color:link};, 0 0 10px {color:link};, 0 0 15px {color:link};, 0 0 20px {color:link};, 0 0 30px {color:link};, 0 0 40px {color:link};, 0 0 50px {color:link};, 0 0 75px {color:link};
  416. font-family: "calibri", Arial;
  417. }
  418.  
  419.  
  420.  
  421. #dlinks a {
  422. padding:3px;
  423. font-size:12px;
  424. font-family: cambria;
  425. color:#fff;
  426. }
  427.  
  428. #dlinks a:hover {
  429. color:{color:hover};
  430. text-shadow: 0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
  431. color: {color:hover};
  432. }
  433.  
  434. #elinks {
  435. margin-top:458px;
  436. margin-left:920px;
  437. color:{color:link};
  438. position:fixed;
  439. width:9px;
  440. font-family:"calibri";
  441. text-transform:uppercase;
  442. text-align:center;
  443. color: {color:link};
  444. text-shadow: 0 0 5px {color:link};, 0 0 10px {color:link};, 0 0 15px {color:link};, 0 0 20px {color:link};, 0 0 30px {color:link};, 0 0 40px {color:link};, 0 0 50px {color:link};, 0 0 75px {color:link};
  445. font-family: "calibri", Arial;
  446. }
  447.  
  448.  
  449.  
  450. #elinks a {
  451. padding:3px;
  452. font-size:12px;
  453. font-family: cambria;
  454. color:#fff;
  455. }
  456.  
  457. #elinks a:hover {
  458. color:{color:hover};
  459. text-shadow: 0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
  460. color: {color:hover};
  461. }
  462.  
  463.  
  464.  
  465.  
  466.  
  467. #pagination {
  468. margin-top:230px;
  469. margin-left:850px;
  470. font-style:italic;
  471. text-align:center;
  472. font-size:20px;
  473. font-family:"calibri";
  474. color:#fff;
  475. position:fixed;
  476. }
  477.  
  478. #pagination a{
  479. color:#fff;
  480. font-size:30px;
  481. font-family:"calibri";
  482. }
  483.  
  484. #pagination a:hover {
  485. color:{color:hover};
  486. font-family:"calibri";
  487. }
  488.  
  489.  
  490. #postscontainer {
  491. position:fixed;
  492. height:305px;
  493. width:310px;
  494. overflow-y:scroll;
  495. overflow-x:hidden;
  496. margin-left:450px;
  497. margin-top:460px;
  498. padding-bottom:0px;
  499. }
  500.  
  501. #posts {
  502. width:300px;
  503. padding-top:5px;
  504. margin-top:0px;
  505. font-size:11px;
  506. color:{color:text};
  507. line-height:90%;
  508. text-align:left;
  509. border-bottom:2px;
  510. border-color:gray;
  511. }
  512.  
  513. #posts {
  514. opacity:0.2;
  515. -webkit-transition: all 0.6s ease-in-out;
  516. -moz-transition: all 0.6s ease-in-out;
  517. -o-transition: all 0.6s ease-in-out;
  518. -ms-transition: all 0.6s ease-in-out;
  519. transition: all 0.6s ease-in-out;
  520. }
  521.  
  522. #posts:hover{
  523. opacity:1;
  524. -webkit-transition: all 0.6s ease-in-out;
  525. -moz-transition: all 0.6s ease-in-out;
  526. -o-transition: all 0.6s ease-in-out;
  527. -ms-transition: all 0.6s ease-in-out;
  528. transition: all 0.6s ease-in-out;
  529. }
  530.  
  531.  
  532. #quote {
  533. font-size:14px;
  534. font-family: 'Crimson Text', serif;
  535. text-align: center;
  536. font-weight: 300;
  537. letter-spacing: 1.5px;
  538. line-height: 130%;
  539. padding-bottom: 10px;
  540.  
  541. }
  542.  
  543.  
  544. /*taggity tags*/
  545.  
  546. #tags {
  547. font-family:cambria;
  548. font-style:normal;
  549. width:391px;
  550. text-transform:normal;
  551. font-style:italic;
  552. color:{color:link};
  553. line-height:120%;
  554. font-size:8px;
  555. opacity:0;
  556. text-align:center;
  557. padding-top:3px;
  558. -moz-transition-duration:.5s;
  559. -webkit-transition-duration:.5s;
  560. -o-transition-duration:.5s;
  561. }
  562.  
  563. #tags a:hover {
  564. color:{color:link hover};
  565. }
  566.  
  567. #post:hover .tags {
  568. opacity:1;
  569. -moz-transition-duration:.5s;
  570. -webkit-transition-duration:.5s;
  571. -o-transition-duration:.5s;
  572.  
  573. }
  574.  
  575. #permalink {
  576. text-align: center;
  577. font-family: helvetica;
  578. width: 300px;
  579. margin-top: 8px;
  580. margin-left: 1px;
  581. margin-bottom: 8px;
  582. padding: 2px;
  583. padding-bottom: 8px;
  584. padding-top: 8px;
  585. text-transform: uppercase;
  586. font-size: 13px;
  587. color: #212121;
  588. background: url("http://i.imgur.com/HEU3xej.png");
  589. background-color: #000;
  590. border: 1px solid #fff;
  591. border-radius: 15px 50px;
  592. -moz-transition-duration: 0.5s;
  593. -webkit-transition-duration: 0.5s;
  594. -o-transition-duration: 0.5s;
  595. }
  596.  
  597. /*ask stuffs*/
  598.  
  599. #ask {
  600. margin-top:-10px;
  601. font-family:"calibri";
  602. text-align:left;
  603. }
  604.  
  605. #ask img {
  606. margin-top:30px;
  607. width:50px;
  608. text-align:left;
  609. }
  610.  
  611. #askbg {
  612. padding:12px;
  613. background-color:transparent;
  614. }
  615.  
  616.  
  617.  
  618. b, strong{
  619. color: #fff5;
  620. font-size:13px;
  621. letter-spacing:0px;
  622. text-shadow: 0px 0px 5px #fff;
  623. font-weight: bold;
  624. width:{text:post width};
  625. font-size: {text:btext size};
  626. font-family: 'Titillium', sans-serif;
  627. }
  628.  
  629. i, em, strong {
  630. color: #fff;
  631. font-size:13px;
  632. letter-spacing:0px;
  633. text-shadow: 0px 0px 5px #fff;
  634. font-weight: bold;
  635. width:{text:post width};
  636. font-family: 'Abel', serif;
  637. font-size: {text:itext size};
  638.  
  639. }
  640.  
  641.  
  642. #credit {
  643. font-size:6px;
  644. font-family: 'Helvetica';
  645. opacity: 0.8;
  646. letter-spacing:1px;
  647. -moz-transition-duration:0.5s;
  648. -webkit-transition-duration:0.5s;
  649. -o-transition-duration:0.5s;
  650. }
  651.  
  652. #credit a {
  653. padding:0px;
  654. position:fixed;
  655. right:15px;
  656. bottom:-5px;
  657. color: #fff;
  658. }
  659.  
  660. #credit a:hover {
  661. color:#fff;
  662. }
  663.  
  664.  
  665.  
  666.  
  667.  
  668. /* --- UPDATES ---*/
  669.  
  670. #dropdown {
  671. position:fixed;
  672. margin-top:475px;
  673. margin-left:795px;
  674. width:150px;
  675. height: 155px;
  676. text-align: center;
  677. font-family: cambria;
  678. font-size:9px;
  679. z-index:999999;
  680. overflow-y: scroll;
  681. }
  682.  
  683. #textbox {
  684. position:absolute;
  685. width:135px;
  686. margin-top:11px;
  687. font-size:9px;
  688. font-family:arial;
  689. text-align:left;
  690. font-weight:normal;
  691. color:#000000;
  692. }
  693.  
  694. </style></head><body>
  695.  
  696.  
  697. <div id="dropdown">
  698. <img src="http://i.imgur.com/ifjYpEp.png" alt="some_text">
  699. <p>independent & selective <br>
  700. <center><b>SPOCK</b> <br>
  701. from star trek rebooted.
  702. <p>
  703. please read the <b>rules</b> before interacting.</center>
  704. <p>
  705. <img src="http://i.imgur.com/6P5v8Ad.png" alt="some_text">
  706. <p>
  707. written by <b>ALLISON</b>
  708. <br>
  709. <br>est. <i>xx</i>
  710. <p>
  711. <img src="http://i.imgur.com/sVXdoNy.png" alt="some_text">
  712. <p>
  713. DRAFTS :
  714. <br>MEMES :
  715. <br>STARTERS :
  716. <p>
  717. <img src="http://i.imgur.com/9UjcacI.png" alt="some_text">
  718. <p>
  719. put ur cute lil crew here if u have one for spock !! if not, just delete this section uwu
  720.  
  721. <p>theme commission by <a href="http://harvalle.tumblr.com/">harvalle.</a>
  722.  
  723.  
  724. </div>
  725. </div></div>
  726.  
  727.  
  728.  
  729. <body>
  730.  
  731.  
  732. <script language=JavaScript>
  733.  
  734. </script>
  735.  
  736. <div id="links">
  737. <div id="alinks">
  738. <a href="{text:link one link}" title="{text:link one title}">☆</a></div>
  739. <div id="blinks">
  740. <a href="{text:link two link}" title="{text:link two title}">☆</a></div>
  741. <div id="clinks">
  742. <a href="{text:link three link}" title="{text:link three title}">☆</a></div>
  743. <div id="dlinks">
  744. <a href="{text:link four link}" title="{text:link four title}">☆</a></div>
  745. <div id="elinks">
  746. <a href="{text:link five link}" title="{text:link five title}">☆</a></div>
  747. <div id="flinks">
  748.  
  749. </div>
  750.  
  751. {block:Pagination}
  752. <div id="pagination">
  753.  
  754. {block:PreviousPage}<a href="{PreviousPage}" title="back">◄ </a>{/block:PreviousPage}
  755. {block:NextPage}<a href="{NextPage}" title="forth">►</a>{/block:NextPage}
  756. </div>{/block:Pagination}
  757.  
  758. </div></div>
  759.  
  760.  
  761.  
  762. <div id="postscontainer">
  763.  
  764. {block:Posts}<div align="left">
  765.  
  766. <div id="posts">
  767.  
  768. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  769.  
  770.  
  771. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  772.  
  773. {block:Photoset}<center>{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  774.  
  775. {block:Quote}<div id="quote">{Quote}</div><br>{block:Source}<b><div style="font-family: courier new; font-size: 11px; text-align: center;">{Source}</div></b>{/block:Source}{/block:Quote}
  776.  
  777. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{/block:Link}
  778.  
  779. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  780.  
  781. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  782.  
  783. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  784.  
  785. {block:Answer}<div id="askbg"><div id="ask"></div><br><img src="{AskerPortraitURL-24}"> {Asker} said: {Question}</div> {Answer}{/block:Answer}</div>
  786.  
  787.  
  788. <p><p>
  789. {block:Date}
  790. <div id="permalink">
  791. <center><a href="{Permalink}">★</a>
  792. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  793. {block:RebloggedFrom}<a href="{ReblogParentURL}">★</a>{block:ContentSource} <a href="{ReblogRootURL}">★</a> <a href="{ReblogURL}">★</a>{/block:ContentSource}{/block:RebloggedFrom}</center></div>
  794.  
  795. <div class="tags">
  796. {block:Tags} <a href="{TagURL}"> -{Tag}</a>{/block:Tags}</div>
  797. {/block:HasTags}
  798. {/block:Date}
  799.  
  800. {block:PostNotes}
  801. <div class="note">
  802. {PostNotes}
  803. </div>
  804. {/block:PostNotes}
  805.  
  806.  
  807. {/block:Posts}
  808.  
  809.  
  810. </div>
  811.  
  812.  
  813. {/block:PostNotes}
  814. {/block:NoteCount}
  815. {block:PostNotes}{/block:PostNotes}
  816. {/block:RebloggedFrom}
  817. {/block:Posts}
  818. {block:PostNotes}{PostNotes}{/block:PostNotes}
  819. {/block:Posts}
  820.  
  821.  
  822. </div></div></div></div></div></div></div></div></div></div></div></div>
  823.  
  824. <div id="credit"><a href="http://harvalle.tumblr.com/" title="HARVALLE'S COMMISSIONS."><h2>℗</h2></a></div>
  825.  
  826. <script language=JavaScript>
  827. <!--
  828.  
  829. //Disable right mouse click Script
  830. //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  831. //For full source code, visit http://www.dynamicdrive.com
  832.  
  833. var message="sorry - no dice. if you want to open in a new tab hit CTRL+click.";
  834.  
  835. ///////////////////////////////////
  836. function clickIE4(){
  837. if (event.button==2){
  838. alert(message);
  839. return false;
  840. }
  841. }
  842.  
  843. function clickNS4(e){
  844. if (document.layers||document.getElementById&&!document.all){
  845. if (e.which==2||e.which==3){
  846. alert(message);
  847. return false;
  848. }
  849. }
  850. }
  851.  
  852. if (document.layers){
  853. document.captureEvents(Event.MOUSEDOWN);
  854. document.onmousedown=clickNS4;
  855. }
  856. else if (document.all&&!document.getElementById){
  857. document.onmousedown=clickIE4;
  858. }
  859.  
  860. document.oncontextmenu=new Function("alert(message);return false")
  861.  
  862. // -->
  863. </script>
  864.  
  865. </body>
  866.  
  867.  
  868. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement