create blogpost template for easy posting
This commit is contained in:
parent
bf21cf22d8
commit
6adcb81992
1 changed files with 39 additions and 0 deletions
39
blog/template.html
Normal file
39
blog/template.html
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/style.css">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<h1>Will Holdsworth</h1>
|
||||
<hr>
|
||||
<nav>
|
||||
<a href="/index.html">Home</a>
|
||||
|
|
||||
<a href="/projects/index.html">Projects</a>
|
||||
| Blog |
|
||||
<a href="/about.html">About</a>
|
||||
|
|
||||
<a href="/contact.html">Contact</a>
|
||||
</nav>
|
||||
<hr>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<a href="/blog/index.html">« Return to posts</a>
|
||||
<h1>Title</h1>
|
||||
<a href="#top">^ Back to top</a>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<hr>
|
||||
Copyright (C) 2025 Will Holdsworth under MPLv2
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue