Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.81 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <script type="text/javascript">
  6. // <![CDATA[
  7. var colour="#709397"; // what colour are the blobs
  8. var speed=100; // speed of animation, lower is faster
  9. var blobs=5; // how many blobs are in the jar
  10. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  11.  
  12. /***************************\
  13. * Blobs in a Jar Effect *
  14. *(c)2012-13 mf2fm web-design*
  15. * http://www.mf2fm.com/rv *
  16. * DON'T EDIT BELOW THIS BOX *
  17. \***************************/
  18.  
  19. var div;
  20. var xpos=new Array();
  21. var ypos=new Array();
  22. var zpos=new Array();
  23. var dx=new Array();
  24. var dy=new Array();
  25. var dz=new Array();
  26. var blob=new Array();
  27. var swide=800;
  28. var shigh=600;
  29. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  30.  
  31. function addLoadEvent(funky) {
  32. var oldonload=window.onload;
  33. if (typeof(oldonload)!='function') window.onload=funky;
  34. else window.onload=function() {
  35. if (oldonload) oldonload();
  36. funky();
  37. }
  38. }
  39.  
  40. addLoadEvent(fill_the_jar);
  41.  
  42. function fill_the_jar() {
  43. var i, dvs;
  44. div=document.createElement('div');
  45. dvs=div.style;
  46. dvs.position='fixed';
  47. dvs.left='0px';
  48. dvs.top='0px';
  49. dvs.width='1px';
  50. dvs.height='1px';
  51. document.body.appendChild(div);
  52. set_width();
  53. for (i=0; i<blobs; i++) {
  54. add_blob(i);
  55. jamjar(i);
  56. }
  57. }
  58.  
  59. function add_blob(ref) {
  60. var dv, sy;
  61. dv=document.createElement('div');
  62. sy=dv.style;
  63. sy.position='absolute';
  64. sy.textAlign='center';
  65. if (ie_version && ie_version<10) {
  66. sy.fontSize="10px";
  67. sy.width="100px";
  68. sy.height="100px";
  69. sy.paddingTop="40px";
  70. sy.color=colour;
  71. dv.appendChild(document.createTextNode(charc));
  72. }
  73. else if (ie_version) {
  74. sy.fontSize="1px";
  75. sy.width="0px";
  76. sy.height="0px";
  77. }
  78. else {
  79. dv.appendChild(document.createTextNode(charc));
  80. sy.color='rgba(0,0,0,0)';
  81. }
  82. ypos[ref]=Math.floor(shigh*Math.random());
  83. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  84. xpos[ref]=Math.floor(swide*Math.random());
  85. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  86. zpos[ref]=Math.random()*20;
  87. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  88. blob[ref]=dv;
  89. div.appendChild(blob[ref]);
  90. set_blob(ref);
  91. }
  92.  
  93. function rejig(ref, xy) {
  94. if (xy=='y') {
  95. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  96. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  97. }
  98. else {
  99. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  100. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  101. }
  102. }
  103.  
  104. function sign(a) {
  105. if (a<0) return (-2);
  106. else if (a>0) return (2);
  107. else return (0);
  108. }
  109.  
  110. function set_blob(ref) {
  111. var sy;
  112. sy=blob[ref].style;
  113. sy.top=ypos[ref]+'px';
  114. sy.left=xpos[ref]+'px';
  115. if (ie_version && ie_version<10) {
  116. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  117. sy.fontSize=30-zpos[ref]+"px";
  118. }
  119. else if (ie_version) {
  120. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  121. }
  122. else {
  123. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  124. sy.fontSize=40+zpos[ref]+'px';
  125. }
  126. }
  127.  
  128. function jamjar(ref) {
  129. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  130. ypos[ref]+=dy[ref];
  131. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  132. xpos[ref]+=dx[ref];
  133. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  134. zpos[ref]+=dz[ref];
  135. set_blob(ref);
  136. setTimeout("jamjar("+ref+")", speed);
  137. }
  138.  
  139. window.onresize=set_width;
  140. function set_width() {
  141. var sw_min=999999;
  142. var sh_min=999999;
  143. if (document.documentElement && document.documentElement.clientWidth) {
  144. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  145. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  146. }
  147. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  148. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  149. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  150. }
  151. if (document.body.clientWidth) {
  152. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  153. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  154. }
  155. if (sw_min==999999 || sh_min==999999) {
  156. sw_min=800;
  157. sh_min=600;
  158. }
  159. swide=sw_min;
  160. shigh=sh_min;
  161. }
  162. // ]]>
  163. </script>
  164.  
  165. <link href='https://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  166. <link href='https://fonts.googleapis.com/css?family=Tillana:400,800' rel='stylesheet' type='text/css'>
  167.  
  168.  
  169. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  170.  
  171. <script>
  172.  
  173. (function($){
  174.  
  175. $(document).ready(function(){
  176.  
  177. $("a[title]").style_my_tooltips({
  178.  
  179. tip_follows_cursor:true,
  180.  
  181. tip_delay_time:90,
  182.  
  183. tip_fade_speed:600,
  184.  
  185. attribute:"title"
  186.  
  187. });
  188.  
  189. });
  190.  
  191. })(jQuery);
  192.  
  193. </script>
  194. <!--basic tooltip from tutorial-baby! Enjoy-->
  195. <style>
  196. .tooltip{
  197. display: inline;
  198. position: relative;
  199. }
  200. #s-m-t-tooltip {
  201. max-width:300px; /*how big the tooltip can be at most*/
  202. border-radius: 0px; /*change your border radius*/
  203. padding:3px 4px 5px 4px; /*padding inside tooltip*/
  204. margin:20px 7px -2px 20px; /*distance from word*/
  205. background-color:#000; /*background color*/
  206. border:1px solid #fff; /*border info*/
  207. font-family:calibri; /*tooltip font*/
  208. font-size:9px; /*tooltip font size*/
  209. letter-spacing:2px; /*tooltip letter spacing*/
  210. text-transform:uppercase; /*makes the tooltip title uppercase*/
  211. color:#fff; /*tooltip font color*/
  212. z-index:999999999999999999999999999999999999;
  213. }
  214. </style>
  215.  
  216. <script type="text/javascript"
  217. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  218. <script>
  219. $(document).ready(function() {
  220. //
  221. $('a.poplight[href^=#]').click(function() {
  222. var popID = $(this).attr('rel'); //Get Popup Name
  223. var popURL = $(this).attr('href'); //Get Popup href to define size
  224. var query= popURL.split('?');
  225. var dim= query[1].split('&');
  226. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  227. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  228. var popMargTop = ($('#' + popID).height() + 80) / 2;
  229. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  230. //Apply Margin to Popup
  231. $('#' + popID).css({
  232. 'margin-top' : -popMargTop,
  233. 'margin-left' : -popMargLeft
  234. });
  235. $('body').append('<div id="fade"></div>');
  236. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  237. return false;
  238. });
  239. $('a.close, #fade').live('click', function() {
  240. $('#fade , .popup_block').fadeOut(function() {
  241. $('#fade, a.close').remove(); //fade them both out
  242. });
  243. return false;
  244. });
  245. });
  246. </script>
  247.  
  248. <title>{Title}</title>
  249. <link rel="shortcut icon" href="{Favicon}">
  250. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  251. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  252.  
  253. <!---- this is theme 30 by Hollywhood
  254. please don't remove the credit
  255. thank yo
  256. --->
  257.  
  258. <meta name="color:Background" content="#ffffff"/>
  259. <meta name="color:Text" content="#9B9B9B"/>
  260. <meta name="color:Link" content="#b8b8b8"/>
  261. <meta name="color:border" content="#F2F2F2"/>
  262. <meta name="color:scrollbar" content="#D6D5D5">
  263. <meta name="color:Link Hover" content="#eeeeee"/>
  264.  
  265. <meta name="image:sidebar" content=""/>
  266. <meta name="image:thekey" content=""/>
  267.  
  268. <meta name="text:link 1" content="Link 1"/>
  269. <meta name="text:link 1 url" content="/"/>
  270. <meta name="text:link 2" content="Link 2"/>
  271. <meta name="text:link 2 url" content="/"/>
  272. <meta name="text:link 3" content="Link 3"/>
  273. <meta name="text:link 3 url" content="/"/>
  274. <meta name="text:link 4" content="Link 4"/>
  275. <meta name="text:link 4 url" content="/"/>
  276.  
  277. <style type="text/css">
  278.  
  279. #bite
  280. #bite a{
  281. display:block
  282. }
  283. #bite .death {
  284. margin-top:0px;filter: alpha(opacity = 0);
  285. opacity:0;-webkit-transition: all 0.5s ease-out;
  286. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  287. }
  288.  
  289. #bite:hover .death {
  290. margin-top:0px;
  291. -webkit-transition: all 0.8s ease-out;
  292. -moz-transition: all 0.8s ease-out;
  293. transition: all 0.8s ease-out;
  294. filter: alpha(opacity = 100);
  295. filter: alpha(opacity = 100);
  296. opacity:100;
  297. }
  298.  
  299. #actualnews {
  300. font-family:calibri;
  301. font-size:15px;
  302. color: #fff;
  303. background-color:#000;
  304. border: solid 2px #fff;
  305. width:200px;
  306. height:auto;
  307. padding:10px;
  308. left: 30px;
  309. top:100px;
  310. text-align:center;
  311. position:fixed;
  312. }
  313.  
  314. #thekey img{
  315. width:150px;
  316. top: 40px;
  317. left: 50px;
  318. position:fixed;
  319. }
  320.  
  321. .popup_block{
  322. display:none;
  323. background:#242424;
  324. padding:20px;
  325. border:3px solid #000; /* if you want a solid white pop-up, delete this */
  326. float:left;
  327. position:fixed;
  328. top:50%;left:50%;
  329. z-index: 99999;
  330. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  331. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  332. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  333. width: 300px;
  334. height: 400px;
  335. overflow-y:scroll;
  336. overflow-x:hidden;
  337. }
  338.  
  339. *html #fade {position: absolute;}
  340. *html .popup_block {position: absolute;}
  341. #fade {
  342. display:none;
  343. position:fixed;
  344. left:0px;
  345. top:0px;
  346. width:100%;
  347. height:100%;
  348. z-index:9999;
  349. background:#000; /* change to #fff for solid white */
  350. opacity:0.5; /* change to opacity:1; */
  351. }
  352.  
  353. ::-webkit-scrollbar-thumb{
  354. background-color: {color:scrollbar};
  355. border: 2px solid {color:background};
  356. height:auto;
  357. }
  358.  
  359. ::-webkit-scrollbar {
  360. height:auto;
  361. width:9px;
  362. background-color: {color:scrollbar};
  363. border: 4px solid {color:background};
  364. }
  365.  
  366.  
  367. iframe#tumblr_controls {
  368. white-space:nowrap;
  369. -webkit-filter: invert(100%);
  370. -moz-filter: invert(100%);
  371. -o-filter: invert(100%);
  372. -ms-filter: invert(100%);
  373. filter: invert(100%);
  374. opacity:.2;transition: .8s ease-in-out;
  375. -webkit-transition: .8s ease-in-out;
  376. -moz-transition: .8s ease-in-out;
  377. -o-transition: .8s ease-in-out;
  378. }
  379.  
  380. h1 {
  381. font-weight:normal;
  382. font-size:13px;
  383. text-align:center;
  384. font-style:normal;
  385. line-height:100%;
  386. letter-spacing:1px;
  387. text-transform:normal;
  388. color:{color:text};
  389. }
  390.  
  391. h2 {
  392. font-size:10px;
  393. text-align:center;
  394. line-height:100%;
  395. letter-spacing:-0.5px;
  396. color:{color:text};
  397. font-weight:bold;
  398. text-transform:uppercase;
  399. padding:5px;
  400. padding-bottom:2px;
  401. }
  402.  
  403.  
  404. blockquote {
  405. border-left:2px solid {color:text};
  406. padding-left:5px;
  407. margin:5px;
  408. }
  409.  
  410.  
  411. body {
  412. background:{color:background};
  413. margin:0px;
  414. color:{color:text};
  415. font-family:times;
  416. font-size:15px;
  417. line-height:120%;
  418. background-image:url("http://i.imgur.com/ZHTh4F3.png");
  419. background-attachment: fixed;
  420. background-image:stretch;
  421. background-repeat: no-repeat;
  422. background-image:cover;
  423. background-position:left top;
  424. }
  425.  
  426. a {
  427. text-decoration:none;
  428. outline:none;
  429. -moz-outline-style:none;
  430. color:{color:link};
  431. -moz-transition-duration:0.5s;
  432. -webkit-transition-duration:0.5s;
  433. -o-transition-duration:0.5s;
  434. }
  435.  
  436. a:hover {
  437. text-decoration:none;
  438. outline:none;
  439. -moz-outline-style:none;
  440. color:{color:link hover};
  441. }
  442.  
  443. img {
  444. border:none;
  445. }
  446.  
  447. blockquote {
  448. padding-left:5px;
  449. border-left:2px solid;
  450. }
  451.  
  452. blockquote blockquote {
  453. padding-left:5px;
  454. border-left:2px solid;
  455. }
  456.  
  457. #theme {
  458. width:500px;
  459. margin:0 auto -12px auto;
  460. }
  461.  
  462. #post {
  463. width:400px;
  464. padding-bottom:30px;
  465. margin-top:20px;
  466. }
  467.  
  468.  
  469. #entries {
  470. padding:10px;
  471. left:300px;
  472. top:500px;
  473. position:fixed;
  474. background-color:transparent;
  475. width:420px;
  476. height:270px;
  477. top:400px;
  478. padding: 20px;
  479. overflow-x:scroll;
  480. scroll:left;
  481. overflow-x:hidden;
  482. }
  483.  
  484. #sidebar {
  485. color:{color:text};
  486. position:fixed;
  487. width:91px;
  488. height:auto;
  489. top:220px;
  490. left:750px;
  491. text-align:left;
  492. }
  493.  
  494. #sidebarimage img {
  495. width:100px;
  496. margin-top:0px;
  497. margin-bottom:5px;
  498. padding:-1px;
  499. outline-offset:4px;
  500. }
  501.  
  502. #alinks {
  503. position:fixed;
  504. font-family:cambria;
  505. width:10px;
  506. top:150px;
  507. left:700px;
  508. font-size:40px;
  509. text-transform:lowercase;
  510. text-align:center;
  511. line-height:170%;
  512. }
  513.  
  514. #alinks a{
  515. line-height:170%;
  516. padding:1px;
  517. margin-top:1px;
  518. margin-left:2px;
  519. color:{color:link};
  520. -moz-transition-duration:.7s;
  521. -webkit-transition-duration:.7s;
  522. -o-transition-duration:.7s;
  523. }
  524.  
  525. #alinks a:hover {
  526. color: {color:link hover};
  527. -moz-transition-duration:.4s;
  528. -webkit-transition-duration:.4s;
  529. -o-transition-duration:.4s;
  530. color: transparent;
  531. text-shadow: #fff 0 0 5px;
  532. text-decoration:none;
  533.  
  534. }
  535.  
  536. #blinks {
  537. position:fixed;
  538. font-family:cambria;
  539. width:10px;
  540. top:200px;
  541. left:850px;
  542. font-size:40px;
  543. text-transform:lowercase;
  544. text-align:center;
  545. line-height:170%;
  546. }
  547.  
  548. #blinks a{
  549. line-height:170%;
  550. padding:1px;
  551. margin-top:1px;
  552. margin-left:2px;
  553. color:{color:link};
  554. -moz-transition-duration:.7s;
  555. -webkit-transition-duration:.7s;
  556. -o-transition-duration:.7s;
  557. }
  558.  
  559. #blinks a:hover {
  560. color: {color:link hover};
  561. -moz-transition-duration:.4s;
  562. -webkit-transition-duration:.4s;
  563. -o-transition-duration:.4s;
  564. color: transparent;
  565. text-shadow: #fff 0 0 5px;
  566. text-decoration:none;
  567.  
  568. }
  569.  
  570. #clinks {
  571. position:fixed;
  572. font-family:cambria;
  573. width:10px;
  574. top:300px;
  575. left:800px;
  576. font-size:40px;
  577. text-transform:lowercase;
  578. text-align:center;
  579. line-height:170%;
  580. }
  581.  
  582. #clinks a{
  583. line-height:170%;
  584. padding:1px;
  585. margin-top:1px;
  586. margin-left:2px;
  587. color:{color:link};
  588. -moz-transition-duration:.7s;
  589. -webkit-transition-duration:.7s;
  590. -o-transition-duration:.7s;
  591. }
  592.  
  593. #clinks a:hover {
  594. color: {color:link hover};
  595. -moz-transition-duration:.4s;
  596. -webkit-transition-duration:.4s;
  597. -o-transition-duration:.4s;
  598. color: transparent;
  599. text-shadow: #fff 0 0 5px;
  600. text-decoration:none;
  601.  
  602. }
  603.  
  604. #dlinks {
  605. position:fixed;
  606. font-family:cambria;
  607. width:10px;
  608. top:370px;
  609. left:1000px;
  610. font-size:40px;
  611. text-transform:lowercase;
  612. text-align:center;
  613. line-height:170%;
  614. }
  615.  
  616. #dlinks a{
  617. line-height:170%;
  618. padding:1px;
  619. margin-top:1px;
  620. margin-left:2px;
  621. color:{color:link};
  622. -moz-transition-duration:.7s;
  623. -webkit-transition-duration:.7s;
  624. -o-transition-duration:.7s;
  625. }
  626.  
  627. #dlinks a:hover {
  628. color: {color:link hover};
  629. -moz-transition-duration:.4s;
  630. -webkit-transition-duration:.4s;
  631. -o-transition-duration:.4s;
  632. color: transparent;
  633. text-shadow: #fff 0 0 5px;
  634. text-decoration:none;
  635.  
  636. }
  637.  
  638. #description {
  639. width:103px;
  640. font-family:times;
  641. margin-bottom:0px;
  642. margin-top:20px;
  643. left:-2px;
  644. text-align:justify;
  645. font-size:100%;
  646. color: {color:text};
  647. letter-spacing:1px;
  648. line-height:115%;
  649. }
  650.  
  651. #description a {
  652. color:{color:link};
  653. }
  654.  
  655. #description a:hover {
  656. color:{color:link hover};
  657. }
  658.  
  659. #pagination {
  660. font-family:cambria;
  661. width:103px;
  662. font-size:20px;
  663. text-transform:normal;
  664. top:300px;
  665. left:600px;
  666. padding-top:25px;
  667. letter-spacing:1px;
  668. font-style:normal;
  669. text-align:center;
  670. }
  671.  
  672. #pagination a {
  673. color:{color:link};
  674. }
  675.  
  676. #info {
  677. font-family:cambria;
  678. width:398px;
  679. margin-top:0px;
  680. padding-top:1px;
  681. font-size:10px;
  682. letter-spacing:1px;
  683. color:{color:text};
  684. background:#3b3b3b;;
  685. text-transform:lowercase;
  686. opacity:1;
  687. text-align:center;
  688. }
  689.  
  690. #info a {
  691. color:{color:link};
  692. text-align:right;
  693. }
  694.  
  695. .tags {
  696. font-family:cambria;
  697. font-style:normal;
  698. width:393px;
  699. text-transform:italic;
  700. color:{color:link};
  701. background: #3b3b3b;;
  702. line-height:120%;
  703. opacity:1;
  704. font-size:8px;
  705. text-align:left;
  706. padding-top:7px;
  707. padding-bottom:5px;
  708. padding-left:5px;
  709. }
  710.  
  711. .tags hover {
  712. color: transparent;
  713. text-shadow: #fff 0 0 5px;
  714. text-decoration:none;
  715. }
  716.  
  717. .audio{
  718. background-color:#e5e5e5;
  719. height:65px;
  720. overflow:hidden;
  721. }
  722.  
  723. #ask {
  724. float:left;
  725. margin-left:10px;}
  726.  
  727. #credit {
  728. font-size:9px;
  729. font-family:cambria;
  730. font-style:italic;
  731. letter-spacing:1px;
  732. -moz-transition-duration:0.5s;
  733. -webkit-transition-duration:0.5s;
  734. -o-transition-duration:0.5s;
  735. }
  736.  
  737. #credit a {
  738. background-color:#fff;
  739. padding:5px;
  740. border:1px solid #e9e9e9;
  741. position:fixed;
  742. right:15px;
  743. bottom:10px
  744. }
  745.  
  746. #credit a:hover {
  747. color:#fff;
  748. background-color:#191919;
  749. }
  750.  
  751.  
  752.  
  753. {CustomCSS}</style></head><body>
  754.  
  755. <div id="bite">
  756. <div id="thekey"><img src="{image:thekey}"></div>
  757. <div class="death">
  758. <div id="actualnews">
  759. independent <b>multimuse</b>
  760. <p>
  761. asks: <i>321</i>
  762. <p>
  763. drafts: <i>75</i>
  764. <p>
  765. accepting new threads <b>selectively</b>
  766. <p>
  767. M!A: <i>none but accepting</i>
  768. <p>
  769. est. March, 26, 2016
  770. <p>
  771. written by <i>lulu</i>
  772. </div>
  773. </div></div>
  774.  
  775. <div id="theme">
  776.  
  777. <div id="sidebar">
  778.  
  779. <div id="sidebarimage">
  780. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  781.  
  782. <div id="alinks">
  783. <a title="message." href="#?w=400" rel="ask" class="poplight">★</a>
  784. </div>
  785.  
  786. <div id="blinks">
  787. <a title="submit." href="#?w=400" rel="sub" class="poplight">★</a>
  788. </div>
  789.  
  790. <div id="clinks">
  791. <a title="regulations." href="#?w=400" rel="reg" class="poplight">★</a>
  792. </div>
  793.  
  794. <div id="dlinks">
  795. <a title="verses." href="#?w=400" rel="ver" class="poplight">★</a>
  796. </div>
  797.  
  798. <div id="description">
  799. {Description}</div>
  800. <p></p><br><br><center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">◀</a>{/block:PreviousPage}{/block:Pagination}
  801. {block:Pagination}{block:NextPage} <a href="{NextPage}">▶</a>{/block:NextPage}{/block:Pagination}{/block:Pagination} </center></div>
  802.  
  803. <div id="entries">{block:Posts}<div id="post">
  804.  
  805. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  806.  
  807. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  808.  
  809. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  810.  
  811. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  812.  
  813. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  814.  
  815. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  816.  
  817. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  818. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  819.  
  820. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  821.  
  822. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="border-radius:90px; opacity:.9;margin-left:3px;"></div> &nbsp;<em>{Asker}:<br> &nbsp; <big>"{Question}"</big></em><br><br>{Answer}{/block:Answer}
  823.  
  824. {block:Date}<div id="info"><a href="{Permalink}" style="background-color:#3b3b3b;padding:3px;color:#fff;" title="{TimeAgo}">♥</a> {block:NoteCount}<a href="{Permalink}" style="background-color:#3b3b3b;padding:3px;color:#fff;" title="{NoteCount}">♥</a> {/block:NoteCount} {block:RebloggedFrom} <a title="via {ReblogParentName}" style="background-color:#3b3b3b;padding:3px;color:#fff;" href="{ReblogParentURL}">♥</a>{/block:RebloggedFrom}
  825. {block:ContentSource} <a title="source {SourceTitle}" href="{SourceURL}" style="background-color:#3b3b3b;padding:3px;color:#fff;">♥</a> {/block:ContentSource}{/block:Date}</div>
  826. {block:HasTags}
  827. <div class="tags">
  828. {block:Tags} # <a href="{TagURL}"> {Tag}</a>{/block:Tags}</div>
  829. {/block:HasTags}
  830. <div class="postnote">
  831. {block:PostNotes}{PostNotes}{/block:PostNotes}
  832. </div>
  833. </div>
  834. {/block:Posts}
  835.  
  836. </div>
  837.  
  838. </body>
  839.  
  840. <div id="ask" class="popup_block">
  841. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  842. </div>
  843.  
  844. </div></div></div></div></div></div></div></div></div></div>
  845.  
  846. <div id="sub" class="popup_block">
  847. <Center><p><iframe id="submit_form" src="http://www.tumblr.com/submit_form/curscdme.tumblr.com" frameborder="0" height="500" scrolling="no" width="100%"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('submit_form').allowTransparency=true;</script><![endif]--></p>
  848. </center></div>
  849.  
  850. </div></div></div></div></div></div></div></div></div></div>
  851.  
  852. <div id="reg" class="popup_block">
  853. RULES GO HERE!
  854. </div>
  855.  
  856. </div></div></div></div></div></div></div></div></div></div>
  857.  
  858. <div id="ver" class="popup_block">
  859. VERSES GO HERE!
  860. pro tip, i find it hella easier to do the verses page in the "add a page" bit and then copy and paste the coding to here. js
  861. </div>
  862.  
  863. </div></div></div></div></div></div></div></div></div></div>
  864.  
  865. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement