-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.htm
42 lines (36 loc) · 1.39 KB
/
index.htm
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
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<title>A really simple blog</title>
</head>
<body>
<div class="container">
<div class="info">
Made by <a href="http://github.com/daviduzondu">David Uzondu</a> ● <a
href="https://github.com/daviduzondu/reallysimpleblog">Fork it on Github</a>
● <a
href="https://dev.to/daviduzondu/building-a-really-simple-blog-with-google-sheets-as-the-database-4db4">Dev.to
tutorial</a>
● <a href="https://twitter.com/">Follow me on Twitter</a>
</div>
<header>
<h1>The Simple Blog <p class="tagline">With Database powered by Google Sheets</p>
</h1>
<div class="navigation">
<a class="prev disabled" onclick="goToPrevious()"><<previous</a>
<a class="next disabled" onclick="goToNext()">next>> </a>
</div>
</header>
<div class="app">
<div class="loading"> Loading... Please Wait</div>
<div class="title"> </div>
<div class="by"> </div>
<div class="content"> </div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>