44 lines
928 B
HTML
44 lines
928 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Blog</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
|
|
<a href="/website/index.html" >Home</a>
|
|
|
|
<a href="/website/about.html" >About</a>
|
|
|
|
<a href="/website/blog.html" >Blog</a>
|
|
|
|
</nav>
|
|
<h1>Latest Posts</h1>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
<h2><a href="website//2022/09/20/jekyll_&_github.html">Jekyll_&_github</a></h2>
|
|
<p>How to create a static website with Jekyll and deploy it on GitHubPages</p>
|
|
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
<nav>
|
|
|
|
<a href="/website/terms.html" >Terms</a>
|
|
|
|
<a href="/website/privacy.html" >Privacy</a>
|
|
|
|
<a href="/website/contact.html" >Contact</a>
|
|
|
|
<a href="/website/blog.html" >Blog</a>
|
|
|
|
<a href="/website/imprint.html" >Imprint</a>
|
|
|
|
</nav>
|
|
</body>
|
|
</html> |