aboutsummaryrefslogtreecommitdiff
path: root/source/templates/plain_text.html
blob: 3076e5bbcc3354f728aec1eff0e5745ce2bd7a70 (plain)
1
2
3
4
5
6
7
8
9
10
## plain_text.html
<%inherit file="base.html"/>
<div class="left inner">
    <h1><i>${article_title}</i> from <a href="/articles/%s">${feed_title}</a></h1><br />
    ${description}
    <hr />
    <p>This software is under GPLv3 license. You are welcome to copy, modify or
    redistribute the source code according to the
    <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p>
</div>
bgstack15