1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
<!doctype html>
<base href="{{ site.baseurl }}" />
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{ page.title }}</title>
<meta content="width=600" name="viewport" />
<meta content="all" name="robots" />
<link
href="http://fonts.googleapis.com/css?family=Lato:light,regular,regularitalic,lightitalic,bold&v1"
media="all"
rel="stylesheet"
type="text/css"
/>
<link
href="http://fonts.googleapis.com/css?family=Droid+Sans+Mono"
media="all"
rel="stylesheet"
type="text/css"
/>
<link
href="/css/screen.css"
media="screen"
rel="stylesheet"
type="text/css"
/>
<link
href="/css/syntax.css"
media="screen"
rel="stylesheet"
type="text/css"
/>
<link href="/favicon.png" rel="icon" type="image/png" />
</head>
<body>
<header>
<a href="http://git.io/rq"
><img
class="nomargin"
style="position: absolute; top: 0; right: 0; border: 0"
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_red_aa0000.png"
alt="Fork me on GitHub"
/></a>
<ul class="inline">
{% for link in site.navigation %}
<li><a href="{{ link.url }}">{{ link.text }}</a></li>
{% endfor %}
</ul>
</header>
<section class="container">{{ content }}</section>
<footer>
<p>
RQ is maintained by <a href="https://stamps.id">Stamps</a>, an Indonesian CRM company.
</p>
<p>
It is open sourced under the terms of the <a href="https://raw.github.com/nvie/rq/master/LICENSE">BSD license</a>.
</p>
</footer>
{% include forward.html %} {% include ga_tracking.html %}
</body>
</html>
|