You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
5.1 KiB
HTML

<!--
______ ______ ______ ______ __ ______
/\ == \ /\ __ \ /\ ___\ /\__ _\ /\ \ /\ ___\
\ \ _-/ \ \ \/\ \ \ \ __\ \/_/\ \/ \ \ \ \ \ \____
\ \_\ \ \_____\ \ \_____\ \ \_\ \ \_\ \ \_____\
\/_/ \/_____/ \/_____/ \/_/ \/_/ \/_____/
______ ______ ______ ______ __ __ ______ ______ ______
/\ ___\ /\ __ \ /\ ___\ /\__ _\ /\ \ _ \ \ /\ __ \ /\ == \ /\ ___\
\ \___ \ \ \ \/\ \ \ \ __\ \/_/\ \/ \ \ \/ ".\ \ \ \ __ \ \ \ __< \ \ __\
\/\_____\ \ \_____\ \ \_\ \ \_\ \ \__/".~\_\ \ \_\ \_\ \ \_\ \_\ \ \_____\
\/_____/ \/_____/ \/_/ \/_/ \/_/ \/_/ \/_/\/_/ \/_/ /_/ \/_____/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Poetic Software</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="index.js"></script>
<script src="/static/notify.js"></script>
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.15.6/build/styles/default.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.15.6/build/highlight.min.js"></script>
<link rel="stylesheet" href="/static/css/style_pub.css">
</head>
<body>
<!--div id="buttons">
<label><input type="checkbox" name="getlost" value="getlost">Get Lost Mode!</label><br>
<label><input type="checkbox" name="links" value="links">Links</label>
</div-->
<div id="main">
<span class="mono">
POETIC SOFTWARE <br>
--------------- <br>
<br>
<pre>
::::::::: :::::::: :::::::::: ::::::::::: ::::::::::: ::::::::
:+: :+: :+: :+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
+#++:++#+ +#+ +:+ +#++:++# +#+ +#+ +#+
+#+ +#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+# #+#
### ######## ########## ### ########### ########
:::::::: :::::::: :::::::::: ::::::::::: ::: ::: ::: ::::::::: ::::::::::
:+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
+#++:++#++ +#+ +:+ :#::+::# +#+ +#+ +:+ +#+ +#++:++#++: +#++:++#: +#++:++#
+#+ +#+ +#+ +#+ +#+ +#+ +#+#+ +#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+#+# #+#+# #+# #+# #+# #+# #+#
######## ######## ### ### ### ### ### ### ### ### ##########
</pre>
<label><input type="checkbox" id="showall" name="showall" value="showall">show all</label><br>
<br>
INTRODUCTION
{% for post in posts %}
{% if "introduction"|string() == post.category|string() %}
<div class="post">
<p>{{ post.writingfield|safe }}<p></div>
{% endif %}
{% else %}
<em>The Software is lacking a introduction, ask your system administrator about it.</em>
{% endfor %}
<br>
THESES ON SOFTWARE
{% set count = [0] %}
{% 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 class="content">{{ post.writingfield|safe }}</div></div>
{% set __ = count.append(1) %}
{% endif %}
{% else %}
<em>The Software is lacking a introduction, ask your system administrator about it.</em>
{% endfor %}
<br>
EXERCISES IN POETIC SOFTWARE
{% set count = [0] %}
{% 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 class="content">{{ post.writingfield|safe }}</div>
</div>
{% set __ = count.append(1) %}
{% endif %}
{% else %}
<em>The Software is lacking exercises, ask your system administrator about it.</em>
{% endfor %}
<br>
TERMS AND CONCEPTS
{% 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 class="content">{{ post.writingfield|safe }}</div>
</div>
{% endif %}
{% else %}
<em>The Software is lacking a introduction, ask your system administrator about it.</em>
{% endfor %}
</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>