31 lines
739 B
HTML
31 lines
739 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<style>
|
|
.prose {
|
|
font-size: var(--font-size-l);
|
|
max-width: 800px;
|
|
}
|
|
</style>
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<div class="prose">
|
|
<p>
|
|
Headliner is monitoring rss feeds of czech news websites for changes in
|
|
article headlines. Just because it might be interesting.
|
|
</p>
|
|
<p>
|
|
See <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.
|
|
</p>
|
|
<p>
|
|
If you want to access the raw data collected by this tool, you can
|
|
<a href="https://git.nolog.cz/NoLog.cz/headline-exports"
|
|
>download the full archive from our git</a
|
|
>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|