Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.16 KB | None | 0 0
  1. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="https://static.tumblr.com/oqunxkt/DGcpop0s0/favicon.png">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. <meta name="description" content="{MetaDescription}" />
  6.  
  7. <meta name="color:Text" content="#414141">
  8. <meta name="color:Link" content="#a53d3f">
  9. <meta name="color:Link Hover" content="#d2d2d2">
  10. <meta name="color:Link Shadow" content="#513c3d">
  11. <meta name="color:Theme Link" content="#a53d3f">
  12. <meta name="color:Background" content="#d2d2d2">
  13. <meta name="color:Border" content="#a53d3f">
  14. <meta name="colorScrollbar" content="#a53d3f">
  15. <meta name="color:Blockquote Background" content="#cecece">
  16. <meta name="color:Border" content="#a53d3f">
  17. <meta name="color:Blockquote Border" content="#a53d3f">
  18. <meta name="color:Bold" content="#a53d3f">
  19. <meta name="color:Bold Shadow" content="#513c3d">
  20. <meta name="color:Italic" content="#a53d3f">
  21. <meta name="color:Italic Shadow" content="#513c3d">
  22. <meta name="color:Post Info" content="#d2d2d2">
  23. <meta name="color:caption" content="">
  24.  
  25. <meta name="image:Sidebar" content=""/>
  26.  
  27.  
  28.  
  29. <!--- CSS --->
  30.  
  31.  
  32. <!--- FONTS --->
  33.  
  34. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script><script /type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script><script>(function($){$(document).ready(function(){$("[title]").style_my_tooltips();});})(jQuery);</script>
  35.  
  36.  
  37. <script type="text/javascript">
  38. WebFontConfig = {
  39. google: { families: [ 'Inconsolata::latin', 'VT323::latin' ] }
  40. };
  41. (function() {
  42. var wf = document.createElement('script');
  43. wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  44. wf.type = 'text/javascript';
  45. wf.async = 'true';
  46. var s = document.getElementsByTagName('script')[0];
  47. s.parentNode.insertBefore(wf, s);
  48. })(); </script>
  49.  
  50. <script type="text/javascript">
  51. WebFontConfig = {
  52. google: { families: [ 'Teko:300:latin', 'Roboto+Mono::latin' ] }
  53. };
  54. (function() {
  55. var wf = document.createElement('script');
  56. wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  57. wf.type = 'text/javascript';
  58. wf.async = 'true';
  59. var s = document.getElementsByTagName('script')[0];
  60. s.parentNode.insertBefore(wf, s);
  61. })(); </script>
  62.  
  63. <!--- POP UPS/TOOLTIP--->
  64.  
  65. <script type="text/javascript"
  66. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  67. <script>
  68. $(document).ready(function() {
  69. //
  70. $('a.poplight[href^=#]').click(function() {
  71. var popID = $(this).attr('rel'); //Get Popup Name
  72. var popURL = $(this).attr('href'); //Get Popup href to define size
  73. var query= popURL.split('?');
  74. var dim= query[1].split('&');
  75. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  76. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  77. var popMargTop = ($('#' + popID).height() + 80) / 2;
  78. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  79. //Apply Margin to Popup
  80. $('#' + popID).css({
  81. 'margin-top' : -popMargTop,
  82. 'margin-left' : -popMargLeft
  83. });
  84. $('body').append('<div id="fade"></div>');
  85. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  86. return false;
  87. });
  88. $('a.close, #fade').live('click', function() {
  89. $('#fade , .popup_block').fadeOut(function() {
  90. $('#fade, a.close').remove(); //fade them both out
  91. });
  92. return false;
  93. });
  94. });
  95. </script>
  96.  
  97. <!--- PHOTO SIZES --->
  98.  
  99. <script type="text/javascript">
  100. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  101. $(document).ready(function() {
  102. function photosetResize() {
  103. $('iframe.photoset').each(function(){
  104. var newSize = 337;
  105. var newSrc = $(this).attr('src').replace('500',newSize);
  106. $(this).attr('src', newSrc).width(newSize);
  107. var high = $(this).css('height');
  108. var calculate = parseInt(high, 10)* newSize/500;
  109. $(this).css('height', calculate);
  110. });
  111. }
  112. photosetResize();
  113. });
  114. </script>
  115.  
  116.  
  117.  
  118.  
  119. <style type="text/css">
  120.  
  121. /* ---------------------------- TOOLTIP ----------------------------- */
  122. #s-m-t-tooltip
  123. { max-width:300px;
  124. margin:20px;
  125. padding:4px;
  126. border:3px double#000;
  127. -webkit-transition: all 0.4s ease-in-out;
  128. background:#000;
  129. color:#bdb6aa;
  130. letter-spacing:1px; /* font spacing */
  131. z-index:999999;
  132. text-transform:uppercase;
  133. font-size:8px;
  134. font-family:'tinytots';
  135. }
  136.  
  137.  
  138. /* ---------------------------- SCROLLBAR -------------------------- */
  139.  
  140. ::-webkit-scrollbar
  141. { width: 5px;
  142. height: 0px;
  143. background:#000;}
  144. ::-webkit-scrollbar-button:start:decrement,
  145. ::-webkit-scrollbar-button:end:increment
  146. { height: 2px;
  147. display: block; }
  148. ::-webkit-scrollbar-track-piece {}
  149. ::-webkit-scrollbar-thumb:vertical
  150. {
  151. height: 5px;
  152. background:#fff;
  153. border-bottom-left-radius:20px;
  154. border-bottom-right-radius:20px;
  155. }
  156.  
  157.  
  158. img {max-width:300px;}
  159.  
  160.  
  161.  
  162.  
  163. .popup_block{
  164. display:none;
  165. float:left;
  166. position:fixed;
  167. top:50%;left:53%;
  168. z-index: 99999;
  169.  
  170. }
  171.  
  172. *html #fade {position: absolute;}
  173. *html .popup_block {position: absolute;}
  174. #fade {
  175. display:none;
  176. position:fixed;
  177. left:0px;
  178. top:0px;
  179. width:100%;
  180. height:100%;
  181. z-index:9999;
  182. background:#000; /* change to #fff for solid white */
  183. opacity:0.5; /* change to opacity:1; */
  184. }
  185. /* --------------------------- CURSOR -------------------------- */
  186.  
  187.  
  188. body, a:hover
  189. { cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important; }
  190.  
  191.  
  192.  
  193.  
  194. #textbox {float:left;position:fixed;color:#1a1a1a;margin-top:550px;margin-left:290px;}
  195.  
  196.  
  197.  
  198.  
  199. /* -------- GENERAL ---------- */
  200.  
  201. html, body, h1, h2, h3, h4, h5, h6, p, ol, blockquote {margin:0; padding:0; list-style:none;}
  202.  
  203. @font-face { font-family: "muli"; src: url('https://dl.dropboxusercontent.com/s/swqjp2tlc6l94cj/muli-light.ttf?dl=1'); format(“truetype”);}
  204. body {
  205. font-family:times;
  206. letter-spacing:1px;
  207. color: {color:Text};
  208. background-color: {color:Background};
  209. background-repeat:no-repeat;
  210. background-position:fixed;
  211. background-image:url("https://static.tumblr.com/py3uj5x/URApzd7w4/theme.gif");
  212. background-attachment:absolute;
  213. line-height:130%;
  214. font-size:9px;
  215. height:834px;
  216. margin:0px; }
  217.  
  218. #content {
  219. position:absolute;
  220. overflow-y:none;
  221. }
  222.  
  223. #sidebar {
  224. max-width:100px;
  225. max-height:100px;
  226. position:fixed;
  227. margin-left:205px;
  228. margin-top:161px;
  229. padding:15px;
  230. }
  231.  
  232.  
  233.  
  234.  
  235. /* ----- TEXT ----- */
  236.  
  237. a {
  238. color: {color:Link};
  239. -webkit-transition: 2s;
  240. font-family:times new roman;
  241. text-decoration:underline;}
  242.  
  243. a:hover {
  244. color: {color:Link Hover};
  245. text-decoration:underline;
  246. -webkit-transition: 0.7s; }
  247.  
  248. h2{
  249. font-size:20px;
  250. font-family:courier new;
  251. color:#fff;
  252. text-shadow: 1px 1px 1px #000;
  253. text-shadow: -1px -1px 1px #000;
  254. text-transform:uppercase;
  255. background:#111111;
  256. border: 1px solid{color:Border};
  257. padding:10px;
  258. background-image:url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');
  259. text-align:center;
  260. margin-top:10px;
  261. margin-bottom:10px;
  262. margin-left:10px;
  263. margin-right:10px; }
  264. @font-face { font-family: "bebas_neue"; src: url('https://dl.dropboxusercontent.com/s/scbj3da4dz3dfmf/bebasneue.otf?dl=1'); format(“truetype”);}
  265. b, strong {
  266. font-weight:bold;
  267. color:{color:Bold}; }
  268.  
  269. i, em, italic {
  270. font-weight:normal;
  271. color:{color:Italic};
  272. text-shadow: 1px 0 0px {color:Italic Shadow};
  273. font-size:13px;
  274. font-family:'bebas_neue';
  275. text-decoration:none;
  276. }
  277.  
  278. sub, sup, small {font-size:9px;}
  279.  
  280.  
  281. /* -------- BLOCKQUOTE -------- */
  282. blockquote {
  283. padding:2px 10px;
  284. width:94%;
  285. margin:3px 0 4px 10px;
  286. border-left: 1px solid {color:Border};
  287. border-radius: 0px;
  288. font-size:10px;
  289. }
  290.  
  291.  
  292.  
  293. blockquote img {
  294. max-width:100%;
  295. height:auto;
  296. border: 3px double#000;
  297. float:right!important;
  298. margin-right:10px;
  299. margin-top: 15px;
  300. padding:10px;
  301. }
  302.  
  303. /* ------- IMAGE ------*/
  304.  
  305.  
  306.  
  307.  
  308. #bottomborder {margin-top:780px;margin-left:-14px;position:fixed;height:100%;background-color:#000;width:100%;color:#fff;font-weight:lighter;padding:10px;}
  309. #bottomborder a {font-family:'tinytots';color:#fff;font-weight:100;}
  310. #topborder {margin-top:0px;margin-left:-14px;position:fixed;height:12px;background-color:#000;width:100%;color:#fff;font-weight:lighter;padding:10px;}
  311. #topborder a {font-family:'tinytots';color:#fff;font-weight:100;margin-top:5px;}
  312. #leftborder {margin-top:0px;position:fixed;height:100%;background-color:#000;width:10px;color:#fff;font-weight:lighter;padding:10px;}
  313. #rightborder {position:fixed;margin-left:98%;height:100%;background-color:#00;width:100%;color:#fff;font-weight:lighter;padding:10px;}
  314.  
  315. @font-face { font-family: "tinytots"; src: url('https://dl.dropboxusercontent.com/s/y0pfz7ndq83n7j7/04b_03_.ttf?dl=1'); format(“truetype”);}
  316.  
  317. /* ------------------------------ LINKS --------------------------- */
  318.  
  319.  
  320. #link1 {
  321. position:fixed;
  322. margin-top:311px;
  323. margin-left:-29px;
  324.  
  325. text-decoration:none;
  326. animation-name: stretch;
  327. animation-duration: 1.5s;
  328. animation-timing-function: ease-out;
  329. animation-delay: 0;
  330. animation-direction: alternate;
  331. animation-iteration-count: infinite;
  332. animation-fill-mode: none;
  333. animation-play-state: running;
  334. }
  335. #link1 a{
  336. font-size:60px;
  337. color:{color:Theme Link};
  338. -webkit-transform: rotate(13deg);
  339. -moz-transform: rotate(13deg);
  340. -o-transform: rotate(13deg);
  341. -ms-transform: rotate(13deg);
  342. transform: rotate(13deg);
  343. opacity:0;
  344. text-decoration:none;
  345. text-shadow:-1px -1px 0px #0A0A0A;
  346. }
  347. #link1 a:hover{
  348. opacity:1;}
  349.  
  350. #link2 {
  351. position:fixed;
  352. margin-top:311px;
  353. margin-left:45px;
  354.  
  355. animation-name: stretch2;
  356. animation-duration: 2s;
  357. animation-timing-function: ease-out;
  358. animation-delay: 3;
  359. animation-direction: alternate;
  360. animation-iteration-count: infinite;
  361. animation-fill-mode: none;
  362. animation-play-state: running;
  363. text-decoration:none;}
  364. #link2 a{
  365. font-size:30px;
  366. color:{color:Theme Link};opacity:0;
  367. text-decoration:none;text-shadow:1px 1px 0px #0A0A0A;}
  368. #link2 a:hover{
  369. opacity:1;}
  370.  
  371.  
  372. #link3 {
  373. position:fixed;
  374. margin-top:311px;
  375. margin-left:106px;
  376. animation-name: stretch3;
  377. animation-duration: 2.2s;
  378. animation-timing-function: ease-out;
  379. animation-delay: 3;
  380. animation-direction: alternate;
  381. animation-iteration-count: infinite;
  382. animation-fill-mode: none;
  383. animation-play-state: running;
  384. text-decoration:none;}
  385. #link3 a{
  386. font-size:60px;
  387. color:{color:Theme Link};opacity:0;
  388. text-decoration:none;text-shadow:-1px -1px 0px #0A0A0A;}
  389. #link3 a:hover{
  390. opacity:1;}
  391.  
  392.  
  393. #link4 { position:fixed;margin-top:510px;margin-left:63px;text-decoration:none;font-weight:bold; text-decoration:none;
  394. }
  395. #link4 a { font-size:12px;color:{color:Theme Link};text-shadow:1px 1px 0px#000; text-decoration:none;
  396. }
  397. #link5 { position:fixed;margin-top:510px;margin-left:120px;text-decoration:none;font-weight:bold;}
  398. #link5 a { font-size:12px;color:{color:Theme Link};text-shadow:1px 1px 0px#000; text-decoration:none;
  399. }
  400. #link6 { position:fixed;margin-top:510px;margin-left:180px;text-decoration:none;font-weight:bold;}
  401. #link6 a { font-size:12px;color:{color:Theme Link};text-shadow:1px 1px 0px#000; text-decoration:none;
  402. }
  403.  
  404.  
  405.  
  406.  
  407. /* -------------------------- PAGINATION ---------------------------- */
  408.  
  409. #pagination {position:inline-block;margin-top:723px;margin-left:282px;position:absolute;
  410. }
  411.  
  412. #pagination a {font-size:8px;font-weight:none;letter-spacing:1px;font-family:'silkscreen';text-transform:uppercase;color:#fff;background:#000;padding-bottom:5px;padding-left:8px;padding-right:8px;padding-top:4px;text-decoration:none;border:3px double{color:Background};}
  413.  
  414. /* ---------------------------- POSTS ------------------------------- */
  415.  
  416.  
  417. .post {
  418. line-height: 120%; z-index:99 ;margin-bottom:20px;}
  419.  
  420.  
  421.  
  422. #post {
  423. width:330px;
  424. z-index:99;
  425. margin-left:0px;
  426. padding-bottom:30px; }
  427.  
  428. #entries {
  429. position:absolute;
  430. overflow-x:hidden;-webkit-transition: 0.7s;
  431. overflow-y:scroll;
  432. width:347px;
  433. opacity:0;
  434. height:714px;
  435. text-align:justify;
  436. background:#000;
  437. padding:18px;
  438. top:-118px;
  439. margin-top:150px;
  440. margin-left:532px;
  441.  
  442.  
  443. }
  444.  
  445. #entries:hover{opacity:1;-webkit-transition: 0.7s;}
  446.  
  447. .post h3 {
  448. font-size: 15px; }
  449.  
  450. .caption{
  451. font-size:11px;
  452. font-style:none;
  453. text-align:center;
  454. margin-left:0px;
  455. margin-top:20px;
  456. width:325px;
  457. background:{color:caption};}
  458.  
  459. /* kinds of posts */
  460. .posttext {text-align: left;padding-left:20px;padding-right:20px;text-align:justify;}
  461.  
  462. .postphoto {margin-bottom: 2px; text-align: center;width:305px;padding:0px;}
  463. .postphoto img {width:337px;border:none;padding:0px;-webkit-filter: Grayscale(100%);}
  464.  
  465. .photoset { }
  466.  
  467. .photoset img {width:250px;-webkit-filter: Grayscale(100%); }
  468.  
  469. .postquote {
  470. text-align: left;
  471. padding:25px;
  472. width:250px;
  473. padding-bottom:10px;
  474. padding-top:10px;
  475. }
  476.  
  477. .postquote .source {
  478. font-size: 12px;
  479. text-align:right;
  480. width:250px;
  481. }
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488. #ask {
  489. background-image:url("https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png");
  490. border:1px solid{color:border};
  491. margin-top:15px;
  492. font-size:8px;
  493. width: {block:If250pxPosts}200px{/block:If250pxPosts} {block:If400pxPosts}350px{/block:If400pxPosts} {block:If500pxPosts}450px{/block:If500pxPosts};
  494. text-align: justify;
  495. color:#fff;
  496. padding: 10px 5px 10px 5px
  497.  
  498. }
  499. .question {margin-bottom: 20px;background-color:#000;font-size:10px;}
  500.  
  501. .postlink {
  502. text-align: left;
  503. font-size:12px;
  504. width:250px;
  505. }
  506.  
  507. .postlinklinktitle{
  508. font-weight:bold;
  509. padding-bottom:5px;
  510. width:250px;
  511. }
  512.  
  513. .postvideo {text-align: left;width:250px;}
  514.  
  515. .postchat {text-align: left;width:250px;}
  516. .postchat li {list-style-type: none;}
  517. #bite
  518. #bite a{
  519.  
  520. }
  521. #bite .death {
  522. margin-top:0px; ease-out;width:100px;
  523. }
  524.  
  525. #actualnews {
  526. font-family:calibri;
  527. font-size:10px;
  528. color: #b8b8b8;
  529. width:100px;
  530. height:auto;
  531. padding-top:3px;
  532. border:0px dotted#696666;
  533. margin-left: 645px;
  534. margin-top:115px;
  535. text-align:center;
  536. position:fixed;
  537. }
  538.  
  539. #thekey img{
  540. width:15px;
  541. margin-top: -550px;
  542. margin-left: 430px;
  543. position:fixed;
  544. }
  545.  
  546.  
  547.  
  548.  
  549.  
  550. /* --------------------------- AUDIO POSTS ------------------------ */
  551.  
  552. .postaudio {text-align: left; }
  553.  
  554. .tumblr_audio_player {
  555. height: 30px;
  556. width: 396px;
  557. border:{color:border} solid 2px;
  558. }
  559.  
  560.  
  561. /* ---------------------------- POST INFO ------------------------- */
  562.  
  563.  
  564.  
  565. #info2 {
  566. margin-top: 50px;
  567. font-size: 15px;
  568. text-transform:none;
  569. text-align:center;
  570. margin-bottom: 60px;
  571. line-height:100%;
  572. padding:8px;
  573. margin-left:50px;
  574. border-radius:5px;
  575. text-decoration:none;
  576. word-spacing:1px;
  577. background-image:url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');
  578. color:{color:post info};
  579. }
  580.  
  581. #info2 a {color:{color:post info};font-size:8px;}
  582.  
  583. #info a{color:#fff;
  584. text-align:center;font-size:8px;
  585.  
  586. }
  587. #info a:hover{
  588. color:{color:Link Hover};
  589. }
  590.  
  591. #permalink {margin-left:-50px;position:absolute;margin-top:-30px;max-width:30px;max-height:30px;}
  592.  
  593. #source {position:absolute;margin-top:0px;margin-left:-10px;}
  594.  
  595. #postinforight{
  596. text-align:center;
  597. width:100px;
  598. }
  599.  
  600. #postinfoleft{
  601. text-align:center;
  602. width:200px;
  603. }
  604.  
  605.  
  606. /* ---------------------------- POST NOTES ------------------------ */
  607.  
  608. ol.notes {
  609. display:block;
  610. text-align:left;
  611. margin-bottom:30px;
  612. }
  613.  
  614. ol.notes li.note{padding:1%;}
  615.  
  616. .pagenotes {text-align:left;}
  617.  
  618.  
  619.  
  620. /* ------------------------------- TAGS ---------------------------- */
  621.  
  622.  
  623. .tags {
  624. color:#8C8C8C;
  625. margin-top:-70px;
  626. margin-bottom:20px;
  627. font-size:10px;
  628. }
  629.  
  630. .tags a {
  631. margin-right:5px;
  632. color:#8C8C8C;
  633. font-style:none;
  634. text-decoration:none;
  635. text-transform:lowercase;
  636. font-size:9px;
  637. font-family:arial;
  638. }
  639.  
  640. .tags a:hover {
  641. margin-right:5px;
  642. color:{color:hover};
  643. text-decoration:none;
  644. font-style:italic;
  645. }
  646. /* ---------------------------- CAPTIONS ---------------------------- */
  647.  
  648.  
  649.  
  650. /*------------------------------ CREDIT -----------------------------*/
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658. {CustomCSS}
  659.  
  660.  
  661.  
  662.  
  663.  
  664. </style></head>
  665. <body>
  666.  
  667. <div id="content">
  668.  
  669.  
  670.  
  671.  
  672.  
  673. <div id="pagination">
  674. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">fall</a>&nbsp;|&nbsp;{/block:PreviousPage}{block:NextPage}<a href="{NextPage}">rise</a>{/block:NextPage}{/block:Pagination}
  675. </div>
  676.  
  677. <div id="bottomborder" style="font-weight:lightest;text-align:center;font-family:'Tinytots';font-size:8px;">an independent and selective <b>multimuse</b> roleplay blog .&nbsp;&nbsp;&nbsp; as written by <b>heath</b> . &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>//</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;please read <b>rules & about</b> pages before interacting . &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>//</b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>triggering topics</b> may include violence , &nbsp;&nbsp;&nbsp; gore , &nbsp;&nbsp;&nbsp;religious themes .<br><br><a href="/about">ABOUT PAGE</a> • <a href="/rules">RULES PAGE</a> • <a href="/verses">VERSES PAGE</a> • <a href="httpss://www.pinterest.co.uk/HiV0LTAG3/ch-sc%C3%A1thach-macneacail/">PINTEREST</a><br><br><script language="JavaScript">var fhs = document.createElement('script');var fhs_id = "5501410";
  678. var ref = (''+document.referrer+'');var pn = window.location;var w_h = window.screen.width + " x" + window.screen.height;
  679. fhs.src = "//freehostedscripts.net/ocounter.php?site="+fhs_id+"&e1=&e2=&r="+ref+"&wh="+w_h+"&a=1&pn="+pn+"";
  680. document.head.appendChild(fhs);document.write("<span id='o_"+fhs_id+"'></span>");</script> // <script language="JavaScript">var fhsh = document.createElement('script');var fhs_id_h = "3264838";
  681. fhsh.src = "//freehostedscripts.net/ocount.php?site="+fhs_id_h+"&name=&a=1";
  682. document.head.appendChild(fhsh);document.write("<span id='h_"+fhs_id_h+"'></span>");
  683. </script></div>
  684. <div id="topborder" style="font-weight:lightest;text-align:center;font-family:'Tinytots';font-size:8px;">HE TRULY HAS HIS CLAWS DEEP IN YOU , DOESN'T HE?</div>
  685. <div id="leftborder" style="font-weight:lightest;text-align:center;font-family:'Tinytots';font-size:8px;"></div>
  686. <div id="rightborder" style="font-weight:lightest;text-align:center;font-family:'Tinytots';font-size:8px;"></div>
  687. <div id="sidebar">
  688.  
  689.  
  690. <img src="{image:Sidebar}" />
  691.  
  692. <!---UPDATES BOX--->
  693.  
  694.  
  695.  
  696.  
  697. <div id="link1"><a href="/mains" title="MAIN CHARACTERS"><img src="https://static.tumblr.com/py3uj5x/deqppenyn/icon1.png"></a></div>
  698. <div id="link2"><a href="/secondary" title="SECONDARY CHARACTERS"><img src="https://static.tumblr.com/py3uj5x/2LTppeo52/icon2.png"></a></div>
  699. <div id="link3"><a href="/cult" title="CULTISTS"><img src="https://static.tumblr.com/py3uj5x/xkQppeo7u/icon3.png"></a></div>
  700.  
  701.  
  702. <div id="link4"><a href="https://sevnthson.tumblr.com" title="home">i.</a></div>
  703. <div id="link5"><a href="#?w=300" rel="box1" class="poplight" title="ask">ii.</a></div>
  704. <div id="link6"><a href="#?w=300" rel="box2" class="poplight" title="navigation">iii.</a></div>
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712. </div>
  713.  
  714.  
  715. <div id="entries">
  716.  
  717. <ol id="posts">
  718.  
  719. {block:ContentSource}
  720. <!-- {SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  721. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  722. {/block:SourceLogo}
  723. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  724. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  725.  
  726. {block:Posts}
  727. {block:Text}
  728. <li class="posttext">
  729. {block:Title}
  730. <h3><a href="{Permalink}">{Title}</a></h3>
  731. {/block:Title}{Body}
  732. </li>
  733. {/block:Text}
  734.  
  735. {block:Photo}
  736. <li class="postphoto">
  737. <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
  738.  
  739. {block:Caption}
  740. <div class="caption">{Caption}</div>
  741. {/block:Caption}
  742. </li>
  743. {/block:Photo}
  744.  
  745. {block:Photoset}
  746. <li class="postphotoset">
  747. {Photoset-500}{block:Caption}
  748. <div class="caption">{Caption}</div>
  749. {/block:Caption}
  750. </li>
  751. {/block:Photoset}
  752.  
  753. {block:Quote}
  754. <li class="postquote">
  755. {Quote}
  756. {block:Source}
  757. <div class="source">— {Source}</div>
  758. {/block:Source}
  759. </li>
  760. {/block:Quote}
  761.  
  762. {block:Link}
  763. <div class="postlink">
  764. <a href="{URL}" {Target}><div class="postlinklinktitle">{Name}</div></a></div>
  765.  
  766. {block:Description}
  767. <div class="caption">{Description}</div>
  768. {/block:Description}
  769. </li>
  770. {/block:Link}
  771.  
  772. {block:Chat}
  773. <li class="postchat">
  774. {block:Title}
  775. <h3><a href="{Permalink}">{Title}</a></h3>
  776. {/block:Title}
  777.  
  778. <ul class="chat">
  779. {block:Lines}
  780. <li class="{Alt} user_{UserNumber}">
  781. {block:Label}
  782. <span class="label">{Label}</span>
  783. {/block:Label}{Line}
  784. </li>
  785. {/block:Lines}
  786. </ul>
  787. </li>
  788. {/block:Chat}
  789.  
  790. {block:Answer}
  791. <div id="ask">
  792. <div style="text-align: left; font-size: 9px;">
  793. <span style="text-transform: uppercase;font-family:consolas;letter-spacing: 2px; font-weight: bold;padding:5px;background:{color:background};font-family:'Teko', sans-serif;border:1px solid{color:blockquote background};">---- {Asker} <sub><big>whi<sup><big>spe<sub>red:</big></big></sub></sup></sub></span></div><br>
  794. <div style="color:#fff;text-align: justify;padding:10px;margin-left:30px;margin-top: -5px;border-left:2px dashed{color:blockquote background};background:{color:Background};overflow:auto;width:250px;height:48px;">{Question}</div>
  795. </div><br /><span style="color:#fff;text-transform: uppercase;font-family:consolas;letter-spacing: 2px; font-weight: bold;padding:5px;background:{color:background};border:1px solid{color:blockquote background}};font-family:'Teko', sans-serif;font-size:11px;margin-left:250px;">RESPONSE:</span>
  796. <div style="text-align: justify;padding:10px;color:#fff;background:{color:background};border:1px solid{color:blockquote background};font-size:10px;">{Answer}</div>
  797. {/block:Answer}
  798.  
  799.  
  800. {block:Video}
  801. <li class="post video">
  802. {Video-500}{block:Caption}
  803. <div class="caption">{Caption}</div>
  804. {/block:Caption}
  805. </li>
  806. {/block:Video}
  807.  
  808. {block:Audio}
  809. <li class="post audio">
  810. {AudioPlayerWhite}{block:Caption}
  811. <div class="caption">{Caption}</div>
  812. {/block:Caption}
  813. </li>
  814. {/block:Audio}
  815.  
  816.  
  817. <div id="info">
  818.  
  819. <div id="info2">
  820. <center>
  821. <div id="source">{block:ContentSource}<a href="{SourceURL}" a title="source"><img src="https://static.tumblr.com/q2kf3wb/UZopl2m3a/infothing2.png"></a>{/block:ContentSource}</div>
  822. <div id="permalink"><a href="{Permalink}" a title="permalink"><img src="https://static.tumblr.com/q2kf3wb/inqpl2m1c/infothing1.png"></a></div>
  823. </div>
  824. <br>
  825. {block:HasTags}
  826. <div class="tags" style="font-color:#E3E3E3;">
  827. {block:Tags}&nbsp; &nbsp;<a href="{TagURL}" a title="{Tag}">{Tag}</a> // {/block:Tags}<br><br><br><br><br><br>
  828. </div>
  829. {/block:HasTags}
  830. </div>
  831.  
  832. {block:PostNotes}<div class="pagenotes">{PostNotes}</div>{/block:PostNotes}
  833. {/block:Posts}
  834.  
  835. </ol></div></div></div></div>
  836.  
  837. {block:PostNotes}<div class="pagenotes">{PostNotes}</div>{/block:PostNotes}
  838. {/block:Posts}
  839.  
  840. </ol></div></div></div></div>
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851. </div>
  852.  
  853.  
  854.  
  855.  
  856.  
  857. </div></div>
  858.  
  859.  
  860.  
  861.  
  862.  
  863. </div>
  864.  
  865.  
  866.  
  867. <div id="box1" class="popup_block">
  868. <p><iframe frameborder="0" scrolling="no" width="110%" height="260" src="https://www.tumblr.com/ask_form/sevnthson.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe><!--[if IE]><script type="text/javascript">document.getElementById('ask_form').allowTransparency=true;</script><![endif]--></p>
  869. </div>
  870.  
  871. </div></div></div></div></div></div></div></div></div></div>
  872.  
  873. <div id="box2" class="popup_block">
  874. <div style="height:330px;width:300px;margin-top:140px;overflow:auto;padding:5px;"><justify><p><br>
  875.  
  876. <div style="width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:5px;padding-bottom:5px; border: 1px solid#b806069"><a href="https://docs.google.com/document/d/13K6-yL5HXhDb32onAYiOg9NwBYzmf0fNZtiz2LZEI5I/edit?usp=sharing" title="the muse" style="font-size:12px;font-family:'Teko', sans-serif;font-color:#fff;"><center>ABOUT</a></center></a> </div>
  877.  
  878. <div style="margin-top:-28px;margin-left:90px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:5px;padding-bottom:5px; border: 1px solid#b806069"><a href="/rules" title="guidelines" style="font-size:12px;font-family:'Teko', sans-serif;"><center>RULES</a></center></a> </div>
  879.  
  880. <div style="margin-top:-28px;margin-left:180px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:6px;padding-bottom:5px; border: 1px solid#b806069"> <a href="/verses" title="lore" style="font-size:12px;font-family:'Teko', sans-serif;"><center>VERSES</center></strong></a></p></div><br>
  881.  
  882. <div style="margin-top:2px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:6px;padding-bottom:5px; border: 1px solid#b806069"> <a href="/tagged/headcanon-.- - - ⋆- - -I-JUST-NEED-TO-KNOW-%3B- -WHO-AM-I-%3F" title="thoughts" style="font-size:12px;font-family:'Teko', sans-serif;"><center>MUSINGS</center></strong></a></p></div>
  883.  
  884. <div style="margin-top:-28px;margin-left:90px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:5px;padding-bottom:5px; border: 1px solid#b806069"><a href="/tagged/AESTHETIC-%28-MUSIC-%29- - - %60-i%27m-gonna-get-it-sorted." title="jukebox" style="font-size:12px;font-family:'Teko', sans-serif;"><center>MUSIC</strong></center></a> </div>
  885.  
  886. <div style="margin-top:-28px;margin-left:180px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:6px;padding-bottom:5px; border: 1px solid#b806069"> <a href="tagged/aesthetic-.- - - ⋆- - -SOMEDAY-YOU’RE-GOING-TO-WAKE-UP-AND-REALISE-YOU-DON’T-HAVE-TO-LISTEN-%21" title="aesthetic" style="font-size:12px;font-family:'Teko', sans-serif;"><center>AESTHETIC</center></strong></a></p></div><br>
  887.  
  888. <div style="margin-top:2px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:6px;padding-bottom:5px; border: 1px solid#b806069"> <a href="/timeline" title="past" style="font-size:12px;font-family:'Teko', sans-serif;"><center>TIMELINE</center></strong></a></p></div>
  889.  
  890. <div style="margin-top:-28px;margin-left:90px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:5px;padding-bottom:5px; border: 1px solid#b806069"><a href="/tagged/out-of-character-.- -  -⚡️- - - YEAH-.- -FUCK-DARWIN-%21" title="out of character." style="font-size:12px;font-family:'Teko', sans-serif;"><center>OOC.</strong></center></a> </div>
  891.  
  892. <div style="margin-top:-28px;margin-left:180px;width:80px;background-image: url('https://static.tumblr.com/py3uj5x/8Iuppeotw/info.png');padding-top:6px;padding-bottom:5px; border: 1px solid#b806069"> <a href="https://www.pinterest.co.uk/HiV0LTAG3/ch-sc%C3%A1thach-macneacail/" title="pls follow me" style="font-size:12px;font-family:'Teko', sans-serif;"><center>PINTEREST</center></strong></a></p></div>
  893. </div></div>
  894. </div>
  895.  
  896. </div></div></div></div></div></div></div></div></div></div>
  897.  
  898.  
  899. <!-- Wikplayer https://www.wikplayer.com -->
  900. <script type="text/javascript" src="https://www.wikplayer.com/code.js"
  901. data-config="{'skin':'https://static.tumblr.com/su8juwr/iiimqtzmy/simplespreta.css','volume':100,'autoplay':true,'shuffle':true,'repeat':1,'showcomment':false,'marqueetexton':false,'placement':'bottom','showplaylist':false,'playlist':[{'title':'me and the devil','url':'https://www.youtube.com/watch?v=xd9LpME3jnk'},{'title':'crown','url':'https://www.youtube.com/watch?v=k0txqXfQrVU'},{'title':'which witch','url':'https://www.youtube.com/watch?v=tv_JN9Tzy1g'},{'title':'exhumed','url':'https://www.youtube.com/watch?v=S4s-kGT5bFo'},{'title':'ulvinde','url':'https://www.youtube.com/watch?v=M9cNZQIzShc'},{'title':'soak','url':'https://www.youtube.com/watch?v=85mc1GiMexA'},{'title':'wounds','url':'https://www.youtube.com/watch?v=j2cBQHD89Tc'},{'title':'black static','url':'https://www.youtube.com/watch?v=22DBfSVv5Sg'}]}" ></script>
  902. <!-- Wikplayer code end -->
  903.  
  904.  
  905. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement