summary refs log tree commit diff
path: root/templates/index.html
blob: 87e164cc29487a4eedea074e518f88a981c86c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html lang="en">
<title>arXiv randomizer</title>
<style>
@media (prefers-color-scheme: dark) {
    body { background-color: #121212; color: #d4d4d4; }
    a { color: #7878ff; }
    a:visited { color: #6464fa; }
}
</style>
<pre>
all possible categories <a href="https://arxiv.org/category_taxonomy">here</a>
examples:
{% for i in taxonomy %}
  <a href='{{ i }}'>{{ i }}</a>
{% endfor %}
</html>