mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
110 lines
3.5 KiB
HTML
Executable file
110 lines
3.5 KiB
HTML
Executable file
<!doctype html>
|
|
|
|
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
|
|
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
|
|
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
|
|
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
|
|
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<title>fog - {{ page.title }}</title>
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!--
|
|
<link rel="shortcut icon" href="/public/favicon.ico">
|
|
<link rel="apple-touch-icon" href="/public/apple-touch-icon.png">
|
|
-->
|
|
|
|
<link rel="stylesheet" href="/public/css/style.css?v=2">
|
|
<link rel="stylesheet" href="/public/css/fog.css?v=2">
|
|
<script src="/public/js/libs/modernizr-1.6.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="container">
|
|
<header>
|
|
<a href="/"><img src="/public/images/fog.png" title="fog" /></a>
|
|
<h1>{{ page.title }}</h1>
|
|
<dl>
|
|
<dt>version</dt><dd>vX.Y.Z</dd>
|
|
<dt>install</dt><dd><code>gem install fog</code></dd>
|
|
<dt>source</dt><dd><a href="http://github.com/geemus/fog">geemus/fog</a></dd>
|
|
</dl>
|
|
</header>
|
|
|
|
<div id="main">
|
|
|
|
{{ content }}
|
|
|
|
<h2>Services</h2>
|
|
<ul>
|
|
<li><a href="/cdn">CDN</a></li>
|
|
<li><a href="/compute">Compute</a></li>
|
|
<li><a href="/dns">DNS</a></li>
|
|
<li><a href="/storage">Storage</a></li>
|
|
{% for post in site.posts %}
|
|
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<h2>About</h2>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/about/contributing.html">Contributing</a></li>
|
|
<li><a href="/about/getting_started.html">Getting Started</a></li>
|
|
<li><a href="/about/press.html">Press</a></li>
|
|
<li><a href="/about/structure.html">Structure</a></li>
|
|
<li><a href="/about/users.html">Users</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
sponsored by
|
|
<img height="20px" src="public/images/engineyard.png" title="engineyard" />
|
|
</footer>
|
|
</div> <!-- end of #container -->
|
|
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
|
|
<script>!window.jQuery && document.write(unescape('%3Cscript src="public/js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))</script>
|
|
|
|
|
|
<!-- scripts concatenated and minified via ant build script-->
|
|
<script src="public/js/plugins.js"></script>
|
|
<script src="public/js/script.js"></script>
|
|
<!-- end concatenated and minified scripts-->
|
|
|
|
|
|
<!--[if lt IE 7 ]>
|
|
<script src="public/js/libs/dd_belatedpng.js"></script>
|
|
<script> DD_belatedPNG.fix('img, .png_bg'); </script>
|
|
<![endif]-->
|
|
|
|
<!-- yui profiler and profileviewer - remove for production -->
|
|
<script src="public/js/profiling/yahoo-profiling.min.js"></script>
|
|
<script src="public/js/profiling/config.js"></script>
|
|
<!-- end profiling code -->
|
|
|
|
|
|
<!-- change the UA-XXXXX-X to be your site's ID -->
|
|
<script>
|
|
var _gaq = [['_setAccount', 'UA-301159-7'], ['_trackPageview']];
|
|
(function(d, t) {
|
|
var g = d.createElement(t),
|
|
s = d.getElementsByTagName(t)[0];
|
|
g.async = true;
|
|
g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
s.parentNode.insertBefore(g, s);
|
|
})(document, 'script');
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|