Rework of some texts. Prepartions for implementation of the blog engine.
This commit is contained in:
parent
dd7260eab1
commit
2f2b9b4f21
15 changed files with 209 additions and 109 deletions
|
@ -29,25 +29,31 @@
|
|||
<span class="centered no-overflow">==============================================================================================</span>
|
||||
</nav>
|
||||
<div id="blog">
|
||||
<h2>Lucia's Blog</h2>
|
||||
<span class="centered no-overflow horizontal_divider">======================================================================================</span>
|
||||
<p class="flowing-text">Under construction. We'll get there someday.</p>
|
||||
{% for blog_entry in blog_entries %}
|
||||
<div class="blog-entry">
|
||||
<h3>{{ blog_entry.title }}</h3>
|
||||
<p>{{ blog_entry.date}} by {{ blog_entry.author }}</p>
|
||||
<div class="blog-text">
|
||||
{{ blog_entry.text }}
|
||||
</div>
|
||||
<h1>lucia's blog overview</h1>
|
||||
<div class="overview">
|
||||
<div class="entries">
|
||||
<h2>entries</h2>
|
||||
<ul>
|
||||
{% for entry in blog_data %}
|
||||
<li>{% if entry.date %}{{entry.date}}{% else %}date missing{% endif %} - <a href="{{entry.href}}">{{entry.heading}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<span class="centered no-overflow horizontal_divider">======================================================================================</span>
|
||||
{% endfor %}
|
||||
<div class="tags">
|
||||
{% if tag_occurences %}
|
||||
<h2>tags</h2>
|
||||
<ul>
|
||||
{% for tag, occurences in tag_occurences.items() %}
|
||||
<li><a href="tags/{{tag}}.html">{{tag}}</a> {{occurences|count()}}</li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<span class="centered no-overflow horizontal_divider">======================================================================================</span>
|
||||
<div class="flex-row">
|
||||
<p class="footer-links"><a href="legal_notice.html"> legal notice </a>|<a href="licenses.html"> open source licenses </a>| latest update: {{ date }} </p>
|
||||
</div>
|
||||
<div class="footer-row"> <a href="legal_notice.html">legal notice</a> <span class="vertical-divider-footer">|</span> <a href="licenses.html">open source licenses</a> <span class="vertical-divider-footer">|</span> <span class="update-date">latest update: {{ date }}<span> </div>
|
||||
<pre class="flags" aria-label="Trans flag and bi flag">
|
||||
<span class="blue">==============</span> | <span class="pink">==============</span>
|
||||
<span class="lightpink">==============</span> | <span class="pink">==============</span>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue