-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate_html.txt
73 lines (69 loc) · 2.25 KB
/
template_html.txt
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
66
67
68
69
70
71
72
73
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>
HTTP Code: __PAGE_TITLE_TEXT__
</title>
<link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen" type="text/css">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">HTTP Code</a>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li><a href="/about">About</a></li>
</ul>
<form class="navbar-form navbar-left" action="/go">
<input type="text" name="code" class="form-control col-lg-8" placeholder="search codes (e.g. 203)">
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/tternes/httpcode">Fork on GitHub</a></li>
<li><a href="__PAGE_SPONSOR_URL__" target="_blank">__PAGE_SPONSOR_TITLE__</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="page-header" id="banner">
<div class="row">
<div class="col-sm-7">
<h1>__PAGE_HEADING_TEXT__</h1>
<p class="lead">__PAGE_LEAD_TEXT__</p>
<pre><small>__PAGE_PRE_TEXT__</small></pre>
</div>
<!-- sidebar helpers -->
<div class="col-sm-5">
<h3>Quick Reference</h3>
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title">With cURL:<h4>
</div>
<div class="panel-body">
<pre>~$ curl http://httpcode.info/__PAGE_STATUS_CODE__</pre>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h4 class="panel-title"><h4>Shell Command<h4>
</div>
<div class="panel-body">
<pre>~$ http __PAGE_STATUS_CODE__</pre>
<h6 class="text-muted">Add this to your shell's .rc file:</h6>
<pre>function http(){
curl http://httpcode.info/$1;
}</pre>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10">
<p class="text-muted">Copyright (c) 2014 <a href="http://www.bluetoo.co">Thaddeus Ternes</a>. Powered by the <a href="http://bootswatch.com/yeti/">Yeti</a> theme.</p>
</div>
</div>
</body>
</html>