-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (71 loc) · 3.32 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SQLite Weekly Newsletter</title>
<meta name="description" content="Weekly SQLite news, articles and extensions.">
<link rel="stylesheet" href="assets/style.css">
<link rel="icon" href="assets/favicon/favicon.ico" sizes="any">
<link rel="icon" href="assets/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="assets/favicon/apple-touch-icon.png">
<link rel="manifest" href="assets/favicon/manifest.json">
<meta name=author content="Anton Zhiyanov">
<meta property="og:type" content="article">
<meta property="og:title" content="SQLite Weekly">
<meta property="og:description" content="Weekly SQLite news, articles and extensions.">
<meta property="og:url" content="https://antonz.org/sqlite-weekly/">
<meta property="og:image" content="https://antonz.org/sqlite-weekly/assets/cover.png">
<meta name=twitter:card content="summary_large_image">
<meta name=twitter:title content="SQLite Weekly">
<meta name=twitter:description content="Weekly SQLite news, articles and extensions.">
<meta name=twitter:url content="https://antonz.org/sqlite-weekly/">
<meta name=twitter:image content="https://antonz.org/sqlite-weekly/assets/cover.png">
</head>
<body class="container">
<section class="storey">
<h1>
<span class="label">SQLite Weekly</span><br>
Get weekly SQLite news, articles and extensions ✨
</h1>
<pre id="query"
class="query"><code>select * from sqlite_weekly limit 10;</code> <button id="query-exec" class="query-exec">run</button></pre>
<ul id="query-result" class="query-result hidden"></ul>
<p>
Every week I publish important news, notable articles, handy extensions,
tricky questions, useful code samples and other awesome SQLite-related stuff.
</p>
<p>
<a href="#how">Watch the GitHub repo</a> to get an email when the next issue is published.
</p>
<p class="links">
<span>
<a class="button" href="https://github.com/nalgeon/sqlite-weekly">Watch the repo</a>
</span>
<span>
<a href="https://github.com/nalgeon/sqlite-weekly/releases/latest">★ Latest issue</a>
</span>
<span>
<a href="https://twitter.com/ohmypy">Twitter</a>
</span>
<span>
<a href="https://github.com/nalgeon/sqlite-weekly/releases.atom">RSS</a>
</span>
</p>
<div id="how" class="hidden">
<p><strong>How to watch the repo on GitHub</strong></p>
<p>Click the <em>Watch</em> button:</p>
<p><img src="assets/watch-3.png" style="width: 360px;"></p>
<p>
Make sure to choose <em>Custom > Releases</a></em>
in the <em>Notifications</em> dropdown:
</p>
<div class="columns-2">
<p><img alt="Watch - Custom" src="assets/watch-1.jpg"></p>
<p><img alt="Custom - Releases" src="assets/watch-2.jpg"></p>
</div>
</div>
</section>
<script type="module" src="assets/app.js"></script>
</body>
</html>