Advertisement
Guest User

Untitled

a guest
Sep 7th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.06 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script><title>{Title}</title>
  35. <link rel="shortcut icon" href="{Favicon}">
  36. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  37. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  38.  
  39. <!---- this is theme 46 by Hollywhood
  40. please don't remove the credit
  41. thank you
  42. --->
  43.  
  44. <meta name="color:Background" content="#ffffff"/>
  45. <meta name="color:Text" content="#9B9B9B"/>
  46. <meta name="color:Link" content="#ccc"/>
  47. <meta name="color:Link Hover" content="#eeeeee"/>
  48. <meta name="color:scrollbar" content="3e0005">
  49. <meta name="color:title" content="#aaaaaa"/>
  50. <meta name="image:sidebar" content=""/>
  51. <meta name="text:sidebartitle" content="">
  52. <meta name="text:link 1" content="•"/>
  53. <meta name="text:link 1 url" content="/"/>
  54. <meta name="text:link 2" content="•"/>
  55. <meta name="text:link 2 url" content="/"/>
  56. <meta name="text:link 3" content="•"/>
  57. <meta name="text:link 3 url" content="/"/>
  58. <meta name="text:link 4" content="•"/>
  59. <meta name="text:link 4 url" content="/"/>
  60. <meta name="text:link 5" content="•"/>
  61. <meta name="text:link 5 url" content="/"/>
  62.  
  63. <link href='http://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
  64. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  65. <style type="text/css">
  66. .popup_block{
  67. display:none;
  68. background:#fff;
  69. padding:20px;
  70. width: 400px;
  71. height: 400px;
  72. overflow-y:scroll;
  73. overflow-x:hidden;
  74. border:2px solid #182a4c; /* if you want a solid white pop-up, delete this */
  75. float:left;
  76. position:fixed;
  77. top:50%;left:50%;
  78. z-index: 99999;
  79. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  80. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  81. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  82. }
  83.  
  84. *html #fade {position: absolute;}
  85. *html .popup_block {position: absolute;}
  86. #fade {
  87. display:none;
  88. position:fixed;
  89. left:0px;
  90. top:0px;
  91. width:100%;
  92. height:100%;
  93. z-index:9999;
  94. background:#000; /* change to #fff for solid white */
  95. opacity:0.5; /* change to opacity:1; */
  96. }
  97. ::-webkit-scrollbar-thumb{
  98. background-color: #182a4c;
  99. border: 4px solid {color:#182a4c};
  100. height:auto;
  101. }
  102.  
  103. ::-webkit-scrollbar {
  104. height:auto;
  105. width:4px;
  106. background-color: transparent;
  107. border: 4px solid {color:#182a4c};
  108. }
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115. iframe#tumblr_controls {
  116. white-space:nowrap;
  117. -webkit-filter: invert(100%);
  118. -moz-filter: invert(100%);
  119. -o-filter: invert(100%);
  120. -ms-filter: invert(100%);
  121. filter: invert(100%);
  122. opacity:.2;transition: .8s ease-in-out;
  123. -webkit-transition: .8s ease-in-out;
  124. -moz-transition: .8s ease-in-out;
  125. -o-transition: .8s ease-in-out;
  126. }
  127.  
  128. h1 {
  129. font-weight:normal;
  130. font-size:13px;
  131. font-style:normal;
  132. line-height:100%;
  133. letter-spacing:1px;
  134. text-transform:normal;
  135. color:{color:text};
  136. font-family: 'Oswald', sans-serif;
  137. }
  138.  
  139. h2 {
  140. font-size:10px;
  141. line-height:100%;
  142. letter-spacing:-0.5px;
  143. color:{color:text};
  144. font-weight:bold;
  145. text-transform:uppercase;
  146. padding:5px;
  147. padding-bottom:2px;
  148. font-family: 'Oswald', sans-serif;
  149. }
  150.  
  151. blockquote {
  152. border-left:1px solid #ccc;
  153. padding:7px;
  154. margin:10px 2px 0px 10px
  155. }
  156.  
  157. body {
  158. background-color:#000;
  159. background-image:url(http://i.imgur.com/Ve7Yimc.png);
  160. background-repeat:no-repeat;
  161. margin:0px;
  162. color:{color:text};
  163. font-family:times;
  164. font-size:12px;
  165. line-height:100%;
  166. }
  167. small, sub, sup {font-size:12px;}
  168.  
  169. a {
  170. text-decoration:none;
  171. outline:none;
  172. -moz-outline-style:none;
  173. color:{color:link};
  174. -moz-transition-duration:0.5s;
  175. -webkit-transition-duration:0.5s;
  176. -o-transition-duration:0.5s;
  177. }
  178.  
  179. a:hover {
  180. text-decoration:none;
  181. outline:none;
  182. -moz-outline-style:none;
  183. color:{color:link hover};
  184. }
  185.  
  186. img {
  187. border:none;
  188. }
  189.  
  190.  
  191.  
  192. #post {
  193. width:400px;
  194. padding-bottom:50px;
  195. margin-top:20px;
  196.  
  197. }
  198.  
  199. #entries {
  200. height:560px;
  201. width:400px;
  202. margin-left:675px;
  203. margin-top:0px;
  204. text-align:justify;
  205. padding:20px;
  206. opacity:.96;
  207. z-index:999;
  208. overflow-x:hidden;
  209. overflow-y:auto;
  210. }
  211.  
  212. #sidebar {
  213. color:{color:text};
  214. position:fixed;
  215. width:91px;
  216. height:auto;
  217. margin-top:100px;
  218. margin-left:-70px;
  219. text-align:left;
  220. }
  221.  
  222. #sidebar img {
  223. width:130px;
  224. margin-top:0px;
  225. margin-bottom:5px;
  226. padding:-1px;
  227. outline-offset:4px;
  228. }
  229.  
  230. #quotes {
  231. font-family: 'Oswald', sans-serif;
  232. font-size:14px; }
  233.  
  234. #links {
  235. display:inline-block;
  236. position:fixed;
  237. font-family:cambria;
  238. width:30px;
  239. margin-top:-570px;
  240. margin-left:520px;
  241. font-size:20px;
  242. text-transform:none;
  243. text-align:center;
  244. line-height:230%;
  245. z-index:99990;
  246. text-shadow:1px 1px 10px #182a4c;
  247. rgba(5,5,5,5);
  248. }
  249.  
  250. #links a{
  251. line-height:230%;
  252. padding:1px;
  253. margin-top:1px;
  254. margin-left:6px;
  255. color:{color:#182a4c};
  256. -moz-transition-duration:.7s;
  257. -webkit-transition-duration:.7s;
  258. -o-transition-duration:.7s;
  259. }
  260.  
  261. #links a:hover {
  262. color:{color:link hover};
  263. -moz-transition-duration:.4s;
  264. -webkit-transition-duration:.4s;
  265. -o-transition-duration:.4s;
  266.  
  267. }
  268.  
  269. #description {
  270. width:130px;
  271. font-family: 'Oswald', sans-serif;
  272. margin-bottom:0px;
  273. margin-top:130px;
  274. margin-left:610px;
  275. text-align:center;
  276. font-size:11px;
  277. color: #f1f1f1;
  278. line-height:145%;
  279. }
  280.  
  281. #description a {
  282. color:{color:link};
  283. }
  284.  
  285. #description a:hover {
  286. color:{color:link hover};
  287. }
  288.  
  289. .sidebartitle {
  290. width:130px;
  291. text-align:right;
  292. font-family:'Bodoni MT Condensed';
  293. line-height:120%;
  294. margin-left:-4px;
  295. background:;
  296. word-spacing:2px;
  297. font-style:italic;
  298. letter-spacing:0px;
  299. font-size:32px;
  300. margin-top:-2px;
  301. color:{color:title};
  302. }
  303.  
  304. #pagination {
  305. font-family: cambria;
  306. width:10px;
  307. font-size:10px;
  308. text-transform:bold;
  309. margin-top:345px;
  310. margin-left:585px;
  311. padding-left:5px;
  312. letter-spacing:1px;
  313. font-style:normal;
  314. text-align:right;
  315. }
  316.  
  317. #pagination a {
  318. color:{color:link};
  319. }
  320.  
  321. #info {
  322. font-family:arial;
  323. width:396px;
  324. height:25px;
  325. margin-top:10px;
  326. padding-top:2px;
  327. font-size:9px;
  328. color:#000000
  329. border-bottom:1px solid #000000;
  330. border-top:1px solid #000000;
  331. background-image:url('http://i.imgur.com/YNmsNlt.png');
  332. text-transform:uppercase;
  333. letter-spacing:1px;
  334. font-style:normal;
  335. text-align:right;
  336. -moz-transition-duration:0.2s;
  337. -webkit-transition-duration:0.2s;
  338. -o-transition-duration:0.2s;
  339. }
  340.  
  341. #info a {
  342. color:#000000;
  343. font-style:normal;
  344. }
  345.  
  346. #info a:hover {
  347. color:{color:link hover};
  348. -moz-transition-duration:0.2s;
  349. -webkit-transition-duration:0.2s;
  350. -o-transition-duration:0.2s;
  351. }
  352.  
  353. .tags {
  354. font-family:arial;
  355. font-style:normal;
  356. width:396px;
  357. text-transform:normal;
  358. font-style:normal;
  359. line-height:120%;
  360. padding-top:2px;
  361. font-size:9px;
  362. border-top:1px solid #000000;
  363. text-align:right;
  364.  
  365. -moz-transition-duration:0.5s;
  366. -webkit-transition-duration:0.5s;
  367. -o-transition-duration:0.5s;
  368. }
  369. .tags a{
  370. color:#000000;
  371. -moz-transition-duration:0.2s;
  372. -webkit-transition-duration:0.2s;
  373. -o-transition-duration:0.2s;
  374. }
  375. .tags a:hover{
  376. color:{color:link hover};
  377. -moz-transition-duration:0.2s;
  378. -webkit-transition-duration:0.2s;
  379. -o-transition-duration:0.2s;
  380. }
  381.  
  382. img {
  383. -webkit-filter: grayscale(60%);
  384. z-index: -9999999999999999999999999px;
  385. -webkit-transition: all 0.9s ease-in-out;
  386. -moz-transition: all 0.9s ease-in-out;
  387. -o-transition: all 0.9s ease-in-out;
  388. -ms-transition: all 0.9s ease-in-out;
  389. transition: all 0.9s ease-in-out;
  390. }
  391.  
  392. img:hover {
  393. -webkit-filter: grayscale(0%);
  394. z-index: -9999999999999999999999999px;
  395. -webkit-transition: all 0.9s ease-in-out;
  396. -moz-transition: all 0.9s ease-in-out;
  397. -o-transition: all 0.9s ease-in-out;
  398. -ms-transition: all 0.9s ease-in-out;
  399. transition: all 0.9s ease-in-out;
  400. }
  401.  
  402. .html_photoset{
  403. -webkit-filter: grayscale(60%);
  404. z-index: -9999999999999999999999999px;
  405. -webkit-transition: all 0.9s ease-in-out;
  406. -moz-transition: all 0.9s ease-in-out;
  407. -o-transition: all 0.9s ease-in-out;
  408. -ms-transition: all 0.9s ease-in-out;
  409. transition: all 0.9s ease-in-out;
  410. }
  411.  
  412. .html_photoset:hover{
  413. -webkit-filter: grayscale(0%);
  414. z-index: -9999999999999999999999999px;
  415. -webkit-transition: all 0.9s ease-in-out;
  416. -moz-transition: all 0.9s ease-in-out;
  417. -o-transition: all 0.9s ease-in-out;
  418. -ms-transition: all 0.9s ease-in-out;
  419. transition: all 0.9s ease-in-out;
  420. }
  421.  
  422. .audio{
  423. background-color:#e5e5e5;
  424. height:65px;
  425. overflow:hidden;
  426. }
  427.  
  428. #ask {
  429. margin-top:-10px;
  430. padding-bottom:10px;
  431. padding-left:10px;
  432. text-align:left;
  433. color:{color:text};
  434. line-height:130%;
  435. background-color:#ccc;
  436. }
  437. #ask img {
  438. margin-left:-3px;
  439. margin-bottom:-9px;
  440. margin-top:6px;
  441. padding:3px;
  442. }
  443. #ans {
  444. text-align:left;
  445. padding:5px;
  446. color:{color:text};
  447. }
  448.  
  449. #credit {
  450. font-size:9px;
  451. font-family:cambria;
  452. font-style:italic;
  453. letter-spacing:1px;
  454. -moz-transition-duration:0.5s;
  455. -webkit-transition-duration:0.5s;
  456. -o-transition-duration:0.5s;
  457. }
  458.  
  459. #credit a {
  460. background-color:#f1f1f1;
  461. padding:5px;
  462. border:1px solid #182a4c;
  463. position:fixed;
  464. right:15px;
  465. bottom:10px
  466. }
  467.  
  468. #credit a:hover {
  469. color:#182a4c;
  470. background-color:#f1f1f1;
  471. }
  472.  
  473. i, em {color: #182a4c ;
  474. text-shadow:1px 1px 10px #182a4c;
  475. font-family: 'Oswald', sans-serif;
  476. rgba(5,5,5,5); }
  477.  
  478. b, strong { color: #182a4c ;
  479. text-shadow:1px 1px 10px #182a4c;
  480. font-family: 'Oswald', sans-serif;
  481. rgba(5,5,5,5); ;}
  482. {CustomCSS}</style></head><body>
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489. <div id="theme">
  490.  
  491.  
  492.  
  493. <div id="sidebar">
  494.  
  495. <div id="sidebarimage">
  496. <a href="/"><img src="{image:sidebar}"> </a></div>
  497.  
  498. <div class="sidebartitle">{text:sidebartitle}</div>
  499.  
  500. <div id="description">
  501. {Description}
  502. <p></p>
  503. <div id="links">
  504. <a href="{text:link 1 url}">{text:link 1}</a>
  505. <a href="#?w=300" rel="ask" class="poplight"><font color="#182a4c">•</font></a>
  506. <a href="#?w=300" rel="rules" class="poplight"><font color="#182a4c">•</font></a>
  507. <a href="#?w=300" rel="about" class="poplight"><font color="#182a4c">•</font></a>
  508. <a href="#?w=300" rel="navi" class="poplight"><font color="#182a4c">•</font></a>
  509. </div>
  510. <div id="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"><b><font color="#182a4c"><big><big><big><big>«</big></big></big></big></font></b></a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}"><b><font color="#182a4c"><big><big><big><big>»</big></big></big></big></font></b></a>{/block:NextPage}{/block:Pagination} </div></div></div></div>
  511.  
  512.  
  513. <div id="entries">{block:Posts}<div id="post">
  514.  
  515. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  516.  
  517. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  518.  
  519. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  520.  
  521. {block:Quote}<center><big><big>"{Quote}"</big></big></center>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  522.  
  523. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  524.  
  525. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  526.  
  527. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  528. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  529.  
  530. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  531.  
  532. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}"> {Asker}: {Question}</div><div id="ans">{Answer}</div>{/block:answer}
  533.  
  534. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  535. {/block:Date} {block:NoteCount}&nbsp; ( <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  536.  
  537. <br>{block:RebloggedFrom} <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} & <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} </br>
  538. </div>
  539.  
  540.  
  541. {block:HasTags}
  542. <div class="tags">
  543. {block:Tags} <a href="{TagURL}"> <big>#</big> {Tag} &nbsp; </a> {/block:Tags}</div>
  544. {/block:HasTags}
  545. <div class="postnote">
  546. {block:PostNotes}{PostNotes}{/block:PostNotes}
  547. </div>
  548. </div>
  549. {/block:Posts}
  550.  
  551. </div>
  552. <div id="credit"><a href="http://hollywhood.tumblr.com"><font color=" #34272b">HW</font></div></div>
  553.  
  554. </body>
  555. <div id="ask" class="popup_block">
  556. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  557. </div>
  558.  
  559. </div></div></div></div></div></div></div></div></div></div>
  560. <div id="rules" class="popup_block">
  561. <p style="line-height: 21.7777786254883px;">Guidelines and proper conduct for all who wish to interact and rp with Patriot, I really recommend you take a look before approaching me.</p>
  562. <p style="line-height: 21.7777786254883px;"><strong>M U N:</strong></p>
  563. <blockquote style="line-height: 21.7777786254883px;">
  564. <p><strong><em>Name:</em></strong> Jazz/Jun</p>
  565. <p><strong><em>Age:</em> </strong>20</p>
  566. <p><strong><em>Timezone:</em> </strong>PST</p>
  567. <p><strong><em>Activity:</em> </strong>7/10; I am a full time student, I have a part time job and family obligations that keep me away at times. I do try to be around as often as I can.</p>
  568. <p><strong><em>Contact</em>:</strong> Asks and fan mail is the best way to get my attention or to reach me if you need to. For those bolder and mutuals can ask for my Skype, if they so wish.</p>
  569. </blockquote>
  570. <p><strong>BASICS:&nbsp;</strong></p>
  571. <blockquote>
  572. <p style="line-height: 21.7777786254883px;"><strong><em>Status:</em></strong>&nbsp;&rsquo;Independent&rsquo; meaning this blog does not belong to any group roleplay, but may affiliate with open groups. This blog is also &lsquo;private&rsquo; which means I will not follow for follow.</p>
  573. <p style="line-height: 21.7777786254883px;"><strong><em>Selective:</em></strong> This is in regards to who I follow back and who I choose write with. I don&rsquo;t mean to offend anyone, I simply don&rsquo;t want a cluttered dashboard. This also doesn&rsquo;t mean I won&rsquo;t roleplay with you if I don&rsquo;t follow you!</p>
  574. <p style="line-height: 21.7777786254883px;"><strong><em>Timeline:</em></strong>&nbsp;Mainverse is usually two years post-Children&rsquo;s Crusade. Eli has graduated from Pinnacle High School and moved back to start his first semester at Long Island University.</p>
  575. <p style="line-height: 21.7777786254883px;"><strong><em>Icons:</em> </strong>All the comic cropped ones belong to me, some will be bordered and some will be not due to the little time I have. Please do not take them. Eli&rsquo;s face claim icons will be credited properly though.</p>
  576. <p style="line-height: 21.7777786254883px;"><strong><em>Content:</em></strong> NSFW and violent elements will be RPed or mentioned, I will do my best to tag everything but please let me know if something makes you uncomfortable and I will tag it.</p>
  577. <p style="line-height: 21.7777786254883px;"><strong>Open starters/Greeters:</strong> I usually write both but starts more than greeters sometimes when I can&rsquo;t keep up with new followers. If some starts are tagged with &lsquo;mutuals preferred&rsquo; then that usually is directed to people who know for sure that I&rsquo;m following them and that they are following me back. Honestly open starters not just directed to a certain number of people.</p>
  578. <p style="line-height: 21.7777786254883px;"><em><strong>Smut:</strong> </em>I will not always have the time or patience to RP out a whole thread of it. If a thread reaches that point of time then I would prefer to fade to black or classic fast forward to the morning/time after. Though I do take my partners&rsquo; thoughts into consideration.</p>
  579. <p style="line-height: 21.7777786254883px;"><strong><em>Shipping:</em></strong>&nbsp;In retrospect I like to base shipping off mutual interest and chemistry. Just come to me if you feel something going on between our characters or might be. I love to talk it over.</p>
  580. <p style="line-height: 21.7777786254883px;"><strong><em>Multiverse</em>:</strong> Verse page is located on the navi.</p>
  581. <p style="line-height: 21.7777786254883px;"><strong><em>Crossovers:</em> </strong>Yes. This depends on how well I know the base work your blog is set in.&nbsp;There are certain fandoms I will NOT RP with, such as: MLP, SuperWhoLock, Homestuck, any fandom I am not familiar with.</p>
  582. <p style="line-height: 21.7777786254883px;"><strong><em>Respect:</em></strong> I&rsquo;m always respectful and friendly to my followers but if you&rsquo;re not to me or other rpers then I won&rsquo;t rp with you and will unfollow you.</p>
  583. </blockquote>
  584.  
  585.  
  586.  
  587.  
  588.  
  589. </div>
  590.  
  591. </div></div></div></div></div></div></div></div></div></div>
  592. <div id="about" class="popup_block">
  593. <p><strong>Name:</strong> Elijah Isaiah Bradley<br /><strong>Aliases:</strong>&nbsp;Patriot, Eli, Soldier Boy, Bucky, Cap, Jr., Junior<br /><strong>Birth date:&nbsp;</strong><span style="line-height: 21.7777786254883px;">August 11, 1994<br /></span><strong>Age:</strong> Pre/Post-CC (17), Mainverse (20), MCU (18-21).<br /><strong>Gender:</strong> Male<br /><strong>Hair:</strong> Black, shaven.<br /><strong>Eyes:</strong> Brown<br /><strong>Height:</strong> 5&rsquo; 11"<br /><strong>Body:</strong>&nbsp;Athletic, fit.<br /><strong>Faceclaim: </strong>Eli Goree and Robbie Jones (secondary)</p>
  594. <p><strong>Education:</strong></p>
  595. <ul>
  596. <li><span style="line-height: 1.4;">Bronx High School of Science (attended grades 9-10)</span></li>
  597. <li><span style="line-height: 1.4;"> Pinnacle High School (alumni),&nbsp;</span></li>
  598. <li><span style="line-height: 1.4;">Long Island&nbsp;</span>University<span style="line-height: 1.4;">&nbsp;(current student)</span></li>
  599. </ul>
  600. <p><strong>Marital Status: </strong>Single<strong><br />Sexuality:&nbsp;</strong>Demisexual<br /><strong>Nationality:</strong> African-American<br /><strong>Occupation:</strong>&nbsp;Student, hero.</p>
  601. <p><strong>Abilities:</strong></p>
  602. <ul>
  603. <li>Enhanced strength, speed, durability and agility.</li>
  604. <li>Capable hand-to-hand combatant.</li>
  605. <li>Basic firearms and throwing projectile training.</li>
  606. <li>Heightened Senses</li>
  607. <li>Parkour</li>
  608. <li>Fair strategist and leader.</li>
  609. </ul>
  610. <p><strong>Affiliations:</strong> Young Avengers (formerly), The Runaways (formerly), The Avengers (formerly).</p>
  611. <p><strong>Family:&nbsp;</strong><span style="line-height: 21.7777786254883px;">Isaiah Bradley (grandfather); Faith Bradley (grandmother); Gail (maternal great-grandmother, deceased); Sarah Gail Bradley (mother); unnamed father, Josiah al hajj Saddiq (uncle), Stephanie Bradley (sister) Litigious Bradley (brother), unnamed stepfather and two unnamed sisters</span></p>
  612. <p><strong>History<span style="line-height: 21.7777786254883px;">:</span></strong></p>
  613. <blockquote>
  614. <p><span style="line-height: 21.7777786254883px;">Born in the Bronx, New York as the third oldest child of Sarah Bradley and second grandson of Isaiah Bradley; Eli grew up on stories of his supposed famous grandfather. To him then that&rsquo;s all they had been. Stories. Myths. Legends. Instead of idolizing his grandfather he felt nothing but shame after what the country had done to Isaiah and his family. His dislike toward the red, white and blue clad hero stemmed his outspoken and brash personality.</span></p>
  615. <p>When his mother remarried and moved his two youngest sisters to Arizona, he was allowed to stay to finish school in New York with his grandparents. His attitude toward his grandfather didn&rsquo;t change until one day Isaiah single handedly took out three neighborhood bullies who had constantly harassed Eli and Isaiah. It was then did he decided he wanted to be just like his Isaiah and follow his footsteps to be a hero. With Iron Lad&rsquo;s appearance he saw his chance. But with his stature he knew he had to get some help himself. Finding no other solution he began using MGH (Mutant Growth Hormones) that gave him super soldier abilities.</p>
  616. <p><span style="line-height: 21.7777786254883px;">Eventually the duo began to grow into a full blown team dubbed as the Young Avengers. The team began doing their best to protect New York, becoming an established and well known name around the city. Among dealing with countless hardships the team faced Eli managed to kick his drug usage after gaining true super soldier abilities by a blood transfusion from his grandfather. He even started dating fellow YA teammate Kate Bishop (Hawkeye).</span></p>
  617. <p><span style="line-height: 21.7777786254883px;">With the victories also came loses. During a confrontation with Scarlet Witch and Doctor Doom, Cassie Lang (Stature) was killed in action by Doom. In the aftermath of this event a distraught Eli hung up his mask and eventually moved to rejoin his family in Arizona.</span></p>
  618. <p><span style="line-height: 21.7777786254883px;">Two years later, he tried to make his peace with his guilt for stopping the Scarlet Witch and Cassie&rsquo;s death. The former hero couldn&rsquo;t escape his past, from the Internet to TV news it was filled with nothing but familiar faces. In the end he decided to keep updated on his friends and found some relieve in knowing most of them were doing well without him.</span></p>
  619. <p><span style="line-height: 21.7777786254883px;"></span><span style="line-height: 21.7777786254883px;">After much consideration Eli decided to transfer from the local community college to attend Long Island University. There he decided to major in communications and medical studies. Still he couldn&rsquo;t shake off his old habits. A month after his return he donned his mask once more, resuming his hero work around campus.</span></p>
  620. </blockquote>
  621.  
  622. </div>
  623.  
  624. </div></div></div></div></div></div></div></div></div></div>
  625.  
  626. <div id="navi" class="popup_block">
  627. navi goes here blah blah blah
  628. </div>
  629.  
  630. </div></div></div></div></div></div></div></div></div></div>
  631.  
  632. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement