forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (120 loc) · 4.78 KB
/
Copy pathindex.html
File metadata and controls
152 lines (120 loc) · 4.78 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>
SQLPad - A web app for running SQL queries and visualizing the results
</title>
<meta name="keywords" content="SQLPad, node.js, Postgres, postgresql, mysql, microsoft sql server, online sql editor">
<meta name="description" content="SQLPad is a web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, and SQL Server. Built with Node.js">
<meta name="author" content="Rick Bergfalk">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/sqlpad/css/normalize.css">
<link rel="stylesheet" href="/sqlpad/css/skeleton.css">
<link rel="stylesheet" href="/sqlpad/css/skeleton-home.css">
<link rel="shortcut icon" href="/sqlpad/images/favicon.ico">
<style>
.bgphoto {
background-image: url('/sqlpad/images/screenshots/query-editor-blur-red.jpg');
background-size: cover;
color: #fff;
min-height:400px;
}
</style>
</head>
<body class="">
<div class="container">
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item">
<a class="navbar-link" href="/sqlpad/">SQLPad</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="/sqlpad/posts">Blog</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="https://github.com/rickbergfalk/sqlpad">GitHub</a>
</li>
</ul>
</nav>
<div class="u-cf"></div>
<article>
<header>
<section class="header">
<div class="row">
<h1>Categories</h1>
</div>
</section>
</header>
<div class="docs-section">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="columns eight">
<table class="u-full-width">
<thead>
<tr>
<th>post_title</th>
<th>posted_at</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</article>
</div>
<section class="bgphoto">
<div class="container" style="padding-top: 100px;">
<div class="row">
<div class="six columns">
<div id="mc_embed_signup">
<form action="//github.us11.list-manage.com/subscribe/post?u=8314eae319da113739c8e6039&id=673653d22d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h6 class="docs-header">Get SQLPad updates in your email</h6>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address</label>
<input style="color:#000;" class="u-full-width" type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div style="position: absolute; left: -5000px;"><input type="text" name="b_8314eae319da113739c8e6039_673653d22d" tabindex="-1" value=""></div>
<div class="clear">
<input class="button-primary" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
</div>
</div>
</form>
</div>
</div>
<div class="six columns">
<h6 class="docs-header">Thank You</h6>
<p>
Special thanks to the contributors helping with the SQLPad
development, as well as the creators of all the amazing
open source libraries used to build SQLPad.
</p>
<p>
Without them this project would not be possible.
</p>
</div>
</div>
</div>
</section>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-54318769-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>