files/index.tmpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{{ define "index" }}
{{ template "head" . }}
{{ template "nav" . }}
<p>
vore.website is a minimal web-based rss/atom feed reader.
- subscribe to feeds
- view posts chronologically
- save stuff that interests you
no unread indicators, no choresome tagging system - no bullshit.
vore.website is free for anyone to use,
and will never be turned into a vehicle for profit.
<3 <a href="https://j3s.sh">j3s</a>
===CHANGELOG===
2025-02
- archive.is -> archive.org
- make save async
2024-04-29
i have save support & reworked the UI a little
vore "saves" work like so:
- you click save
- the post title + link are saved to db
- the post is archived via archive.is
- the archive link is saved to the db
this way, anything that you save _should_ be
available basically indefinitely.
i wanted a way to save nice posts & prevent link
rot - the vore save feature is a convenient way
to do that.
2024-04-20
forest prompted me to dig into why vore's performance
was so shitty - i dug in & uncovered an infinite loop
bug in the rss library i was using! the bug has been
reported & squashed
everything should be fast again!
2024-01-21
hey ya'll, sorry for that outage!
i was on vacation & when i got back,
work was on fire. this is the first
actually free moment i've had for awhile.
i'm so happy that so many of you use
this website, i feel very grateful for
your presence.
</p>
{{ template "tail" . }}
{{ end }}