Beginnings of new site
This commit is contained in:
84
old/404.html
Normal file
84
old/404.html
Normal file
@@ -0,0 +1,84 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
--- permalink: /404.html ---
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="">
|
||||
<title>404!</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="/css/main.min.css" rel="stylesheet">
|
||||
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/custom.css">
|
||||
<link rel="stylesheet" href="/css/animate.min.css">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
}
|
||||
.starter-template {
|
||||
padding: 40px 15px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="index.html">Home</a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="/art/index.html">Art</a>
|
||||
</li>
|
||||
<li><a href="forge.html">Forge Modding</a>
|
||||
</li>
|
||||
<li><a href="webdesign.html">Website Design</a>
|
||||
</li>
|
||||
<li><a href="dashboard.html">Dashboard</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<div class="starter-template">
|
||||
<img src="/images/art/404.jpg" class="img-circle">
|
||||
<h1>Whoops! Something's broken.</h1>
|
||||
<h3>Perhaps the Temporal Stabaliser is malajusted, or the Metaphysical Wave Generator is incorrectly calibrated</h3>
|
||||
<h4>Got here from a internal link? Contact the author, <a href="mailto:warlordjones@gmail.com?Subject=Site%20Error">Arona Jones</a>, to get this fixed</h4>
|
||||
<h4>Otherwise, just hit back, or use the navbar to get out of here, lest the Kraken notice your presence!</h4>
|
||||
<a href="javascript:history.go(-1)">
|
||||
<img src="http://www.awopradio.com/wp-content/uploads/2012/07/RedArrowLeft.png" width="10%">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- compiled and minified Bootstrap JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
110
old/forge.html
Normal file
110
old/forge.html
Normal file
@@ -0,0 +1,110 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<script>
|
||||
(function (i, s, o, g, r, a, m) {
|
||||
i['GoogleAnalyticsObject'] = r;
|
||||
i[r] = i[r] || function () {
|
||||
(i[r].q = i[r].q || []).push(arguments)
|
||||
}, i[r].l = 1 * new Date();
|
||||
a = s.createElement(o),
|
||||
m = s.getElementsByTagName(o)[0];
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
|
||||
ga('create', 'UA-40673160-2', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="">
|
||||
<title>Arona Jones - Forge Modding</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="/css/main.min.css" rel="stylesheet">
|
||||
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.starter-template {
|
||||
padding: 40px 15px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<script type="text/javascript">
|
||||
var _bftn_options = {
|
||||
animation: 'banner',
|
||||
theme: 'dark'
|
||||
}
|
||||
</script>
|
||||
<script src="//widget.battleforthenet.com/widget.min.js" async></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="index.html">Home</a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="/art/index.html">Art</a>
|
||||
</li>
|
||||
<li><a href="forge.html">Forge Modding</a>
|
||||
</li>
|
||||
<li>
|
||||
<li><a href="http://cardsagainstinsanity.blogspot.co.uk/">Blog</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<div class="starter-template">
|
||||
<h3 align="left">List of useful Code Snippets for Forge Modding:</h3>
|
||||
<ol align="left">
|
||||
<li>Get a (server!) World Obj from the dimension id: World world = DimensionManager.getWorld(worldId);</li>
|
||||
<li>Want to access another mod's items? Use GameRegistry.findItem(<unlocalizedName>);</li>
|
||||
<li>List of canned effects available for use with worldObj.playAuxSFX <a href="http://wiki.vg/Protocol#Effects">Link</a>
|
||||
</li>
|
||||
<li>Block Side Reference: 0=Bottom, 1=Top, 2=North, 3=South, 4=West, 5=East.</li>
|
||||
<li>Inventory Slot Numbers Reference <a href="http://wiki.vg/images/thumb/1/13/Inventory-slots.png/180px-Inventory-slots.png">Link</a>
|
||||
</li>
|
||||
</ol>
|
||||
<h3>My Minecraft Mods:</h3>
|
||||
<p>I'm part of, and informally the leader of, a international (I'm not joking, no two main members live in the same time zone, let alone the same country!) coding team called the BrassGoggledCoders, who make minecraft mods. For more information see <a href="/brassgoggled/index.html">here</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- compiled and minified Bootstrap JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
|
||||
<script src="/javascripts/api.js"></script>
|
||||
|
||||
</body>
|
||||
236
old/index.html
Normal file
236
old/index.html
Normal file
@@ -0,0 +1,236 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<script>
|
||||
(function (i, s, o, g, r, a, m) {
|
||||
i['GoogleAnalyticsObject'] = r;
|
||||
i[r] = i[r] || function () {
|
||||
(i[r].q = i[r].q || []).push(arguments)
|
||||
}, i[r].l = 1 * new Date();
|
||||
a = s.createElement(o),
|
||||
m = s.getElementsByTagName(o)[0];
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
|
||||
ga('create', 'UA-40673160-2', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="">
|
||||
<title>Arona Jones</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="/css/main.min.css" rel="stylesheet">
|
||||
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/custom.css">
|
||||
<link rel="stylesheet" href="/css/animate.min.css">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.starter-template {
|
||||
padding: 40px 15px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta name="google-site-verification" content="ZnWg3a1eMHIl2_6Mt2HtPwv_fNE5R-HKT9rgYtvHXyo" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="index.html">Home</a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="/art/index.html">Art</a>
|
||||
</li>
|
||||
<li><a href="forge.html">Forge Modding</a>
|
||||
</li>
|
||||
<li><a href="http://cardsagainstinsanity.blogspot.co.uk/">Blog</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="header starter-template">
|
||||
<script type="text/javascript">
|
||||
var _cd_options = {
|
||||
theme: 'red'
|
||||
};
|
||||
</script>
|
||||
<img src="/images/avatar.png" class="animated zoomInDown">
|
||||
<img src="/images/header.png" class="animated lightSpeedIn img-rounded">
|
||||
</div>
|
||||
<div class="jumbotron row">
|
||||
<h3>About Me:</h3>
|
||||
<p>Welcome to the website of Arona Jones, usually known as <em>warlordjones</em> on the Internet, although #warmongers know me as <em>Big Mek Gobsmasha</em> and steampunk folks know me as <em>Major Vincent Smith</em>. My self-granted titles are the Supreme Overlord of Hellfire, Snr. Officer of HMS Brassgoggles and Eternal Vampyre Lord of the Twilight. They're on my card, that makes it official, right?
|
||||
<br>
|
||||
<br>I'm a 17 year old internet nerd, tabletop/video gamer and self-taught programmer/modder. I am the leader of an international Minecraft modding team, more information on which can be found under the Forge Modding tab. I've a passion for physics and computing, although I also enjoy history and philosophy.
|
||||
<br>
|
||||
<br>I am an avid reader who greatly enjoys fantasy books such as Discworld, Sovereign of the Seven Isles and Edge Chronicles; classics like Nineteen Eighty-Four, A Swiss Family Robinson and A Journey to the Center of the Earth and sci-fi such as Larklight.</p>
|
||||
</div>
|
||||
<div class="jumbotron row">
|
||||
<h3>Computer Specs:</h3>
|
||||
<p>My main computer is currently a mid-2012 Macbook Pro, which I have modified considerably. I've upgraded the ram to 8GB, and replaced the optical drive with a hard drive caddy, which contains an old Toshiba 320GB drive that clicks like a Geiger counter but seems to work fine. I'm going to buy a 500GB WD Blue soon to replace it. I'm stuck with Intel Integrated Grapics though.</p>
|
||||
</div>
|
||||
<br>
|
||||
<div class="jumbotron row">
|
||||
<h3>Me on the web:</h3>
|
||||
<div class="row animated fadeInRightBig">
|
||||
<div class="col-md-1">
|
||||
<a href="http://twitter.com/warlordjones_">
|
||||
<img src="/images/links/twitter.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://www.facebook.com/aronajohnjones">
|
||||
<img src="/images/links/facebook.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="http://steamcommunity.com/id/warlordjones/">
|
||||
<img src="/images/links/steam.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://plus.google.com/108369795393135583813">
|
||||
<img src="/images/links/google.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://www.youtube.com/channel/UCcuDkMFN5RBK1L_rsaWFCpw?&ab_channel=AronaJones">
|
||||
<img src="/images/links/youtube.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://open.spotify.com/user/warlordjones">
|
||||
<img src="/images/links/spotify.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="http://cardsagainstinsanity.blogspot.co.uk/">
|
||||
<img src="/images/links/blogger.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row animated fadeInRightBig">
|
||||
<div class="col-md-1">
|
||||
<a href="https://github.com/warlordjones">
|
||||
<img src="/images/links/github.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="http://brassgoggles.co.uk/forum/index.php?action=profile;u=18504;sa=summary">
|
||||
<img src="/images/links/bg.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="http://www.minecraftforum.net/members/warlordjones">
|
||||
<img src="/images/links/mc.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="mailto://warlordjones@gmail.com">
|
||||
<img src="/images/links/mail.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://reddit.com/u/warlordjones">
|
||||
<img src="/images/links/reddit.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-1">
|
||||
<a href="https://player.me/warlordjones">
|
||||
<img src="/images/links/player.png" class="icon">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="jumbotron row">
|
||||
<h3>Labels:</h3>
|
||||
<img src="/images/warning.png" width="50px" style="float: left">
|
||||
<h5>Criminally Insane</h5>
|
||||
<br>
|
||||
<img src="/images/warning.png" width="50px" style="float: left">
|
||||
<h5>Contains geek</h5>
|
||||
<br>
|
||||
<img src="/images/warning.png" width="50px" style="float: left">
|
||||
<h5>Warning: Sharp Object</h5>
|
||||
<br>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<div>
|
||||
<h6>Web development by Arona Jones, with some help from Josh Page. Kindly Hosted by Github. Avatar is the IronOctocat from Github, edited by yours truly.</h6>
|
||||
<div class="btn-group btn-group-justified">
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://getbootstrap.com">Bootstrap</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://semantic-ui.com">Semantic</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://bootswatch.com/">Cyborg Theme</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://game-icons.net">GameIcons.net</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://daneden.github.io/animate.css/">animate.css</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="https://github.com/JoshuaPage/-Api-JS">api.js</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="http://lokeshdhakar.com/projects/lightbox2/">lightbox</a>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-default"><a href="https://github.com/IanLunn/Hover">hover.css</a>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- compiled and minified Bootstrap JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
<script src="/javascripts/semantic.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
152
old/lert.html
Normal file
152
old/lert.html
Normal file
@@ -0,0 +1,152 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<script>
|
||||
(function (i, s, o, g, r, a, m) {
|
||||
i['GoogleAnalyticsObject'] = r;
|
||||
i[r] = i[r] || function () {
|
||||
(i[r].q = i[r].q || []).push(arguments)
|
||||
}, i[r].l = 1 * new Date();
|
||||
a = s.createElement(o),
|
||||
m = s.getElementsByTagName(o)[0];
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
|
||||
|
||||
ga('create', 'UA-40673160-2', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="shortcut icon" href="">
|
||||
<title>Arona Jones</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="/css/main.min.css" rel="stylesheet">
|
||||
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/custom.css">
|
||||
<link rel="stylesheet" href="/css/animate.min.css">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<style>
|
||||
body {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.starter-template {
|
||||
padding: 40px 15px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta name="google-site-verification" content="ZnWg3a1eMHIl2_6Mt2HtPwv_fNE5R-HKT9rgYtvHXyo" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="index.html">Home</a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li><a href="/art/index.html">Art</a>
|
||||
</li>
|
||||
<li><a href="forge.html">Forge Modding</a>
|
||||
</li>
|
||||
<li><a href="http://cardsagainstinsanity.blogspot.co.uk/">Blog</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="header starter-template">
|
||||
<h1 class="bg-danger">Doomsday Status Board:</h1>
|
||||
<h5 class="bg-primary">Days since last update: <span id="days">0</span></h5>
|
||||
<h2 class="bg-warning">Overall Status:</h2>
|
||||
<svg height="200" width="200">
|
||||
<circle cx="100" cy="100" r="80" stroke="silver" stroke-width="6" fill="yellow" />
|
||||
</svg>
|
||||
<h2 class="bg-primary">Terror Threats:</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">US Homeland Security Terror Threat Level:</h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="yellow" />
|
||||
</svg>
|
||||
<h4 class="bg-warning">Elevated Risk</h4>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">DEFCON (US):<br><br></h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="green" />
|
||||
</svg>
|
||||
<h4 class="bg-success">DEFCON 5</h4>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">MI5 International Terror Threat Level:</h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="orange" />
|
||||
</svg>
|
||||
<h4 class="bg-warning">Severe Risk</h4>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">US Homeland Security Terror Alerts:</h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="green" />
|
||||
</svg>
|
||||
<h4 class="bg-success">No current alerts</h4>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">Vigipirate (France):<br><br></h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="crimson" />
|
||||
<h4 class="bg-danger">State of Emergency</h4>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">Australian Terrorism Public Alert System:</h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="orange" />
|
||||
<h4 class="bg-warning">High Risk</h4>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
<h2 class="bg-primary">Other:</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h3 class="bg-primary">INFOCON (US):<br><br></h3>
|
||||
<svg height="100" width="100">
|
||||
<circle cx="50" cy="50" r="40" stroke="gray" stroke-width="3" fill="green" />
|
||||
</svg>
|
||||
<h4 class="bg-success">State normal</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
|
||||
<!-- compiled and minified Bootstrap JavaScript -->
|
||||
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
||||
<script src="/javascripts/semantic.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user