-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (35 loc) · 1.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS-CMS: A Bad Idea Or A Terrible Idea?</title>
<meta name="description" content="An attempt at flat Markdown">
<meta name="author" content="mcdwayne">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<div class="wrapper">
<div class="header">
<p class="header-links"><a href="posts/postindex.html">Posts</a></p>
</div>
<div class="menu">
<a href="https://twitter.com/mcdwayne"><i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i></a>
<a href="https://github.com/mcdwayne/csscms"><i class="fa fa-github fa-2x" aria-hidden="true"></i></a>
</div>
<div class="content">
<!-- ================================
DROP YOUR CONTENT HERE
==================================-->
<a href="posts/post-1.html">POST 1</a>
<!-- ==================================
END YOUR CONTENT HERE
=======================================-->
</div>
<div class="footer">
</div>
</div>
<!-- END OF BODY PART -->
</body>
</html>