Advertisement
draiads

axel

Aug 8th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!--
  4. - theme #33 by caulfielld -
  5. don't take parts of this code.
  6. don't remove this comment.
  7. don't remove the credit.
  8. -->
  9.  
  10. <html>
  11. <head>
  12.  
  13. <title>{Title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  16. <meta name="description" content="" />
  17. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  18.  
  19. <meta name="image:Sidebar" content="">
  20. <meta name="image:Background" content="">
  21.  
  22. <meta name="color:Background" content="#ffffff" />
  23. <meta name="color:Posts" content="#ffffff" />
  24. <meta name="color:Text" content="#999999" />
  25. <meta name="color:Link" content="#444444" />
  26. <meta name="color:Link hover" content="#999999" />
  27. <meta name="color:Info" content="#444444" />
  28. <meta name="color:Bold" content="#444444" />
  29. <meta name="color:Borders" content="#eeeeee" />
  30. <meta name="color:Scrollbar" content="#444444" />
  31.  
  32. <meta name="select:Background position" content="initial" title="initial"/>
  33. <meta name="select:Background position" content="5% 5%" title="left top"/>
  34. <meta name="select:Background position" content="5% 50%" title="left center"/>
  35. <meta name="select:Background position" content="5% 95%" title="left bottom"/>
  36. <meta name="select:Background position" content="95% 5%" title="right top"/>
  37. <meta name="select:Background position" content="95% 50%" title="right center"/>
  38. <meta name="select:Background position" content="95% 95%" title="right bottom"/>
  39.  
  40. <meta name="select:Background repeat" content="repeat" title="repeat"/>
  41. <meta name="select:Background repeat" content="no-repeat" title="no repeat"/>
  42.  
  43. <meta name="select:Body font" content="roboto" title="Roboto"/>
  44. <meta name="select:Body font" content="helvetica" title="Helvetica"/>
  45. <meta name="select:Body font" content="arial" title="Arial"/>
  46. <meta name="select:Body font" content="cambria" title="Cambria"/>
  47. <meta name="select:Body font" content="calibri" title="Calibri"/>
  48. <meta name="select:Body font" content="trebuchet ms" title="Trebuchet ms"/>
  49.  
  50. <meta name="select:Body font size" content="09px" title="09px"/>
  51. <meta name="select:Body font size" content="10px" title="10px"/>
  52. <meta name="select:Body font size" content="11px" title="11px"/>
  53.  
  54. <meta name="select:Posts width" content="250" title="250px"/>
  55. <meta name="select:Posts width" content="300" title="300px"/>
  56. <meta name="select:Posts width" content="350" title="350px"/>
  57. <meta name="select:Posts width" content="400" title="400px"/>
  58. <meta name="select:Posts width" content="450" title="450px"/>
  59. <meta name="select:Posts width" content="500" title="500px"/>
  60. <meta name="select:Posts width" content="540" title="540px"/>
  61.  
  62. <meta name="select:Number of links" content="1" title="1">
  63. <meta name="select:Number of links" content="2" title="2">
  64. <meta name="select:Number of links" content="3" title="3">
  65. <meta name="select:Number of links" content="4" title="4">
  66. <meta name="select:Number of links" content="5" title="5">
  67. <meta name="select:Number of links" content="6" title="6">
  68.  
  69. <meta name="if:Grid layout" content="0">
  70. <meta name="if:Show caption" content="1">
  71. <meta name="if:Infinite scroll" content="0">
  72. <meta name="if:No rescaling" content="0">
  73. <meta name="if:Draggable tags" content="1">
  74. <meta name="if:Custom gutter" content="0">
  75.  
  76. <meta name="text:Margin" content="50" />
  77. <meta name="text:Gutter" content="2" />
  78. <meta name="text:Link 01 URL" content="/" />
  79. <meta name="text:Link 01 title" content="Link 01">
  80. <meta name="text:Link 02 URL" content="/" />
  81. <meta name="text:Link 02 title" content="Link 02">
  82. <meta name="text:Link 03 URL" content="/" />
  83. <meta name="text:Link 03 title" content="Link 03">
  84. <meta name="text:Link 04 URL" content="/" />
  85. <meta name="text:Link 04 title" content="Link 04">
  86. <meta name="text:Link 05 URL" content="/" />
  87. <meta name="text:Link 05 title" content="Link 05">
  88. <meta name="text:Link 06 URL" content="/" />
  89. <meta name="text:Link 06 title" content="Link 06">
  90.  
  91. <script type="text/javascript"
  92. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  93. <script>
  94. $(document).ready(function() {
  95. //
  96. $('a.poplight[href^=#]').click(function() {
  97. var popID = $(this).attr('rel'); //Get Popup Name
  98. var popURL = $(this).attr('href'); //Get Popup href to define size
  99. var query= popURL.split('?');
  100. var dim= query[1].split('&');
  101. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  102. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  103. var popMargTop = ($('#' + popID).height() + 80) / 2;
  104. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  105. //Apply Margin to Popup
  106. $('#' + popID).css({
  107. 'margin-top' : -popMargTop,
  108. 'margin-left' : -popMargLeft
  109. });
  110. $('body').append('<div id="fade"></div>');
  111. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  112. return false;
  113. });
  114. $('a.close, #fade').live('click', function() {
  115. $('#fade , .popup_block').fadeOut(function() {
  116. $('#fade, a.close').remove(); //fade them both out
  117. });
  118. return false;
  119. });
  120. });
  121. </script>
  122.  
  123. <script type="text/javascript">
  124. WebFontConfig = {
  125. google: { families: [ 'times' ] }
  126. };
  127. (function() {
  128. var wf = document.createElement('script');
  129. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  130. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  131. wf.type = 'text/javascript';
  132. wf.async = 'true';
  133. var s = document.getElementsByTagName('script')[0];
  134. s.parentNode.insertBefore(wf, s);
  135. })(); </script>
  136.  
  137. <script type="text/javascript">
  138. $(document).ready(function(){
  139. $("ul#tabs li").click(function(e){
  140. if (!$(this).hasClass("active")) {
  141. var tabNum = $(this).index();
  142. var nthChild = tabNum+1;
  143. $("ul#tabs li.active").removeClass("active");
  144. $(this).addClass("active");
  145. $("ul#tab li.active").removeClass("active");
  146. $("ul#tab li:nth-child("+nthChild+")").addClass("active");
  147. }
  148. });
  149. });
  150. </script>
  151.  
  152. <script src="http://static.tumblr.com/nb65v05/Is9nx5ffq/imagesloaded.js"></script>
  153. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  154. {block:ifNotCustomGutter}<link href="http://static.tumblr.com/nb65v05/3i0nvm3eg/sghn.css" rel="stylesheet" type="text/css"/>{/block:ifNotCustomGutter}
  155. <link href="http://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  156. <script src="http://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  157.  
  158. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  159. <script>
  160. (function($){
  161. $(document).ready(function(){
  162. $("[title]").style_my_tooltips({
  163. tip_follows_cursor:true,
  164. tip_delay_time:200,
  165. tip_fade_speed:300
  166. }
  167. );
  168. });
  169. })(jQuery);
  170. </script>
  171.  
  172. <script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script>
  173. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  174.  
  175. <link href='https://fonts.googleapis.com/css?family=Roboto:400,500,700' rel='stylesheet' type='text/css'>
  176.  
  177. <script type="text/javascript">
  178. $(document).ready(function(){
  179. $(".links_body").hide();
  180. $(".links_head").click(function(){
  181. $(this).next(".links_body").slideToggle(500);
  182. }); }); </script>
  183.  
  184. <script language="Javascript">
  185. $(document).ready(function() {
  186. $('.links_body a').hide();
  187. $('.links_body a:lt({select:Number of links})').show();
  188. });
  189. </script>
  190.  
  191. <!-- SCM Music Player http://scmplayer.co -->
  192. <script type="text/javascript" src="http://scmplayer.co/script.js"
  193. data-config="{'skin':'http://static.tumblr.com/qszodba/f9Zn8cpll/coletais.css','volume':50,'autoplay':false,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'i.','url':'https://www.youtube.com/watch?v=1KtuChfoH88'},{'title':'ii.','url':'https://www.youtube.com/watch?v=B8uX8xZ4Vwc'}]}" ></script>
  194. <!-- SCM Music Player script end -->
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201. <style type="text/css">
  202.  
  203. .popup_block{
  204. font-size:10px;
  205. height:495px;
  206. overflow-y:auto;
  207. overflow-x:auto;
  208. opacity:1;
  209. display:none;
  210. background-color: #000;
  211. padding:4px;
  212. position:fixed;
  213. top:379px;
  214. left:1027px;
  215. padding:15px;
  216. z-index: 99999;
  217.  
  218. }
  219.  
  220. *html #fade {position: absolute;}
  221. *html .popup_block {position: absolute;}
  222. #fade {
  223. display:none;
  224. position:fixed;
  225. left:0px;
  226. top:0px;
  227. width:100%;
  228. height:100%;
  229. z-index:9999;
  230. background:#000; /* change to #fff for solid white */
  231. opacity:0; /* change to opacity:1; */
  232. }
  233.  
  234.  
  235. ul#tabs {text-align: center;}
  236. ul#tabs li { /*– your inactive / not viewed tabs –*/
  237. display: inline-block;
  238. background-color: transparent;
  239. border-bottom: solid 0px;
  240. padding: 5px 20px;
  241. margin-bottom: 4px;
  242. color: #fff;
  243. cursor: pointer;
  244. font-weight:bold;
  245.  
  246. }
  247.  
  248. ul#tabs li.active { /*– your active tab –*/
  249. display: inline-block;
  250. background-color: transparent;
  251. border-bottom: dashed 1px #ca9b4c;
  252. padding: 5px 20px;
  253. margin-bottom: 4px;
  254. color: #ca9b4c;
  255. cursor: pointer;
  256. font-weight:bold;
  257. -webkit-transition:
  258. all 0.5s ease-out;
  259. -moz-transition: all 0.5s ease-out;
  260. transition: all 0.5s ease-out;
  261. }
  262.  
  263. ul#tab, ul#tabs{list-style-type:none;margin:0px;padding:0px;}
  264. ul#tab li.active {display: block;}
  265. ul#tab li {display: none;}
  266.  
  267.  
  268.  
  269. body {
  270. font:{select:body font size} {select:body font}, helvetica,sans-serif, cambria, calibri;
  271. margin:0;
  272. color:{color:text};
  273. background:{color:Background} {block:ifBackgroundImage}url('{image:Background}') fixed{/block:ifBackgroundImage};
  274. background-position: {select:background position};
  275. background-repeat: {select:background repeat};}
  276.  
  277. a {
  278. color:{color:link};
  279. text-decoration: none;
  280. -webkit-transition:all 0.6s ease-in-out;/*chrome-safari*/
  281. -o-transition:all 0.6s ease-in-out;/*opera*/
  282. -moz-transition:all 0.6s ease-in-out;/*mozilla firefox*/
  283. -ms-transition:all 0.6s ease-in-out;/*ie*/
  284. transition:all 0.6s ease-in-out;/*w3c*/}
  285.  
  286. a:hover {
  287. color:{color:link hover};}
  288.  
  289. i, em {
  290. color: #d4dde4;
  291. }
  292.  
  293. b, strong {
  294. color: #bd2c3b;
  295. font-size: 9px;
  296. text-transform: uppercase;}
  297.  
  298. h3 {
  299. font-size:15px;
  300. font-weight: bolder;
  301. }
  302.  
  303. small {
  304. font-size:09px;}
  305.  
  306. ol {list-style-type:lower-roman;
  307.  
  308. }
  309.  
  310. sub, sup{font-size: 10px;}
  311.  
  312. pre {
  313.  
  314. color: #999999;
  315. font-size: 9px;
  316. font-weight: bold;
  317. font-family: courier;
  318. text-transform: uppercase;}
  319.  
  320.  
  321. .container {
  322. width:{select:posts width}px;
  323. margin:auto;
  324. {block:IndexPage}
  325. {block:ifGridLayout}
  326. width:100%;
  327. {/block:ifGridLayout}
  328. {/block:IndexPage}
  329. }
  330.  
  331. #entries{
  332. position:relative;
  333. padding-top:90px;
  334. padding-bottom:50px;
  335. {block:IndexPage}
  336. {block:ifNotGridLayout}
  337. width:{select:posts width}px;
  338. {/block:ifNotGridLayout}
  339. {block:ifGridLayout}
  340. margin: 0 auto;
  341. margin-left:350px;
  342. {/block:ifGridLayout}
  343. {/block:IndexPage}
  344. }
  345.  
  346. .posts {
  347. width:{select:posts width}px;
  348. overflow:hidden;
  349. word-wrap: break-word;
  350. {block:IndexPage}
  351. margin-bottom:{text:Margin}px;
  352. {/block:IndexPage}
  353. border:1px solid #cfcfcf;
  354. padding:2px; /*padding inside tooltip*/
  355. background-color:{color:posts};
  356. position:relative;
  357.  
  358. {block:IndexPage}
  359. {block:ifGridLayout}
  360. float:left;
  361. {/block:ifGridLayout}
  362. {/block:IndexPage} }
  363.  
  364.  
  365. .posts blockquote {
  366. border-left:1px solid #cfcfcf;
  367. padding-left:5px;
  368. margin-bottom:10px;
  369. padding:0px 5px 0px 10px;
  370. margin-left:0px;
  371. line-height:auto;
  372. }
  373.  
  374. .posts h2{
  375. font-size:18px;
  376. font-weight:bold;
  377. margin-right:10px;
  378. margin-left:10px;
  379. }
  380.  
  381. blockquote {
  382. text-align:justify;
  383. width:95%;
  384. margin-bottom:10px;
  385. padding:0px 5px 0px 10px;
  386. margin-left:0px;
  387. }
  388.  
  389. blockquote blockquote {
  390. padding:0 0 0 10px;
  391. color:#60605e;
  392. }
  393.  
  394. blockquote, small {
  395. font-size:10px;
  396. }
  397.  
  398. blockquote img {
  399. max-width:300px;
  400. height:auto;
  401. }
  402.  
  403.  
  404. .posts img, .posts li, .posts blockquote {max-width: 100%;height:auto;}
  405.  
  406. .tmblr-full img {
  407. width:100%;}
  408.  
  409. .posts .images{
  410. {block:ifNotNoRescaling}
  411. width: 100%;
  412. {/block:ifNotNoRescaling}
  413. display:block;}
  414.  
  415. {block:IfNotCustomGutter}{block:ifNoRescaling}
  416. .photo-slideshow.processed .pxu-photo img {
  417. width:auto; }{/block:ifNoRescaling}
  418.  
  419. .photo-slideshow .count-1 {
  420. max-width:{select:posts width};}
  421.  
  422. .photo-slideshow .count-2 {
  423. max-width:calc({select:posts width}px/2 - 2px)!important;
  424. max-width:-moz-calc({select:posts width}px/2 - 2px)!important;}
  425.  
  426. .photo-slideshow .count-3 {
  427. max-width:calc({select:posts width}px/3 - 2px)!important;
  428. max-width:-moz-calc({select:posts width}px/3 - 2px)!important;}
  429.  
  430. .photo-slideshow .count-3:last-of-type {
  431. max-width:calc({select:posts width}px/3 - 3px)!important;
  432. max-width:-moz-calc({select:posts width}px/3 - 3px)!important;}
  433.  
  434. .photo-slideshow .count-3:first-of-type {
  435. max-width:calc({select:posts width}px/3 - 3px)!important;
  436. max-width:-moz-calc({select:posts width}px/3 - 3px)!important;}
  437. {/block:ifNotCustomGutter}
  438.  
  439. /* SIDEBAR */
  440. .sidebar {
  441. border:#d7d7d7;
  442. width: 135px;
  443. margin-left:-200px;
  444. margin-top:150px;
  445. position:fixed;
  446.  
  447. }
  448.  
  449. .sidebar .sidebar-image{
  450. width:195px;
  451. padding:2px; /*padding inside tooltip*/
  452. display:block;
  453. margin-left: -33px;
  454. margin-right: auto;}
  455.  
  456.  
  457. .sb-title{
  458. text-align:center;
  459. text-transform:uppercase;
  460. font-size:12px;
  461. font-weight:bold;
  462. width:170px;
  463. letter-spacing:1px;
  464. margin-top:15px;
  465. margin-left:-18px;
  466. margin-bottom:05px;}
  467.  
  468. /* DESCRIPTION */
  469. .description{
  470.  
  471. margin-left:8px;
  472. margin-top:10px;
  473. text-align:center;
  474. background-color:#000;
  475. }
  476.  
  477. .description a{
  478. text-transform:uppercase;
  479. font-size:08px;
  480. letter-spacing:1px;
  481.  
  482. }
  483.  
  484. /* NAVIGATION / LINKS */
  485. .navi{
  486. line-height:150%;
  487. text-transform:uppercase;
  488. font-size:08px;
  489. text-align:center;
  490. letter-spacing:1px;
  491. margin-left:11px;
  492. }
  493.  
  494. .navi a{
  495. display:inline-block;
  496. margin-right:3px;
  497. }
  498.  
  499. /* PAGINATION */
  500.  
  501. .pag{
  502. margin-top:15px;
  503. text-align:center;
  504. text-transform:uppercase;
  505. font-size:08px;
  506. letter-spacing:1px;
  507. font-weight:bold;
  508.  
  509. }
  510.  
  511. .pag a{
  512. padding:2.5px;
  513. }
  514.  
  515. /* QUOTE POSTS */
  516. .quote {
  517. margin:10px;
  518. font-weight:bold;
  519. }
  520.  
  521. .quotetext-short {
  522. font-size: 18px;}
  523.  
  524. .quotetext-medium {
  525. font-size: 14px;}
  526.  
  527. .quotetext-long {
  528. font-size: 11px;}
  529.  
  530. .quote-source {
  531. text-align:right;
  532. font-weight:normal;
  533. }
  534.  
  535. /* CHAT POSTS */
  536. .odd, .even {
  537. margin:0px;
  538. padding:10px;
  539. border-top:1px solid {color:borders};}
  540.  
  541. .odd:first-of-type {
  542. border-top:0px solid {color:borders};}
  543.  
  544. /* AUDIO POSTS */
  545. .tumblr_audio_player {
  546. height:50px;
  547. width:50px;
  548. z-index:9999;
  549. padding:10px;
  550. margin:0;
  551. position:relative;
  552. float:left;
  553. z-index:9;
  554. background-color:white;}
  555.  
  556. .audio {
  557. height:70px;
  558. width:auto;
  559. border-bottom:1px solid {color:borders};
  560. margin-bottom:-1px;
  561. }
  562.  
  563. .audioimage {
  564. width:70px;
  565. height:70px;}
  566.  
  567. .audioimage img{
  568. float:right;
  569. width:70px;
  570. height:70px;}
  571.  
  572. .au-info {
  573. text-align:center;
  574. font-size:12px;
  575. max-width:-moz-calc({select:posts width}px - 140px)!important;
  576. line-height:70px;
  577. height:70px;
  578. overflow:auto;}
  579.  
  580. .au-info span{
  581. display: inline-block;
  582. vertical-align: middle;
  583. line-height:100%;
  584. }
  585.  
  586. /* VIDEO POSTS*/
  587. .video{
  588. position:relative;
  589. z-index:9999;}
  590.  
  591. .tumblr_video_container {
  592. width:auto!important;
  593. height:auto!important;}
  594.  
  595. .video .instagram-media {
  596. max-height:none!important;
  597. box-shadow:none!important;
  598. max-width:{select:posts width}px!important;}
  599.  
  600. /* ASK POSTS */
  601. .question{
  602. border-bottom:1px solid {color:borders};
  603. background-color:#000;
  604. padding:10px;
  605. margin-left:-5px;
  606. margin-top:-5px;
  607. width:auto;
  608. line-height:150%;
  609.  
  610. }
  611.  
  612. .question askk{
  613. letter-spacing:1px;
  614. text-transform:uppercase;
  615. }
  616.  
  617. .question img{
  618. float:left;
  619. border-radius:100%;
  620. margin-right:10px;
  621. margin-bottom:0px;
  622. }
  623. /* CAPTION */
  624. .caption{
  625. padding:10px;
  626. }
  627.  
  628. .cap{
  629. margin:10px;
  630. }
  631.  
  632. .caption a{
  633. }
  634.  
  635. /* INFO */
  636. .posts-info{
  637. color:{color:info};
  638. margin-bottom:1px;
  639. border-top:1px solid {color:borders};
  640. padding:7px;
  641. }
  642.  
  643. .posts-info a{
  644. color:{color:info};
  645. margin-left:5px;
  646. }
  647.  
  648. .posts-info a:hover{
  649. color:{color:link hover};
  650. }
  651.  
  652. .da a{
  653. text-transform:uppercase;
  654. font-size:08px;
  655. letter-spacing:1px;
  656. font-weight:bold;
  657. }
  658.  
  659. .re{
  660. float:right; }
  661.  
  662. .tags {
  663. margin-top:2px;
  664. text-transform:lowercase;
  665. line-height:110%;
  666. margin-left:2px;
  667. font-size:9px;
  668. letter-spacing:1px;
  669. text-align:justify;
  670. -moz-transition-duration:0.2s;
  671. -webkit-transition-duration:0.2s;
  672. -o-transition-duration:0.2s;
  673. }
  674. .tags a{
  675. color:#491915;
  676.  
  677. -moz-transition-duration:0.9s;
  678. -webkit-transition-duration:0.9s;
  679. -o-transition-duration:0.9s;
  680.  
  681. }
  682.  
  683. .tags a:hover {
  684.  
  685. color:#d4dde4;
  686. text-shadow: none;}
  687.  
  688. /* NOTES */
  689. #notes{
  690. width:{select:posts width}px;
  691. margin-left:0px;
  692. max-height:190px;
  693. overflow:auto;
  694. margin-top:15px;}
  695.  
  696. .notes img{border-radius:100%;}
  697.  
  698. ol.notes {
  699. padding: 0px;
  700. margin: 0;
  701. list-style-type: none;}
  702.  
  703. ol.notes li.note {padding: 10px;}
  704.  
  705. ol.notes li.note img.avatar {
  706. vertical-align: -4px;
  707. float:left;
  708. margin-right: 10px;
  709. width: 16px;
  710. height: 16px;}
  711.  
  712. ol.notes li.note span.action {}
  713.  
  714. ol.notes li.note .answer_content {font-weight: normal;}
  715.  
  716. ol.notes li.note blockquote {
  717. border-color: {color:borders};
  718. padding: 4px 10px;
  719. margin: 10px 0px 0px 25px;}
  720.  
  721. /* EXTRAS */
  722.  
  723.  
  724. a.c{
  725. position:fixed;
  726. bottom:25px;
  727. right:25px;
  728. font:07px 'trebuchet ms';
  729. text-transform:uppercase;
  730. letter-spacing:1px;
  731. text-align:right;
  732. z-index:9999999;
  733. background-color:#000;
  734. border:1px solid #000;
  735. padding:05px;
  736. border-radius:100%;
  737. color:#491915;
  738. }
  739.  
  740. #tumblr_lightbox_right_image, #tumblr_lightbox_left_image {
  741. visibility: hidden;}
  742.  
  743. #tumblr_lightbox img {
  744. box-shadow: none !important;
  745. border-radius:0 !important;}
  746.  
  747. #tumblr_lightbox {background-color: transparent !important;}
  748.  
  749. #tumblr_lightbox div:nth-child(2) {
  750. background-color: white;
  751. opacity: .8;}
  752.  
  753. #tumblr_lightbox a img {
  754. border: 3px solid #fff !important;}
  755.  
  756. ::-webkit-scrollbar {
  757. width: 3px;
  758. height: 3px;
  759. background: {color:background};}
  760.  
  761. ::-webkit-scrollbar-thumb {
  762. background-color:{color:scrollbar};}
  763.  
  764. #s-m-t-tooltip{
  765. max-width:400px;
  766. margin:15px;
  767. padding:2px;
  768. background:#000;
  769. text-align:center;
  770. z-index:99999999999999999999;
  771. font-size:7px;
  772. text-transform:uppercase;
  773. letter-spacing:1px;
  774. font-weight:bold;
  775. color: #ffffff;
  776. }
  777.  
  778.  
  779. ::selection {
  780. background: {color:link};
  781. color: white;}
  782. ::-moz-selection {
  783. background: {color:link};
  784. color: white;}
  785. ::-webkit-selection {
  786. background: {color:link};
  787. color: white;}
  788.  
  789. /* SCROLL TO TOP */
  790. .scrollup{
  791. width:30px;
  792. height:30px;
  793. opacity:0.7;
  794. position:fixed;
  795. z-index:9999999;
  796. bottom:70px;
  797. right:22px;
  798. display:none;
  799. text-align:center;}
  800.  
  801. .scrollup:hover{cursor:pointer;}
  802.  
  803. .tt{text-align:left;
  804. line-height:150%;
  805. padding-bottom:5px;
  806. }
  807.  
  808. .tt a{
  809. margin:0;
  810. padding:0;
  811. }
  812. .post_tags,
  813. .post_tags a, .tt a { color:{color:text}; }
  814.  
  815. .post_tags {
  816. margin-bottom:3px;
  817. position: relative;
  818. white-space: nowrap;
  819. overflow: hidden;
  820. }
  821.  
  822. .post_tags.draggable .post_tags_inner {
  823. -webkit-touch-callout: none;
  824. -webkit-user-select: none;
  825. -khtml-user-select: none;
  826. -moz-user-select: none;
  827. -ms-user-select: none;
  828. user-select: none;
  829. }
  830.  
  831. .post_tags_inner {
  832. float: left;
  833. position: relative;
  834. padding: 0px 20px 0px 0;
  835. }
  836.  
  837. .post_tags a,
  838. .post_tags .post_tag {
  839. color:{color:text};
  840. font-size: 09px;
  841. text-decoration: none;
  842. margin-right: 6px;
  843. }
  844.  
  845. .post_tags a:before, .tt a:before { content: '#'; }
  846.  
  847. .post_tags:after {
  848. content: '';
  849. position: absolute;
  850. top: 0;
  851. right: 0;
  852. bottom: 0;
  853. width: 20px;
  854. background: -moz-linear-gradient(left, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
  855. background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #FFF));
  856. background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, #FFF 100%);
  857. background: -o-linear-gradient(left, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
  858. background: -ms-linear-gradient(left, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
  859. background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #FFF 100%);
  860. }
  861.  
  862. .post_tags a:hover,
  863. .post_tags .post_tag:hover,
  864. .post_tags a:focus,
  865. .post_tags .post_tag:focus,
  866. .post_tags a:active,
  867. .post_tags .post_tag:active { color: {color:link hover}; }
  868.  
  869. .links_head {text-align:center;cursor:help;}
  870. .links_body {text-align:center;padding:3px;
  871. margin-top:5px;
  872. }
  873.  
  874. .tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop{
  875. z-index:999999999!important;
  876. }
  877. </style>
  878. </head>
  879.  
  880. <body>
  881.  
  882. <div class="container">
  883. <div class="sidebar">
  884.  
  885. <img src="{image:sidebar}" class="sidebar-image">
  886. <div class="bb"></div>{block:ShowTitle}
  887. <div class="sb-title"><a href="/">INTO / THE EMBRACE OF MACABRE</a></div>{/block:ShowTitle}
  888.  
  889. <div class="navi">
  890. <a href="/">01. <br><b>home.</b></a>
  891. <a href="/ask">02. <br><b>mssg.</b></a>
  892. <a href="#?w=280" rel="box1" class="poplight">03. <br><b>navi.</b></a>
  893. <div class="links_body" style="display:none;margin-bottom:-05px;">
  894. <a href="{text:Link 01 URL}">{text:Link 01 title}</a>
  895. <a href="{text:Link 02 URL}">{text:Link 02 title}</a>
  896. <a href="{text:Link 03 URL}">{text:Link 03 title}</a>
  897. <a href="{text:Link 04 URL}">{text:Link 04 title}</a>
  898. <a href="{text:Link 05 URL}">{text:Link 05 title}</a>
  899. <a href="{text:Link 06 URL}">{text:Link 06 title}</a>
  900. </div>
  901. </div>
  902.  
  903. <div class="description"> YOU , &nbsp; A &nbsp; BOY &nbsp; FED &nbsp; POSION &nbsp; THEY &nbsp; CALLED &nbsp;NECTAR , <br><br>
  904.  
  905. &nbsp; the &nbsp; wolf &nbsp; cowers &nbsp; and &nbsp; my &nbsp; vision &nbsp; clouds &nbsp; with &nbsp; cherry &nbsp; syrup &nbsp; / &nbsp; how &nbsp; sickening. &nbsp; how &nbsp; sweet. &nbsp; it &nbsp; painted my &nbsp; walls &nbsp; a &nbsp; home. <br>
  906. <br>&nbsp; now &nbsp; i &nbsp; lay &nbsp; awake &nbsp; knowing &nbsp; even &nbsp; man &nbsp; can &nbsp; bring &nbsp; mosnters &nbsp; to &nbsp; their &nbsp; knees.
  907. <br><br>
  908. <i> because &nbsp; man &nbsp; is &nbsp; the &nbsp; boogeyman. </I>
  909.  
  910. <br>
  911. <br>
  912.  
  913. <center>━</center>
  914. <br>
  915. ind . highly selec . priv . multi
  916. <br>
  917. <b>ORIGINAL CHARACTER</b>
  918. <br>
  919. with poetry and horror influences
  920. <br></div>
  921.  
  922. {block:Pagination}<div class="pag" {block:IfInfiniteScroll}style="display:none;"{/block:IfInfiniteScroll}>
  923. {block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage}
  924.  
  925. {block:NextPage}<a href="{NextPage}" class="next">next</a>{/block:NextPage}</div>
  926. {/block:Pagination}
  927.  
  928. </div><!--- sidebar --->
  929.  
  930. <div id="entries">
  931.  
  932. {block:IndexPage}<div class="column navigation" id="navigation" {block:IfInfiniteScroll}style="display:none;"{/block:IfInfiniteScroll}>
  933. {block:Pagination}
  934. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  935. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  936. </div>{/block:IndexPage}
  937. {block:Posts}
  938.  
  939. {block:ContentSource}
  940. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  941. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  942. {/block:SourceLogo}
  943. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  944. {/block:ContentSource}
  945.  
  946. <div class="posts">
  947.  
  948. {block:Text}
  949. {block:Title}<h2>{Title}</h2>{/block:Title}
  950. <div class="cap">{Body}</div>
  951. {/block:Text}
  952.  
  953. {block:Photo}
  954. <center>{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" class="images">{LinkCloseTag}</center>
  955. {block:ifShowCaption}
  956. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  957. {/block:ifShowCaption}
  958. {block:ifNotShowCaption}
  959. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  960. {/block:ifNotShowCaption}
  961. {/block:Photo}
  962.  
  963. {block:Photoset}<center>
  964. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">{block:Photos}<div class="photo-data"><div class="pxu-photo"><img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div><a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a></div>{/block:Photos}</div></center>
  965. {block:ifShowCaption}
  966. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  967. {/block:ifShowCaption}
  968. {block:ifNotShowCaption}
  969. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  970. {/block:ifNotShowCaption}
  971. {/block:Photoset}
  972.  
  973. {block:Quote}<div class="quote">
  974. <div class="quotetext-{Length}">{Quote}</div>
  975. {block:Source}
  976. <div class="quote-source">{Source}</div>
  977. {/block:Source}
  978. </div>{/block:Quote}
  979.  
  980. {block:Link}
  981. <h2><a href="{URL}" target="{Target}">{Name} <b>&rarr;</b></a></h2>
  982. {block:Description}<div class="cap">{Description}</div>{/block:Description}
  983. {/block:Link}
  984.  
  985. {block:Chat}
  986. {block:Title}<h2>{Title}</h2>{/block:Title}
  987. {block:Lines}<ul class="{Alt}">{block:Label}<b>{Label}</b>{/block:Label} {Line}<br></ul>{/block:Lines}
  988. {/block:Chat}
  989.  
  990. {block:Audio}
  991. <div class="audio">
  992. {block:AlbumArt}<div class="audioimage" style="float:right;">
  993. <img src="{AlbumArtURL}"></div>
  994. {/block:AlbumArt}
  995.  
  996. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  997.  
  998. <div class="au-info"><span>
  999. {block:TrackName}{TrackName}{/block:TrackName}
  1000. {block:Artist}<small><b>{Artist}</b></small>{/block:Artist}
  1001. </span>
  1002. </div>
  1003.  
  1004. </div>
  1005. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  1006. {/block:Audio}
  1007.  
  1008. {block:Video}
  1009. <div class="video">{Video-500}</div>
  1010. {block:ifShowCaption}
  1011. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  1012. {/block:ifShowCaption}
  1013. {block:ifNotShowCaption}
  1014. {block:PermalinkPage}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:PermalinkPage}
  1015. {/block:ifNotShowCaption}
  1016. {/block:Video}
  1017.  
  1018. {block:Answer}
  1019. <div class="question"><img src="{AskerPortraitURL-30}">
  1020. <b><askk>{Asker} asked</askk></b><br>{Question}</div>
  1021. <div class="caption">{Answer}</div>
  1022. {/block:Answer}
  1023.  
  1024. {block:Date}<div class="posts-info">
  1025.  
  1026. <div class="tt">
  1027. {block:Tags}
  1028. <a title="{Tag}"href="{TagURL}">{Tag}</a>
  1029. {/block:Tags}</div>
  1030. {/block:HasTags}
  1031.  
  1032. <div class="da">
  1033. <a href="{Permalink}"> {MonthNumberWithZero}.{DayOfMonthWithZero}</a>
  1034. {block:RebloggedFrom}{block:PermalinkPage}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{/block:PermalinkPage}
  1035. <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:RebloggedFrom}
  1036. {block:indexpage}
  1037. <a href="{reblogurl}" title="reblog">reblog</a>{/block:indexpage}
  1038. {block:NoteCount}<a href="{Permalink}" class="re">{NoteCountWithLabel}</a>{/block:NoteCount}
  1039. </div>
  1040. </div>
  1041. {/block:Date}
  1042. </div><!--- posts --->
  1043.  
  1044. {block:PermalinkPage}
  1045. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  1046. {/block:PermalinkPage}
  1047.  
  1048. {/block:Posts}
  1049. </div><!--- entries --->
  1050. </div><!--- container --->
  1051.  
  1052. <script src ="//static.tumblr.com/fwgzvyf/l6jnyutne/shythemes.vr.js"></script>
  1053. {block:ifInfiniteScroll}
  1054. <script src="http://static.tumblr.com/nb65v05/QLXo03qup/jquery.infinitescroll.min.js"></script>{/block:ifInfiniteScroll}
  1055. {block:ifGridLayout}
  1056. <script type="text/javascript" src="http://static.tumblr.com/me5sfsd/12Qlmj66n/script.js"></script>{/block:ifGridLayout}
  1057. {block:ifDraggableTags}
  1058. <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>{/block:ifDraggableTags}
  1059.  
  1060. <script>
  1061. $(document).ready(function(){
  1062. {block:ifDraggableTags}
  1063. $(".post_tags_inner").draggable({
  1064. axis : "x",
  1065. scroll: false,
  1066. stop: function() {
  1067. var __left = $(this).css("left").replace(/[^-\d\.]/g, '');
  1068. if(__left > 0){
  1069. $(this).animate({left: 0}, 400, 'easeOutExpo');
  1070. }
  1071. var __width = $(this).outerWidth();
  1072. var __parentWidth = $(".post_tags.draggable").outerWidth();
  1073. if(__width > __parentWidth) {
  1074. if(__left < __parentWidth-__width){
  1075. $(this).animate({left: __parentWidth-__width}, 400, 'easeOutExpo');
  1076. }
  1077. } else {
  1078. $(this).animate({left: 0}, 400, 'easeOutExpo');
  1079. }
  1080. }
  1081. });
  1082. {/block:ifDraggableTags}
  1083. $('.photo-slideshow').pxuPhotoset({
  1084. lightbox: true,
  1085. rounded: false,
  1086. {block:ifNotCustomGutter}
  1087. gutter: '0px',{/block:ifNotCustomGutter}
  1088. {block:ifCustomGutter}
  1089. gutter: {text:Gutter},{/block:ifCustomGutter}
  1090. borderRadius: '0px',
  1091. photoset: '.photo-slideshow',
  1092. photoWrap: '.photo-data',
  1093. photo: '.pxu-photo'
  1094. });
  1095. {block:IndexPage}
  1096. {block:ifInfiniteScroll}
  1097. $(window).scroll(function(){
  1098. if ($(this).scrollTop() > 100) {
  1099. $('.scrollup').fadeIn();
  1100. } else {
  1101. $('.scrollup').fadeOut();}});
  1102. $('.scrollup').click(function(){
  1103. $("html, body").animate({ scrollTop: 0 }, 600);
  1104. return false;}); {/block:ifInfiniteScroll}
  1105. var $container = $('#entries');
  1106. {block:ifGridLayout}
  1107. $container.masonry({
  1108. itemSelector: '.posts',
  1109. columnWidth:{select:posts width} + {text:Margin},
  1110. isFitWidth: false,
  1111. isAnimated : true
  1112. });
  1113. $container.imagesLoaded(function(){
  1114. $container.masonry();
  1115. });{/block:ifGridLayout}{block:ifInfiniteScroll}
  1116. $container.infinitescroll({
  1117. loading: {
  1118. finished: undefined,
  1119. finishedMsg: "<em></em>",
  1120. img: null,
  1121. msg: null,
  1122. msgText: "<em>Loading the next set of posts...</em>",
  1123. selector: null,
  1124. speed: 'slow',
  1125. },
  1126. navSelector: '.pag',
  1127. nextSelector: '.next',
  1128. itemSelector: '.posts',
  1129. extraScrollPx : 0,
  1130. bufferPx : 10000,
  1131. debug : false,
  1132. errorCallback: function() {
  1133. $('#infscr-loading').animate().fadeOut('normal');
  1134. }},
  1135. function( newElements ) {
  1136. resizeVideos();
  1137.  
  1138.  
  1139. var $newElems = $( newElements ){block:ifGridLayout}.css({ opacity: 0 });
  1140. $newElems.imagesLoaded(function(){
  1141. $newElems.animate({ opacity: 1 });
  1142. $container.masonry( 'appended', $newElems,{isAnimated: true, animationOptions: {duration: 250, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  1143. }){/block:ifGridLayout}; {block:ifDraggableTags}
  1144. $newElems.find(".post_tags_inner").draggable({
  1145. axis : "x",
  1146. scroll: false,
  1147. stop: function() {
  1148. var __left = $(this).css("left").replace(/[^-\d\.]/g, '');
  1149. if(__left > 0){
  1150. $(this).animate({left: 0}, 400, 'easeOutExpo');
  1151. }
  1152. var __width = $(this).outerWidth();
  1153. var __parentWidth = $(".post_tags.draggable").outerWidth();
  1154. if(__width > __parentWidth) {
  1155. if(__left < __parentWidth-__width){
  1156. $(this).animate({left: __parentWidth-__width}, 400, 'easeOutExpo');
  1157. }
  1158. } else {
  1159. $(this).animate({left: 0}, 400, 'easeOutExpo');}
  1160. }
  1161. });{/block:ifDraggableTags}
  1162. var $newElems = $( newElements );
  1163. $newElems.find('.photo-slideshow').pxuPhotoset({
  1164. lightbox: true,
  1165. rounded: false,
  1166. {block:ifNotCustomGutter}
  1167. gutter: '0px',{/block:ifNotCustomGutter}
  1168. {block:ifCustomGutter}
  1169. gutter: {text:Gutter},{/block:ifCustomGutter}
  1170. borderRadius: '0px',
  1171. photoset: '.photo-slideshow',
  1172. photoWrap: '.photo-data',
  1173. photo: '.pxu-photo'
  1174. });
  1175. });
  1176. {/block:ifInfiniteScroll}{/block:IndexPage}
  1177. });
  1178. </script>
  1179.  
  1180. <a href="http://caulfielld.tumblr.com" target="_blank" class="c">tc</a>
  1181.  
  1182. {block:ifInfiniteScroll}<a class="scrollup">
  1183. <i class="fa fa-chevron-up fa-2x"></i><br>scroll to top</a>
  1184. {/block:ifInfiniteScroll}
  1185.  
  1186. </body>
  1187.  
  1188. <div id="box1" class="popup_block">
  1189. <ul id="tabs">
  1190. <li class="active">LAW.</li>
  1191. &nbsp&nbsp&nbsp
  1192. <li>DOSSIER.</li>
  1193. &nbsp&nbsp&nbsp
  1194. <li>VERSES.</li>
  1195. </ul>
  1196.  
  1197. <ul id="tab">
  1198. <li class="active">
  1199. <br>
  1200.  
  1201. <center>indie . low activity . canon divergent . made july 2018 </center>
  1202.  
  1203. <h3>* 01 . GENERAL</h3>
  1204.  
  1205. this blog is going to be low activity in regards to writing indefinitely. i'm a student at the moment who will be applying to university this october so my focus isn't this blog nor tumblr in general, so please be aware of that! furthermore i also do a lot of things outside of school which will keep me busy too, but you'll probably catch me spamming ooc posts and then deleting them. if that bothers you then following me isn't the best idea.
  1206. <br>
  1207. <br>
  1208.  
  1209. <h3> * 02 . FOLLOWING</h3>
  1210.  
  1211. i'm pretty general about who i follow since i like to have an active dash although i <b>am</b> picky with who i actually write with. however i <i>wont</i> be interacting with any boku no hero academia rp blogs. this is due to personal reasons. jesse is a really fickle muse and i have the creativity of slug when concerning starters, so plotting is something i prefer. furthermore i am <i>duplicate friendly</i> but i understand that others might not be! it's totally fine with me either way.
  1212. <br>
  1213. <br>
  1214. also! <b>if you see me interacting with someone problematic please let me know.</b> i can't promise to know everyone who's been called out in the past and hasn't fixed their behaviour due to not always being online. i'd really appreciate it so i rectify it and apologise!
  1215.  
  1216.  
  1217. <h3> * 03 . FORMATTING / WRITING</h3>
  1218.  
  1219. my writing is very much so poetic! i prefer shorter threads and sometimes i won't use icons. for my writing partners i don't mind what writing style you use nor if you use icons. i'm pretty chill with it! although for longer threads i'll most likely contact you to plan out where it's going.
  1220.  
  1221. <h3>* 04 . GRAPHICS</h3>
  1222.  
  1223. it should be clear that everything on this blog apart from the base code is mine! and i'd really appreciate it if you didn't copy my aeshtetics in anyway, even if you ask. <b>however</b> i am more than welcome to <i>making you something</i> depending on how well i know you. if you would like a graphic for either a promo, header etc. my IMs are always open! but i will be slow in making them if i agree to do so.
  1224.  
  1225. <h3>* 05 . PERSONAL</h3>
  1226.  
  1227. hello and welcome to my humble abode. i'm rory (they/them) and i'm a pretty chill person that really likes history and poetry. there's not a lot else to tell i'm afraid.
  1228.  
  1229. <h3> * 06 . EXCLUSIVES</h3>
  1230.  
  1231. heh .
  1232.  
  1233. </li>
  1234. <li>
  1235.  
  1236. <blockquote>DECEMBER 18TH, ####
  1237.  
  1238. <br>
  1239.  
  1240. LIVE RECORDING OF VICTIM AND WITNESS : JAMES
  1241.  
  1242. <br>
  1243.  
  1244. CASE : 135, "CHILDREN OF THE SUN"
  1245. </blockquote>
  1246.  
  1247. <br>
  1248.  
  1249. I > you were apart of the cult from a very young age weren't you<I>?</I>
  1250. <br>
  1251. <br>
  1252. A > guess so.
  1253. <br>
  1254. <br>
  1255. I > what do you mean you guess<I>?</I> &nbsp; surely you understood what was happening during your time there<I>?</I>
  1256. <br>
  1257. <br>
  1258. A > does it look i did<i>?</i> &nbsp; like any of us did<i>?</i>
  1259. <br>
  1260. <br>
  1261. I > no need to be so crass, i'm just trying to understand the situation.
  1262. <br>
  1263. <br>
  1264. A > [chair screeches] the situation<i>?</i> &nbsp; the situation is my life<i>!</i> &nbsp; my childhood<i>!</i> &nbsp; you don't ever get to understand what i went through, what we went through<i>!</i>
  1265. <br>
  1266. <br>
  1267. I > i can see you're emotional. &nbsp; we'll talk tomorrow.
  1268. <br>
  1269. <br>
  1270. A > not if you keel over and die tonight.
  1271.  
  1272. <br>
  1273. <br>
  1274.  
  1275. <a href="#?w=280" rel="box5" class="poplight" title=" MORE INFO HERE. ">END RECORDING<i>?</i></a>
  1276. </li>
  1277. <li>
  1278.  
  1279. verses
  1280.  
  1281. </li>
  1282. </ul>
  1283.  
  1284. </div>
  1285. </div>
  1286. </div>
  1287.  
  1288. <div id="box5" class="popup_block">
  1289.  
  1290.  
  1291. <pre>GENERAL.</pre>
  1292.  
  1293. <b>true name:</b> axel brodie
  1294.  
  1295. <br>
  1296.  
  1297. <b>age:</b> 16
  1298.  
  1299. <br>
  1300.  
  1301. <b>height:</b> 6'1
  1302.  
  1303. <br>
  1304.  
  1305. <b>sexuality:</b> unsure
  1306.  
  1307. <br>
  1308.  
  1309. <b>species:</b> human
  1310.  
  1311. <br>
  1312.  
  1313. <B>noticeable features: </B> his body is covered in various scars and burns from his time in the cult, the most prominent being the one across his throat, chest and palms. his face has small scars that appear like scratches and his body has a natural tremble.
  1314.  
  1315. <br>
  1316. <br>
  1317.  
  1318. <b>current living conditions:</b> lives his foster mother in a small apartment with marco, his pseudo brother and his fosters girlfriend.
  1319.  
  1320. <br>
  1321.  
  1322. <b>occupation:</b> a part time student but mostly helps with his foster mother's tea shop.
  1323.  
  1324. <br>
  1325.  
  1326. <b>education:</b> very little education in terms of the school curriculum however knows Children of the Sun teachings / basic reading and writing abilites.
  1327.  
  1328. <br>
  1329.  
  1330. <b>qualifications:</b> none.
  1331.  
  1332. </div></div></div></div></div></div></div></div></div></div>
  1333. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement