Skip to content

Instantly share code, notes, and snippets.

@kestred
Created October 18, 2013 22:42
Show Gist options
  • Save kestred/7049327 to your computer and use it in GitHub Desktop.
Save kestred/7049327 to your computer and use it in GitHub Desktop.
Astron website prototype idea
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Astron - Distributed Server Suite</title>
<meta name="description"
content="Astron is an open-source, distributed server suite particularily well-suited for
powering MMO games. The server runs as a network of daemon processes, each containing
one or more roles. Each role handles a specific set of tasks required by the application
to distribut the workload of managing a multi-sharded application or game with many
networked objects and clients.">
<meta name="keywords" content="Astron, astrond, server, mmo, games, application platform" />
<meta name="author" lang="en" content="kestred" />
<!-- External Stylesheets -->
<link href="http://netdna.bootstrapcdn.com/bootswatch/3.0.0/readable/bootstrap.min.css" rel="stylesheet" />
<!-- Page Style -->
<style type="text/css">
.jumbotron { background-color: #E9E9E9; font-size: 22.5px; }
@media (min-width: 768px) {
.container { max-width: 730px; }
}
</style>
</head>
<body>
<div class="container">
<div class="navbar navbar-default navbar-static-top">
<div class="navbar-brand"><span class="text-muted">Astron</span></div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav pull-right">
<li class="active"><a href="#">Top</a></li>
<li><a href="#start">Getting Started</a></li>
<li><a href="#docs">Documentation</a></li>
<li><a href="#tuts">Tutorials</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
<h1>Astron<span class="text-primary">d</span></h1>
<p>A Server Technology for Realtime Object Networking</p>
<iframe src="http://ghbtns.com/github-btn.html?user=Astron&repo=Astron&type=watch&count=true&size=large"
allowtransparency="true" frameborder="0" scrolling="0" width="140" height="30"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=Astron&repo=Astron&type=fork&count=true&size=large"
allowtransparency="true" frameborder="0" scrolling="0" width="140" height="30"></iframe>
</div>
<p>
Astron is an open-source, distributed server suite particularily well-suited for powering
MMO games. The server runs as a network of daemon processes, each containing one or more roles.
Each role handles a specific set of tasks required by the application to distribute the workload
of managing a multi-sharded application or game with many networked objects and clients.
</p>
<h3 id="start">Getting Started</h3>
<h3 id="docs">Documentation</h3>
<h3 id="tuts">Tutorials</h3>
</div>
<!-- External Scripts -->
<script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment