28 lines
924 B
HTML
28 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Blog Post</title> <!-- If you leave title as "Blog Post", it will automatically be updated to the post title -->
|
|
<link rel="icon" href="../images/favicon.png" type="image/x-icon"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="UTF-8">
|
|
<link href="../style/style.css" rel="stylesheet" type="text/css" media="all">
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">...</div>
|
|
<div id="content">
|
|
<h1 id="postTitleH1"></h1>
|
|
<h4 id="postDate"></h4>
|
|
|
|
<p>Ready to write? Replace this text with your first paragraph!</p>
|
|
|
|
|
|
<div id="nextprev"></div>
|
|
</div> <!-- end of div id="content" -->
|
|
<div id="footer"></div>
|
|
</div> <!-- end of div id="container" -->
|
|
<!-- Here's the link to our JavaScript! -->
|
|
<script src="../script.js"></script>
|
|
</body>
|
|
</html>
|