wayver's git archive


a simple self-hosted git server
git clone https://git.wayver.dev/bile

templates/refs.xml@f4279bc2ca927f6f651a20c5f0e7b5ebf76cc3a4

raw
Date Commit Message Author Files + -
2026-02-17 21:07 initial mvp wayverd 74 10800 0
...

1<?xml version="1.0" encoding="UTF-8"?>
2<rss version="2.0">
3  <channel>
4    <title>{{repo|repo_name}} tags</title>
5    <link>{{base_url}}/refs#tags</link>
6    <description>
7      Tags of the repository {{repo|repo_name}}:
8      &lt;p&gt;{{repo|description}}&lt;/p&gt;
9    </description>
10    <ttl>30</ttl>
11    <generator>bile</generator>
12    <lastBuildDate>{{repo|last_modified|format_datetime("%a, %e %b %Y %T %z")}}</lastBuildDate>
13    <managingEditor>{{repo|repo_owner}}</managingEditor>
14    <docs>https://www.rssboard.org/rss-specification</docs>
15    {% for tag in tags %}
16      <item>
17        <title>{{tag.tag}}</title>
18        <link>{{base_url}}/{{tag.link}}</link>
19        <guid isPermaLink="true">{{base_url}}/{{tag.link}}</guid>
20        <description>&lt;pre&gt;{{tag.message}}&lt;/pre&gt;</description>
21        <author>{{tag.signature.email().unwrap_or("")}}</author>
22        <pubDate>{{tag.signature.when()|format_datetime("%a, %e %b %Y %T %z")}}</pubDate>
23      </item>
24    {% endfor %}
25  </channel>
26</rss>