initial commit
This commit is contained in:
commit
442e2dd05e
10 changed files with 313 additions and 0 deletions
BIN
.lektor/buildstate
Normal file
BIN
.lektor/buildstate
Normal file
Binary file not shown.
32
about/index.html
Normal file
32
about/index.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../static/style.css">
|
||||||
|
<title>About this Website — blog</title>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>blog</h1>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="../">Welcome</a></li>
|
||||||
|
|
||||||
|
<li><a href="../blog/">Blog</a></li>
|
||||||
|
|
||||||
|
<li><a href="../projects/">Projects</a></li>
|
||||||
|
|
||||||
|
<li class="active"><a href="../about/">About</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<div class="page">
|
||||||
|
|
||||||
|
<h2>About this Website</h2>
|
||||||
|
<p>This is a website that was made with the Lektor quickstart.</p>
|
||||||
|
<p>And it does not contain a lot of information.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
44
blog/first-post/index.html
Normal file
44
blog/first-post/index.html
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../../static/style.css">
|
||||||
|
<title>Hello Website — blog</title>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>blog</h1>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="../../">Welcome</a></li>
|
||||||
|
|
||||||
|
<li class="active"><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">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-post">
|
||||||
|
|
||||||
|
<h2>Hello Website</h2>
|
||||||
|
|
||||||
|
<p class="meta">
|
||||||
|
written by
|
||||||
|
|
||||||
|
ungleich
|
||||||
|
|
||||||
|
on 2019-09-09
|
||||||
|
</p>
|
||||||
|
<p>This is an example blog post. Not much here but that's not the point :)</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
79
blog/index.html
Normal file
79
blog/index.html
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../static/style.css">
|
||||||
|
<title>ungleich testing blog — blog</title>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>blog</h1>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="../">Welcome</a></li>
|
||||||
|
|
||||||
|
<li class="active"><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">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-post">
|
||||||
|
|
||||||
|
<h2><a href="../blog/first-post/">Hello Website</a></h2>
|
||||||
|
|
||||||
|
<p class="meta">
|
||||||
|
written by
|
||||||
|
|
||||||
|
ungleich
|
||||||
|
|
||||||
|
on 2019-09-09
|
||||||
|
</p>
|
||||||
|
<p>This is an example blog post. Not much here but that's not the point :)</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-post">
|
||||||
|
|
||||||
|
<h2><a href="../blog/nicos-first-test-page/">Nico's first test page</a></h2>
|
||||||
|
|
||||||
|
<p class="meta">
|
||||||
|
written by
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
on
|
||||||
|
</p>
|
||||||
|
<p>test texts</p>
|
||||||
|
<p><img src="../blog/nicos-first-test-page/foo.png" alt="alt text"></p>
|
||||||
|
<p>{% for image in this.attachments.images %}
|
||||||
|
<div class="image"><img src="{{ image|url }}"></div>
|
||||||
|
{% endfor %}</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pagination">
|
||||||
|
|
||||||
|
<span class="disabled">« Previous</span>
|
||||||
|
|
||||||
|
| 1 |
|
||||||
|
|
||||||
|
<span class="disabled">Next »</span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
BIN
blog/nicos-first-test-page/foo.png
Normal file
BIN
blog/nicos-first-test-page/foo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 161 KiB |
48
blog/nicos-first-test-page/index.html
Normal file
48
blog/nicos-first-test-page/index.html
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../../static/style.css">
|
||||||
|
<title>Nico's first test page — blog</title>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>blog</h1>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="../../">Welcome</a></li>
|
||||||
|
|
||||||
|
<li class="active"><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">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="blog-post">
|
||||||
|
|
||||||
|
<h2>Nico's first test page</h2>
|
||||||
|
|
||||||
|
<p class="meta">
|
||||||
|
written by
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
on
|
||||||
|
</p>
|
||||||
|
<p>test texts</p>
|
||||||
|
<p><img src="../../blog/nicos-first-test-page/foo.png" alt="alt text"></p>
|
||||||
|
<p>{% for image in this.attachments.images %}
|
||||||
|
<div class="image"><img src="{{ image|url }}"></div>
|
||||||
|
{% endfor %}</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
BIN
blog/nicos-first-test-page/wireguard-tunnel.jpg
Normal file
BIN
blog/nicos-first-test-page/wireguard-tunnel.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 367 KiB |
32
index.html
Normal file
32
index.html
Normal 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>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
36
projects/index.html
Normal file
36
projects/index.html
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<!doctype html>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<link rel="stylesheet" href="../static/style.css">
|
||||||
|
<title>Projects — blog</title>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>blog</h1>
|
||||||
|
<nav>
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="../">Welcome</a></li>
|
||||||
|
|
||||||
|
<li><a href="../blog/">Blog</a></li>
|
||||||
|
|
||||||
|
<li class="active"><a href="../projects/">Projects</a></li>
|
||||||
|
|
||||||
|
<li><a href="../about/">About</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<div class="page">
|
||||||
|
|
||||||
|
<h2>Projects</h2>
|
||||||
|
<p>This is a list of the projects:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Project 1</li>
|
||||||
|
<li>Project 2</li>
|
||||||
|
<li>Project 3</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
© Copyright 2019 by ungleich.
|
||||||
|
</footer>
|
||||||
|
</body>
|
42
static/style.css
Normal file
42
static/style.css
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
body {
|
||||||
|
font-family: 'Verdana', sans-serif;
|
||||||
|
margin: 50px 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #2a99b6;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #33bbdf;
|
||||||
|
}
|
||||||
|
|
||||||
|
header, footer, div.page {
|
||||||
|
width: 760px;
|
||||||
|
margin: 0 auto;
|
||||||
|
background: #daeef3;
|
||||||
|
padding: 20px 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header h1 {
|
||||||
|
color: #169bbd;
|
||||||
|
margin: 0;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 42px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header nav ul {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header nav ul li {
|
||||||
|
display: inline;
|
||||||
|
margin: 0 8px 0 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.page {
|
||||||
|
background: #f1fbfe;
|
||||||
|
}
|
Loading…
Reference in a new issue