summary refs log tree commit diff
path: root/templates/index.html
blob: 834cec961c196d43a71177397087f046f5b19563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>
this website pulls a random arXiv publication for a given category
<a href="https://git.tzlil.net/arXiv.git" title="if you're wondering why my code needs to scrape arXiv and build probability distributions see fuck you.py">source code</a>
taxonomy: <a href="https://arxiv.org/category_taxonomy">here</a>
categories:
{% for i in taxonomy %}
  <a href='{{ i }}'>{{ i }}</a>
{% endfor %}
</html>