-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Google Sheets CMS</title>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<img src="img/google-sheets-logo.png" alt="logo for google sheets">
<h1>Generic Blog</h1>
</header>
<main>
<div class="information">
This is an example of a frontend for a blog CMS built using Google Sheets, Google Forms and Google Apps Script which was published as a <a href="https://medium.com/p/c2eab3fb0b2b">Medium article</a>. The blog is designed as a single page application with pagination and category filtering.
</div>
<nav id="filter"></nav>
<div id="container"></div>
<div id="notice"></div>
</main>
<footer>
<p>These blog posts are from a Google Sheets backend</p>
<a href="https://medium.com/p/c2eab3fb0b2b">Read the article on Medium</a>
</footer>
<script src="js/main.js"></script>
<script>
document.addEventListener('DOMContentLoaded', app.init);
</script>
</body>
</html>