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.

43 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
<title>Workinon</title>
</head>
<body>
<h1>Workinon</h1>
<div>
A small and shared archive to keep track of how ideas change during work, research and development. <br/>
A call to share what we are doing with others, while we are doing it. <br/>
In a way that doesn't focus on results, but on process and sharing.
</div>
<form action="add" method="POST">
<h3>
What's new?
</h3>
<input type="text" name="name" placeholder="Project" />
<textarea name="update" placeholder="Tell us more" ></textarea>
<input type="submit" value="Archive" />
</form>
<h2>Current archive</h2>
<dl>
{% for key, value in projects | dictsort %}
<dt>{{key}}</dt>
<dd>
{%for step in value%}
{{step['when']}}, {{step['what']}} <br/>
{%endfor%}
</dd>
{% endfor %}
</dl>
</body>
</html>