initial commit

This commit is contained in:
root 2019-09-10 07:59:38 +00:00
commit 442e2dd05e
10 changed files with 313 additions and 0 deletions

32
index.html Normal file
View file

@ -0,0 +1,32 @@
<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="./static/style.css">
<title>Welcome to Testing blog! — blog</title>
<body>
<header>
<h1>blog</h1>
<nav>
<ul class="nav navbar-nav">
<li class="active"><a href="./">Welcome</a></li>
<li><a href="./blog/">Blog</a></li>
<li><a href="./projects/">Projects</a></li>
<li><a href="./about/">About</a></li>
</ul>
</nav>
</header>
<div class="page">
<h2>Welcome to Testing blog!</h2>
<p>Please be aware that this is testing area.</p>
<p><img src="https://cdn.mos.cms.futurecdn.net/UpYFMoMJiXmtu7DPf8UX9U-320-80.jpg" alt=""></p>
</div>
<footer>
&copy; Copyright 2019 by ungleich.
</footer>
</body>