Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 commit.html

View raw Download
text/html • 449 B
HTML document, ASCII text
        
            
1
{% extends "mail.html" %}
2
{% block content %}
3
<h1>New commit in {{ repo }}</h1>
4
<p>
5
Commited by <a href="/{{ commit.owner.username }}">{{ commit.owner.username }}</a>
6
</p>
7
<h2>
8
<a href="{{ repo + '/commit/' + commit.sha }}">
9
{{ commit.message | split("\n\n", 1) | first | markdown }}
10
</a>
11
</h2>
12
<p>
13
{{ commit.message | split("\n\n", 1) | last | markdown }}
14
</p>
15
{% endblock %}
16