HTML document, ASCII text
        
            1
            {% extends "mail.html" %} 
        
            2
            {% block content %} 
        
            3
                <h1> 
        
            4
                    <a href="{{ config.url_prefix }}{{ post.repo.route }}/forum/{{ post.id }}"> 
        
            5
                        New forum post in {{ post.repo.route }}: {{ post.subject }} 
        
            6
                    </a> 
        
            7
                </h1> 
        
            8
                <p>By {{ post.owner.username }}</p> 
        
            9
                <article> 
        
            10
                    {{ post.html | safe }} 
        
            11
                </article> 
        
            12
            {% endblock %}