contentmatcher/templates/instructions.html

60 lines
3.1 KiB
HTML

{% extends 'base.html' %}
{% block header %}
<h1>Instructions</h1>
{% endblock %}
{% block content %}
<p>
Contentmatcher is a <a href="https://gia.kompot.si/about.php">GIA</a> prototype that tries to help you engage with your content and share it with other users. It assumes that you have a heap of content that you would like to reconsider. This heap can take many forms such vast libraries of PDFs on your computer or a long lists of bookmarks.
</p>
<p>
The app will help you get through this content step by step and continue to show you your content again based on the interest you express as well present you with shared content. If you and at least one more person express a high interest in an <strong>item</strong> a match will appear on your <a href="{{ url_for('matches.index') }}">matches</a> page. There you can send them an email to talk about the <strong>item</strong> your interested in.
</p>
<p>
<h2>Some definitions:</h2>
<ul>
<li>
An <strong>item</strong> is a unit of content (like a PDF you upload).
</li>
<li>
<strong>Items</strong> are private by default but they can be shared.
</li>
<li>
A <strong>collection</strong> made up of all your private items and the items shared with you.
</li>
<li>
When you start a new session Contentmatcher will create a <strong>deck</strong>, which is a small part of the <strong>collection</strong>.
</li>
</ul>
</p>
<h2>Importing your content</h2>
<p>
For now the only way to import content is to <a href='{{ url_for('upload.index')}}'>upload</a> your PDFs. We're figuring out how to add different lists of links like browser bookmarks, liked tweets and "watch later" youtube videos.
</p>
<h2>Sessions</h2>
<p>
Going through sessions is the main activity in using Contentmatcher.
A session consists of rating and potentially shareing items in a <strong>deck</strong>. You can adjust the size of your <strong>deck</strong> in the settings.
In sessions you rate <strong>items</strong> with <mark style="color: black; background-color: #736B1E;">yes</mark>, <mark style="color: black; background-color: #ED8008;">maybe</mark>, <mark style="color: black; background-color: #ED3f1C;">no</mark> and <mark style="color: black; background-color: #BF1B1B;">delete</mark> buttons. It's weird because there is no question, maybe think of a question like: "Are you really interested in this <strong>item</strong>?"
</p>
<p>
There is also the <mark style="color: black; background-color: #D9D2C6;">share</mark> button. This will create a new <strong>item</strong> with this content for all other users, so it will appear in their decks from now on as well.
</p>
<h2>Matches</h2>
<p>
If you and at least one other user rate an item with a <mark style="color: black; background-color: #736B1E;">yes</mark> then a match will appear on your <a href="{{ url_for('match') }}">matches</a> page. There you can send a email to talk.
</p>
<h2>Feedback</h2>
<p>
If you have any questions, feedback, ideas or if you would like contribute, please contact us at <a href="mailto:gia@kompot.si">gia@kompot.si</a>.
</p>
{% endblock %}