headline/view/templates/about.html

33 lines
922 B
HTML
Raw Normal View History

2023-08-16 18:52:24 +02:00
{% extends "base.html" %}
2023-08-17 10:50:02 +02:00
{% block head %}
<style>
.prose {
font-size: var(--font-size-l);
max-width: 800px;
}
</style>
{% endblock head %}
2023-08-16 18:52:24 +02:00
{% block body %}
2023-08-17 10:50:02 +02:00
<div class="container">
<div class="prose">
<p>
2023-08-16 18:52:24 +02:00
Headliner is monitoring rss feeds of czech news websites for changes in
article headlines. Just because it might be interesting.
</p>
<p>
Check out <a href="https://git.nolog.cz/mdivecky/headline">the source code</a>,
but be aware that it's not too nice. Feel free to improve it or run the tool yourself.
2023-08-16 18:52:24 +02:00
</p>
2023-08-16 18:52:24 +02:00
<p>
If you want to access the raw data collected by this tool, you can
2023-08-17 11:19:27 +02:00
<a href="https://git.nolog.cz/NoLog.cz/headline-exports"> download the full archive from our git repo.</a>
2023-08-16 18:52:24 +02:00
</p>
2023-08-17 11:19:27 +02:00
<p><a href="https://ondrej.nyv.lt/">Ondřej</a> and <a href="https://bain.cz">Bain</a> made important contribution to the project. Thank you!</p>
2023-08-16 18:52:24 +02:00
</div>
2023-08-17 10:50:02 +02:00
</div>
2023-08-16 18:52:24 +02:00
{% endblock body %}