initial commit
This commit is contained in:
commit
442e2dd05e
10 changed files with 313 additions and 0 deletions
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue