Advertisement
Guest User

Untitled

a guest
Apr 16th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!-- octomoosey @ tumblr -->
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10. <script type="text/javascript"
  11. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  12. <script>
  13. $(document).ready(function() {
  14. //
  15. $('a.poplight[href^=#]').click(function() {
  16. var popID = $(this).attr('rel'); //Get Popup Name
  17. var popURL = $(this).attr('href'); //Get Popup href to define size
  18. var query= popURL.split('?');
  19. var dim= query[1].split('&');
  20. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  21. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  22. var popMargTop = ($('#' + popID).height() + 80) / 2;
  23. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  24. //Apply Margin to Popup
  25. $('#' + popID).css({
  26. 'margin-top' : -popMargTop,
  27. 'margin-left' : -popMargLeft
  28. });
  29. $('body').append('<div id="fade"></div>');
  30. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  31. return false;
  32. });
  33. $('a.close, #fade').live('click', function() {
  34. $('#fade , .popup_block').fadeOut(function() {
  35. $('#fade, a.close').remove(); //fade them both out
  36. });
  37. return false;
  38. });
  39. });
  40. </script>
  41.  
  42. <meta name="color:background" content="#000"/>
  43. <meta name="color:desctext" content="#fff"/>
  44. <meta name="color:pagination" content="#fff"/>
  45. <meta name="color:text" content="#fff"/>
  46. <meta name="color:link" content="#529ecc"/>
  47. <meta name="color:linkhover" content="#b8b8b8"/>
  48. <meta name="color:bold" content="#529ecc" />
  49. <meta name="color:italic" content="#529ecc" />
  50. <meta name="color:pre" content="#000" />
  51. <meta name="color:pretext" content="#fff" />
  52. <meta name="color:scrollbar" content="#529ecc" />
  53.  
  54. <meta name="text:link 1" content="link 1"/>
  55. <meta name="text:link 1 url" content="/"/>
  56. <meta name="text:link 2" content="link 2"/>
  57. <meta name="text:link 2 url" content="/"/>
  58. <meta name="text:link 3" content="link 3"/>
  59. <meta name="text:link 3 url" content="/"/>
  60. <meta name="text:link 4" content="link 4"/>
  61. <meta name="text:link 4 url" content="/"/>
  62. <meta name="text:link 5" content="link 5"/>
  63. <meta name="text:link 5 url" content="/"/>
  64. <meta name="text:link 6" content="link 6"/>
  65. <meta name="text:link 6 url" content="/"/>
  66. <meta name="text:link 7" content="link 7"/>
  67. <meta name="text:link 7 url" content="/"/>
  68. <meta name="text:link 8" content="link 8"/>
  69. <meta name="text:link 8 url" content="/"/>
  70. <meta name="text:link 9" content="link 9"/>
  71. <meta name="text:link 9 url" content="/"/>
  72. <meta name="text:link 10" content="link 10"/>
  73. <meta name="text:link 10 url" content="/"/>
  74.  
  75. <meta name="image:background" content="http://static.tumblr.com/420c284120d73a4be652a2f46acf63a5/86jccts/dCrnm8tta/tumblr_static_efng6cl6klc0o8kg88cs0g0gc.jpg"/>
  76.  
  77. <meta name="if:greyscale" content="1"/>
  78. <meta name="if:tinycursor" content="1"/>
  79. <meta name="font:body font" content="Gibson">
  80. <meta name="text:text size" content="11px" />
  81.  
  82. <meta name="text:post margin left" content="350"/>
  83. <meta name="text:post margin top" content="161"/>
  84. <meta name="text:post height" content="429"/>
  85. <meta name="text:description margin left" content="830"/>
  86. <meta name="text:description margin top" content="450"/>
  87. <meta name="text:description width" content="300"/>
  88. <meta name="text:links margin left" content="300"/>
  89. <meta name="text:links margin top" content="120"/>
  90. <meta name="text:link alignment" content="inline-block"/>
  91. <meta name="text:font awesome" content="fa fa-asterisk"/>
  92. <meta name="text:page margin left" content="500"/>
  93. <meta name="text:page margin top" content="620"/>
  94.  
  95. <script type="text/javascript" src="http://static.tumblr.com/86jccts/wpsmuemne/hoverqtip.js"></script>
  96.  
  97. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  98.  
  99. <style type="text/css">
  100.  
  101.  
  102.  
  103. .popup_block{
  104. display:none;
  105. background:#000;
  106. padding:20px;
  107. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  108. float:left;
  109. position:fixed;
  110. top:50%;left:50%;
  111. z-index: 99999;
  112. line-height:15px;
  113. max-height:455px;
  114. overflow-y:scroll;
  115. overflow-x:hidden;
  116. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  117. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  118. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  119. }
  120.  
  121. *html #fade {position: absolute;}
  122. *html .popup_block {position: absolute;}
  123. #fade {
  124. display:none;
  125. position:fixed;
  126. left:0px;
  127. top:0px;
  128. width:100%;
  129. height:100%;
  130. z-index:9999;
  131. background:#000; /* change to #fff for solid white */
  132. opacity:0.5; /* change to opacity:1; */
  133. }
  134.  
  135. ::-webkit-scrollbar-thumb {
  136. height:auto;
  137. background-color:{color:Scrollbar};}
  138.  
  139. ::-webkit-scrollbar {
  140. height:9px;
  141. width:4px;
  142. background-color:transparent;}
  143.  
  144. {block:iftinycursor}
  145. body, a, a:hover{
  146. cursor: url('http://24.media.tumblr.com/tumblr_mdig6jktic1riysloo1_100.png'), progress;}
  147. {/block:iftinycursor}
  148.  
  149. iframe#tumblr_controls {
  150. right:3px !important;
  151. position: fixed !important;
  152. -webkit-transition: opacity 0.7s
  153. linear;opacity: 0.2;
  154. -webkit-transition: all 0.8s ease-out;
  155. -moz-transition: all 0.8s ease-out;
  156. transition: all 0.8s ease-out;}
  157.  
  158. iframe#tumblr_controls:hover{
  159. -webkit-transition: opacity 0.7s linear;
  160. opacity: 1;
  161. -webkit-transition: all 0.4s ease-out;
  162. -moz-transition: all 0.4s ease-out;
  163. transition: all 0.4s ease-out;}
  164.  
  165. div[id$="Zy4yby-hide"], .static-only {
  166. display: none;}
  167.  
  168. body {
  169. background-color:{color:background};
  170. background-image: url('{image:background}');
  171. background-position: top left;
  172. background-repeat: no-repeat;
  173. background-attachment: fixed;
  174. line-height:110%;
  175. color:{color:text};
  176. font-family:{font:body font};
  177. font-size: {text:text size};}
  178.  
  179. a {
  180. text-decoration:none;
  181. outline:none;
  182. -moz-outline-style:none;
  183. color:{color:link};
  184. -webkit-transition: all 0.7s ease;
  185. -moz-transition: all 0.7s ease;
  186. -o-transition: all 0.7s ease;}
  187.  
  188. a:hover {
  189. color:{color:linkhover};
  190. -webkit-transition: all 0.7s ease;
  191. -moz-transition: all 0.7s ease;
  192. -o-transition: all 0.7s ease;}
  193.  
  194. blockquote {
  195. padding:2px 7px;
  196. margin:3px 0 3px 8px;
  197. border-left:1px dashed {color:border};
  198. background-color:transparent;}
  199.  
  200. blockquote img {
  201. max-width:100%;
  202. height:auto;}
  203.  
  204. b, strong {
  205. color:{color:bold};}
  206.  
  207. i, em {
  208. color:{color:italic};}
  209.  
  210. small,sup,sub {
  211. font-size:{text:Text Size}}
  212.  
  213. big {
  214. font-size:12px;}
  215.  
  216. pre {
  217. color:{color:pretext};
  218. background-color:{color:pre};
  219. font-size:10px;
  220. padding:20px;
  221. white-space: pre-wrap; /* css-3 */
  222. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  223. white-space: -pre-wrap; /* Opera 4-6 */
  224. white-space: -o-pre-wrap; /* Opera 7 */
  225. word-wrap: break-word; /* Internet Explorer 5.5+ */}
  226.  
  227. {block:IfGreyscale}
  228.  
  229. img {
  230. -webkit-filter:grayscale(100%);
  231. -webkit-transition: all 0.9s ease-in-out;
  232. -moz-transition: all 0.9s ease-in-out;
  233. -o-transition: all 0.9s ease-in-out;
  234. -ms-transition: all 0.9s ease-in-out;
  235. transition: all 0.9s ease-in-out;}
  236.  
  237. img:hover {
  238. -webkit-filter:none;}
  239.  
  240. .html_photoset {
  241. -webkit-filter: grayscale(100%);
  242. -webkit-transition: all 0.9s ease-in-out;
  243. -moz-transition: all 0.9s ease-in-out;
  244. -o-transition: all 0.9s ease-in-out;
  245. -ms-transition: all 0.9s ease-in-out;
  246. transition: all 0.9s ease-in-out;}
  247.  
  248. .html_photoset:hover {
  249. -webkit-filter: none;}
  250.  
  251. {/block:IfGreyscale}
  252.  
  253. img {
  254. max-width:100%;
  255. height:auto;}
  256.  
  257. h1 {
  258. font-size:16px;
  259. font-family:{font:body font};
  260. font-weight: 300;
  261. letter-spacing: 1.5px;
  262. line-height: 130%;
  263. text-align:right;
  264. color:{color:text};}
  265.  
  266. #entries {
  267. position:fixed;
  268. width:450px;
  269. background:transparent;
  270. height:{text:post height}px;
  271. top: {text:post margin top}px;
  272. left:{text:post margin left}px;
  273. z-index:999;
  274. position:relative;
  275. overflow-y:scroll;}
  276.  
  277. .posts {
  278. width: 400px;
  279. padding: 20px;
  280. margin-bottom:30px;
  281. color: {color:text};
  282. text-align:justify;}
  283.  
  284. #description {
  285. position:fixed;
  286. top: {text:description margin top}px;
  287. left:{text:description margin left}px;
  288. width:{text:description width}px;
  289. text-align:center;
  290. font-size:11px;
  291. line-height:120%;
  292. font-family:{font:body font};
  293. color:{color:desctext};}
  294.  
  295. #links {
  296. position:fixed;
  297. text-align:left;
  298. top: {text:links margin top}px;
  299. left:{text:links margin left}px;}
  300.  
  301. #links a {
  302. margin-top:10px;
  303. display:{text:link alignment};
  304. font-size:11px;
  305. line-height:21px;
  306. text-align:center;
  307. width:18px;
  308. font-weight:normal;
  309. text-transform:uppercase;
  310. letter-spacing:1px;}
  311.  
  312. #links a:hover {
  313. opacity:0.7;}
  314.  
  315. #pagination {
  316. position:fixed;
  317. top: {text:page margin top}px;
  318. left:{text:page margin left}px;
  319. color:{color:pagination};}
  320.  
  321. #asker {
  322. z-index:9999999999 !important;
  323. margin-left:20px;
  324. margin-top:0px;
  325. margin-right:10px;}
  326.  
  327. #askurl {
  328. font-size:20px;
  329. letter-spacing:3px;
  330. margin-left:70px;
  331. margin-top:-25px;
  332. margin-right:5px;}
  333.  
  334. #question {
  335. font-size: {text:text size};
  336. margin-left:70px;
  337. margin-right:40px;
  338. padding:10px;
  339. text-align:justify;}
  340.  
  341. #quote {
  342. font-size:16px;
  343. font-family:{font:body font};
  344. text-align: center;
  345. font-weight: 300;
  346. letter-spacing: 1.5px;
  347. line-height: 130%;
  348. padding-bottom: 10px;}
  349.  
  350. #cover {
  351. position: relative;
  352. z-index: 1;
  353. height: 80px;
  354. float:left;
  355. margin:4px;
  356. box-shadow:0px 0px 5px {color:box shadow};}
  357.  
  358. #button {
  359. width:20px;
  360. height:30px;
  361. overflow: hidden;
  362. position: relative;
  363. z-index: 99;
  364. margin: 15px 24px 13px 16px;}
  365.  
  366. #buttons {
  367. background-color: #fff;
  368. position: absolute;
  369. z-index: 99;
  370. margin-top: 15px;
  371. margin-left: 15px;
  372. opacity: 0;
  373. -webkit-transition: opacity 0.5s linear;
  374. -webkit-transition: all 0.5s linear;
  375. -moz-transition: all 0.5s linear;
  376. -o-transition: all 0.5s linear;}
  377.  
  378. #post:hover #buttons {
  379. opacity:1;}
  380.  
  381. #musicinfo {
  382. margin-left: 110px;
  383. font-size:10px;
  384. min-height:70px;
  385. text-align:left;
  386. position: relative;}
  387.  
  388. .note {
  389. color:{color:postbg};
  390. text-transform:uppercase;
  391. width:398px;
  392. font-style:normal;
  393. letter-spacing:0px;
  394. font-size: 10px;
  395. text-align:left;
  396. line-height:100%;
  397. margin-left:-15px;}
  398.  
  399. .note li {
  400. list-style-type:none;
  401. padding:10px 25px 10px 25px;
  402. text-align:left;
  403. -moz-transition-duration:0.5s;
  404. -webkit-transition-duration:0.5s;
  405. -o-transition-duration:0.5s;}
  406.  
  407. .note img.avatar {
  408. margin-right: 10px;
  409. width: 16px;
  410. height: 16px;}
  411.  
  412. .tags {
  413. border-top:1px solid {color:text};
  414. font-size:8px;
  415. text-transform:uppercase;
  416. padding-top:5px;
  417. margin-top:5px;
  418. -webkit-transition: all 0.8s ease;
  419. -moz-transition: all 0.8s ease;
  420. transition: all 0.8s ease;}
  421.  
  422. #permalink {
  423. font-size:8px;
  424. text-transform:uppercase;
  425. letter-spacing:1px;
  426. margin-top:10px;}
  427.  
  428. div#qTip {
  429. border:1px dashed {color:desctext};
  430. padding: 6px;
  431. display: none;
  432. margin-left:10px;
  433. margin-top:-7px;
  434. text-align: center;
  435. font-style:italic;
  436. position: absolute;
  437. font-size:12px;
  438. line-height:10px;
  439. z-index: 9999999;
  440. color: {color:desctext};
  441. letter-spacing: 1px;}
  442.  
  443. {CustomCSS}</style></head><body>
  444.  
  445. <div id="description">{description}</div>
  446.  
  447. <div id="links">
  448. <a href="/" title="home">●</a>
  449. <a href="#?w=300" rel="box1" class="poplight" title="ask">●</i></a>
  450. <a href="#?w=300" rel="box2" class="poplight" title="submit">●</a>
  451. <a href="#?w=300" rel="box3" class="poplight" title="guidelines">●</i></a>
  452. <a href="#?w=300" rel="box4" class="poplight" title="dossier">●</a>
  453. <a href="#?w=300" rel="box5" class="poplight" title="powers">●</a>
  454. <a href="#?w=300" rel="box6" class="poplight" title="powers">●</a>
  455. <a href="#?w=300" rel="box7" class="poplight" title="verses">●</a>
  456. <a href="http://octomoosey.tumblr.com/" title="theme">●</a></div>
  457. </div>
  458.  
  459. <div id="pagination">{block:Pagination}
  460. {block:PreviousPage}<a href="{PreviousPage}"><big>⇜</big></a>{/block:PreviousPage} {CurrentPage} of {TotalPages} {block:NextPage}<a href="{NextPage}"><big>⇝</big></a>
  461. {/block:NextPage}
  462. {/block:Pagination}</div>
  463.  
  464. </div></div></div>
  465.  
  466. <div id="entries">
  467. {block:Posts}
  468. <div class="posts">
  469.  
  470. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  471.  
  472. {block:Photo}<center><img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  473. </center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  474.  
  475. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  476.  
  477. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  478.  
  479. {block:Quote}<div id="quote">{Quote}</div><br>{block:Source}<b><div style="font-family: courier new; font-size: 11px; text-align: center;">{Source}</div></b>{/block:Source}{/block:Quote}
  480.  
  481. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerWhite}</left></span>
  482. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  483. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  484. {/block:ExternalAudio}<br><br>
  485. {block:Caption}{Caption}{/block:Caption}{/block:Audio}<br>
  486.  
  487. {block:Video}{Video-400}
  488. {block:Caption}{Caption}{/block:Caption}
  489. {/block:Video}
  490.  
  491. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}<font size="2">{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br><br>{/block:Lines}</font>{/block:Chat}
  492.  
  493. {block:Answer}<div id="ask"><div id="asker"><img src="{AskerPortraitURL-30}"></div><div id="askurl">{Asker}:</div>
  494. <div id="question">{Question}</div></div>{Answer}{/block:Answer}
  495.  
  496.  
  497. <div id="{ShortURL}-hide">{block:Date}
  498. <div id="permalink">
  499. <a href="{Permalink}">{DayOfMonth}{DayOfMonthSuffix} {Month} {Year}</a> ★ <a href="{Permalink}">{12Hour}:{Minutes}</a> ★
  500. {block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  501.  
  502. <br>
  503.  
  504. {block:RebloggedFrom}via: <a href="{ReblogParentURL}">★</a>{block:ContentSource} source: <a href="{ReblogRootURL}">★</a> reblog: <a href="{ReblogURL}">★</a>{/block:ContentSource}{/block:RebloggedFrom}
  505.  
  506. </div>
  507. {block:HasTags}<div class="tags">{block:Tags} ★<a href="{TagUrl}"> {Tag}</a>{/block:Tags}</div>{/block:HasTags}
  508. </div>
  509. {/block:Date} </div>
  510.  
  511. {block:PostNotes}
  512. <div class="note">
  513. {PostNotes}
  514. </div>
  515. {/block:PostNotes}
  516.  
  517. {/block:Posts}
  518.  
  519. </div>
  520.  
  521.  
  522.  
  523. {block:ContentSource}
  524. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  525. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  526. {/block:SourceLogo}
  527. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  528. {/block:ContentSource}
  529. </div>
  530.  
  531. </div>
  532.  
  533. </body>
  534.  
  535.  
  536. <div id="box1" class="popup_block">
  537. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/trouvx.tumblr.com" width="100%"></iframe>
  538. </div>
  539. <div id="box2" class="popup_block">
  540. <iframe frameborder="0" height="200" id="submit_form" scrolling="yes" src="http://www.tumblr.com/submit_form/trouvx.tumblr.com" width="100%"></iframe>
  541. </div>
  542.  
  543. <div id="box3" class="popup_block">
  544. <h3>( portrayal: )</h3>
  545.  
  546. <ul>
  547. <li type=disc>My interpretation of <b>ANAKIN SKYWALKER</b> is based off of the novel series, as well as the movies.
  548. <li type=disc>I am well aware of the tv show & of course the animated films.
  549. <li type=disc>Anakin’s FaceClaim will mostly be of <i>Hayden Christensen</i>.
  550. <li type=disc>This is not my first Anakin blog. In fact, it is my third blog due to the fact that I wanted a change. & because my original was deleted due to issues.
  551. </ul><p>
  552.  
  553. <h3>( Interactions: )</h3>
  554. <ul>
  555. <li type=disc>I am a <b>private</b> & <b>selective</b>. meaning i will <i>only</i> write with mutuals or people i follow.
  556. <li type=disc>Non-mutuals are free to send in ask memes. But I will not thread with you. Sorry.
  557. <li type=disc>If i’ve followed you, it means i want to rp with you.
  558. <li type=disc>Feel free to tag me in any starter or greeter posts, & turn any memes into threads. If I don’t answer, it means it is either in my <i>drafts</i>, or I have <b>not</b> <i>seen</i> it.
  559. <li type=disc>Smut’s are fine by me. But you must be 18+ & we must have a pre-established relationship with me & my muse.
  560. <li type=disc>"Nsfw" content such as violence/gore/sex will be present. I will tag accordingly.
  561. <li type=disc>Feel free to tag me in a random thing at any point in time. I will get to it as soon as i can. besides, i rather enjoy being tagged in a random post. i find them fun & challenging.
  562. <li type=disc>You do not have to match my style of writing/formatting. but please try and respond accordingly.
  563. <li type=disc>Cut your damn posts, it's messy if you don't & i will only grow annoyed & stop RPing.
  564. <li type=disc>No <i>godmodding</i>. if you do more than once, i will block.
  565. <li type=disc>If you want to continue an ask, please move it to a new post. <b>DO NOT</b> reblog the ask, because i will ignore it.
  566. <li type=disc>I reply with 100x100 static and gif icons. All of them are made by me. <b>DO NOT STEAL</b>.<p>
  567. </ul>
  568.  
  569. <h3>( Crossovers and OC'S: )</h3>
  570.  
  571. <ul>
  572. <li type=disc>All crossovers and ocs are welcome, so long as I can find a bio page about your muse.
  573. <li type=disc>I am extremely picky when it comes to OC's. I refuse to apologize for it.
  574. </ul>
  575.  
  576. <h3>( Shipping: )</h3>
  577.  
  578. <ul>
  579. <li type=disc>I am a Multishipper. but I only ship chemistry. That includes a canon relationship.
  580. <li type=disc><i>ANIDALA</i> is my main ship.
  581. <li type=disc>Do not push ships on me, or RPs with me only to do a ship. Build-up is required for any relationship with my muse.
  582. <li type=disc>I am <b>NOT</b> open to M/M ships.
  583. <li type=disc>I am open to <i>BROTPS</i>.
  584. <li type=disc>I am willing to do exclusives. But, it will have to be talked about. & no, i will not do any exclusives with Obi-Wan’s or Padmè’s.
  585.  
  586. </ul>
  587.  
  588. <h3>( Askbox + IM: )</h3>
  589. <ul>
  590. <li type=disc> My <i>ASKBOX</i> is <b>NOT</b> open for plotting ideas. If you want to plot with me, send me an <i>IM</i>.
  591. <li type=disc>My IM's are for <i>Mutuals</i> only. Meaning if i don't follow, don't ask me for a thread.
  592. <li type=disc>My askbox <b>IS</b> open for Meme's as well as for Random Questions for the Mun & Muse. That's it.
  593. <li type=disc>If you send me a message in my ask, asking me to plot with you. i will ignore it. You have been warned.
  594. <li type=disc>Remember that because this is my blog. I reserve the right not to answer. <b>DO NOT</b> pressure me.
  595. <li type=disc>Send me hate. I block you. Simple right?
  596. </ul>
  597.  
  598. <h1>( Un-Followings: )</h1>
  599.  
  600. <ul>
  601. <li type=disc>If you post a lot of <i>Anon Hate</i>. I believe it enables those to send it, so please, just delete and ignore.
  602. <li type=disc>If you are gone without a warning for weeks or more, I shall unfollow. If you decide to return and start RPing with me again, I shall re-follow.
  603. <li type=disc><b>DO NOT</b> harass me for replies. I have a busy life outside of this blog. I work and have family obligations to attend too well before the needs of this blog.
  604. <li type=disc><b>DO NOT</b> harrass me for plot ideas.
  605. <li type=disc>I most likely will not follow you because: too much ooc posts. none text-reblogs. no about page. & lastly because i can't see how our muses will interact.<p>
  606. </ul>
  607.  
  608. <h3>( other: )</h3>
  609.  
  610. <ul>
  611. <li type=disc>Again, all icons made by me, so <b>DO NOT STEAL</b>.
  612. <li type=disc>My OOC FaceClaim is,
  613. <li type=disc><a href=”http://antihxroiism-archive.tumblr.com”>former blog is here</a>.
  614. <li type=disc><sub>Background by <br><a href= “http://bcniko.tumblr.com/”>bcniko</a>.
  615. </ul>
  616.  
  617. <h3>( mun. )</h3>
  618.  
  619. <ul>
  620. <li type=disc>You can call me Gabby or Anakin-mun. Either one is fine.
  621. <li type=disc>I live within the Eastern Time Zone.
  622. <li type=disc> I’m not really that bad of a person. But let me know if I have offended you in any way, or if you just want to talk. My ask is always open.
  623. <li type=disc>Just a little warning, I can be a bit hyper once you get to know me. So don't be shy & just hit me up tumblr IM or askbox if you want to do something.
  624. <li type=disc>To make sure i know you read my rules, send me ❝ The force is strong with this one... ❞
  625. </ul>
  626. </div>
  627.  
  628. <div id="box4" class="popup_block"><h1>Navigation</h1>
  629.  
  630. <h1>blog tags</h1>
  631. <blockquote>
  632. <ul>
  633. <li type=disc><a href="/tagged/">psa</a>
  634. <li type=disc><a href="/tagged/">ooc</a>
  635. <li type=disc><a href="/tagged/">answered questions</a>
  636. <li type=disc><a href="/tagged/">anonymous questions</a>
  637. <li type=disc><a href="/tagged/">promo's</a><br>
  638. <li type=disc><a href="/tagged/">self promos</a>
  639. </ul>
  640.  
  641. <h1>blog pages</h1>
  642. <blockquote>
  643. <ul>
  644.  
  645. <li type=disc><a href="/">Bio</a>
  646. <li type=disc><a href="/">Verses</a></blockquote>
  647. </ul>
  648.  
  649. <h1>Rp Tags</h1>
  650. <blockquote>
  651. <ul>
  652. <li type=disc><a href="/tagged/">meme's</a>
  653. <li type=disc><a href="/tagged/">answered meme's</a>
  654. <li type=disc><a href="/tagged/">starter calls</a>
  655. <li type=disc><a href="/tagged/">greeters</a>
  656. <li type=disc><a href="/tagged/ᵗʰᵉ-ᶠᵒʳᶜᵉ-ᶦˢ-ˢᵗʳᵒᶰᵍ-ʷᶦᵗʰ-ᵗʰᶦˢ-ᵒᶰᵉ⋅-(-musings-)">musings</a></blockquote>
  657. </ul>
  658.  
  659. <h1>Muse Graphics</h1>
  660. <blockquote>
  661. <ul>
  662. <li type=disc><a href="/tagged/ʷʰᵉʳᵉ-ˢʰᵒᵘᶫᵈ-ᶦ-ˢᵉʳᵛᵉ﹖-(-queue-)">queue</a>
  663. <li type=disc><a href="/tagged/">gallery</a>
  664. <li type=disc><a href="/tagged/">Anakin</a></blockquote>
  665. </ul>
  666.  
  667. <h1>Family Graphics</h1>
  668. <blockquote>
  669. <ul>
  670. <li type=disc><a href="/tagged/">Shmi Skywalker</a>
  671. <li type=disc><a href="/tagged/">Luke Skywalker</a>
  672. <li type=disc><a href="/tagged/">Leia "Organa" Skywalker</a>
  673. <li type=disc><a href="/tagged/">Obi-Wan</a>
  674. <li type=disc><a href="/tagged/">Owen Lars</a></blockquote>
  675. </ul>
  676.  
  677. <h1>Lovers Graphics</h1>
  678. <blockquote>
  679. <ul>
  680. <li type=disc><a href="/tagged/">Padmè Amidala</a></blockquote>
  681. </ul>
  682.  
  683. <h1>Lovers OTP Tag</h1>
  684. <blockquote>
  685. <ul>
  686. <li type=disc><a href="/tagged/">Anidala</a></blockquote>
  687.  
  688. </ul>
  689.  
  690. </div>
  691.  
  692. <div id="box5" class="popup_block"><h1>Mechanical</h1>
  693. <h1></h1>
  694.  
  695. <ul>
  696. <li type=disc>
  697. </ul>
  698.  
  699. </div>
  700. </div>
  701.  
  702. <div id="box6" class="popup_block"><h1>Mun</h1>
  703. <small><img src="https://40.media.tumblr.com/8a86a61b1128baad815808b9b166e89e/tumblr_o5pgrsSBCN1vqkaxio1_500.png"</small>
  704. <h1>Personal Info</h1>
  705. <blockquote>
  706. <ul>
  707. <li type=disc><b><u>Name</u></b>: Gabby.
  708. <li type=disc><b><u>FC</u></b>: Ichigo Kurosaki.
  709. <li type=disc><b><u>DOB</u></b>: April 6th, 1992.
  710. <li type=disc><b><u>Age</u></b>: 24.
  711. <li type=disc><b><u>Zodiac</u></b>: Aries.
  712. </ul>
  713. <h1>Etymology</h1>
  714. <ul>
  715. <li type=disc><b><u>Gender</u></b>: Female.
  716. <li type=disc><b><u>Usage</u></b>: French & English.
  717. <li type=disc><b><u>Prounounced</u></b> ga-bree-EL.
  718. <li type=disc><b><u>Meaning & History</u></b>: Feminine form of Gabriel, which is derived from the Hebrew gavhrī’ēl (God is my strength). Gabriel is borne in the Bible by one of the seven archangels, the herald of Good News who appeared to Mary to announce her pregnancy and the impending birth of the Christ child. Gabrielle is "heroine of God". Feminine of Gabriel. Gabriella is the Italian form.</blockquote>
  719. </ul>
  720.  
  721. <h1>Appearance</h1>
  722. <blockquote>
  723. <ul>
  724. <li type=disc><b><u>Hair Color</u></b>: Brown with Natural Highlights.
  725. <li type=disc><b><u>Eyes</u></b>: Black.
  726. <li type=disc><b><u>Height</u></b>: 5'4"</blockquote>
  727. </ul>
  728.  
  729. <h1>Other</h1>
  730. <blockquote>
  731. <ul>
  732. <li type=disc><b><u>Game Systems</u></b>: Xbox 360, Wii, Playstation 2, Playstation 4 & Game Cube.
  733. <li type=disc><b><u>Favorite Novels</u></b>: Star Wars, Memoirs of a Geisha, Mythos Academy series, Percy Jackson series & Heroes of Olympus series, Inheritance Cycle, Wild Orchid: A Retelling of "The Ballad of Mulan", Avalon High, Star Wars, The Mortal Instruments series, Vampire Kisses series, Fairy Bad Day.
  734. <li type=disc><b><u>Anime Movies</u></b>: Final Fantasy VII: Advent Children, Princess Mononoke, Spirted Away, Howl's Moving Castle, How To Train Your Dragon (1&2), Disney Movies, etc.
  735. <li type=disc><b><u>None-Anime Movies</u></b>: Star Wars, Star Trek, The Mummy Series, Disney Movies, Marvel films, etc.
  736. <li type=disc><b><u>TV Shows</u></b>: House Hunters International, NCIS, David Tutera My Fair Wedding, Game of Thrones, C.H.A.R.M.E.D, Galavant, Fashion Police, Merlin, F.R.I.E.N.D.S, etc.
  737. <li type=disc><b><u>Anime Shows</u></b>: Fairy Tail, Naruto, Nura: Rise of the Yokai Clan, Kaze No Stigma, Bleach, Soul Eater, Avatar: The Last Air Bender, Wolfs Rain, Code: Breaker, Rave Master, Full Metal Panic, Dragon Ball Z, Yu Yu Hakusho.
  738. <li type=disc><b><u>Manga</u></b>: Fairy Tail, Samurai Deeper Kyo, Code: Breaker, Rave Master, Bleach, Soul Eater, Naruto, Ayoshi no Ceres, Rasario + Vampire, Inyasha, Full Metal Panic, Dragon Ball Z, Yu Yu Hakusho, Nura: Rise of the Yokai.
  739. <li type=disc><b><u>Video Games</u></b>: Final Fantasy, Harvest Moon, Dragon Dogma, Lara Croft: Tomb Raider, Star Wars, Legend of Zelda, Kingdom of Amalur the Reckoning 2, Assassin Creed series & Dragon Age.</blockquote>
  740. </ul>
  741.  
  742. </div>
  743.  
  744. <div id="box7" class="popup_block"><h1>Other Accounts</h1>
  745. <small><img src="https://36.media.tumblr.com/17721d1db2229f0b11dfe5fe499e34f2/tumblr_o5pgrsSBCN1vqkaxio4_r1_500.png"</small>
  746. <h1>Personal.</h1>
  747. <blockquote>
  748. <ul>
  749. <li type=disc><a href="http://dreamsofkhaleesi.tumblr.com">Blog</a>.
  750. <li type=disc><b><u>FaceClaim</u></b>: Emilie De Ravin
  751. <li type=disc><b><u>Bio</u></b>: Hello there, this is my personal blog where i do not post any of my roleplays on. here you will find only icons made by me, and of course pictures of things that i like.
  752. personally, i like to think of this as my own little fantasy world, where i come to escape the pressures of reality. so come, & please enjoy yourself!
  753. I follow everyone who follows me back: Including blogs that have no relations to Rping.</blockquote>
  754. </ul>
  755.  
  756. <small><img src="https://41.media.tumblr.com/0567d7d0386d4279081a44da6aa5b701/tumblr_o5pgrsSBCN1vqkaxio3_r1_500.png"</small>
  757. <h1>Jace Herondale</h1>
  758. <blockquote>
  759. <ul>
  760. <li type=disc><a href="http://runesanddeath.tumblr.com">Blog</a>.
  761. <li type=disc><b><u>FaceClaim</u></b>: Dominic Sherwood, Sarah Michelle Gellar, Diane Kruger, Chris Pratt, Alex Pettyfer & Dakota Goyo.
  762. <li type=disc><b><u>Bio</u></b>: Jace Herondale, is one of the best Shadowhunters of his time, currently residing in the New York Institute.
  763. Raised by Valentine Morgenstern, Jace was revealed to be the biological son of the late Celine and Stephen Herondale.</blockquote>
  764. </ul>
  765.  
  766. <h1>Fa Mulan</h1>
  767. <ul>
  768. <small><img src="https://41.media.tumblr.com/cf63cc25557dc6a00dcbe96e54a3bea5/tumblr_o5pgrsSBCN1vqkaxio2_r1_500.png"</small>
  769. <blockquote>
  770. <ul>
  771. <li type=disc><a href="http://adversitybloomed.tumblr.com/">Blog</a>.
  772. <li type=disc><b><u>FaceClaim</u></b>: Disney version of Mulan & Liu Yifei
  773. <li type=disc><b><u>Bio</u></b>: My interpretation of Fa Mulan is based off both disney movies & the novel; Wild Orchid: A Retelling of "The Ballad of Mulan".</blockquote>
  774. </ul>
  775. </div>
  776.  
  777. </div></div></div></div></div></div></div></div></div></div>
  778. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement