|
|
|
@ -37,7 +37,7 @@ ______ ______ ______ ______ __ ______
|
|
|
|
|
<label><input type="checkbox" name="links" value="links">Links</label>
|
|
|
|
|
</div-->
|
|
|
|
|
<div id="main">
|
|
|
|
|
<p class="mono">
|
|
|
|
|
<span class="mono">
|
|
|
|
|
POETIC SOFTWARE <br>
|
|
|
|
|
--------------- <br>
|
|
|
|
|
<br>
|
|
|
|
@ -58,6 +58,8 @@ POETIC SOFTWARE <br>
|
|
|
|
|
#+# #+# #+# #+# #+# #+# #+#+# #+#+# #+# #+# #+# #+# #+#
|
|
|
|
|
######## ######## ### ### ### ### ### ### ### ### ##########
|
|
|
|
|
</pre>
|
|
|
|
|
<label><input type="checkbox" id="showall" name="showall" value="showall">show all</label><br>
|
|
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
INTRODUCTION
|
|
|
|
|
{% for post in posts %}
|
|
|
|
@ -75,7 +77,9 @@ INTRODUCTION
|
|
|
|
|
{% for post in posts %}
|
|
|
|
|
{% if "thesis"|string() == post.category|string() %}
|
|
|
|
|
<div class="post">
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{count|length}}. {{ post.title|safe }}<p></a></div>
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{count|length}}. {{ post.title|safe }}<p></a>
|
|
|
|
|
<div class="content">{{ post.writingfield|safe }}</div></div>
|
|
|
|
|
|
|
|
|
|
{% set __ = count.append(1) %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% else %}
|
|
|
|
@ -88,7 +92,9 @@ INTRODUCTION
|
|
|
|
|
{% for post in posts %}
|
|
|
|
|
{% if "exercise"|string() == post.category|string() %}
|
|
|
|
|
<div class="post">
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{count|length}}. {{ post.title|safe }}<p></a></div>
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{count|length}}. {{ post.title|safe }}<p></a>
|
|
|
|
|
<div class="content">{{ post.writingfield|safe }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% set __ = count.append(1) %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% else %}
|
|
|
|
@ -101,7 +107,9 @@ INTRODUCTION
|
|
|
|
|
{% for post in posts %}
|
|
|
|
|
{% if "concept"|string() == post.category|string() %}
|
|
|
|
|
<div class="post">
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{ post.title|safe }}<p></a></div>
|
|
|
|
|
<a href="min/{{ post.pid }}"><p>{{ post.title|safe }}<p></a>
|
|
|
|
|
<div class="content">{{ post.writingfield|safe }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% else %}
|
|
|
|
|
<em>The Software is lacking a introduction, ask your system administrator about it.</em>
|
|
|
|
@ -109,9 +117,22 @@ INTRODUCTION
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
const checkbox = document.getElementById('showall')
|
|
|
|
|
|
|
|
|
|
checkbox.addEventListener('change', (event) => {
|
|
|
|
|
if (event.target.checked) {
|
|
|
|
|
$(".content").css({"display":"block"})
|
|
|
|
|
} else {
|
|
|
|
|
$(".content").css({"display":"none"})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|