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