Add signature detection in addition to markdown inclusion.

This commit is contained in:
2016-12-25 15:33:55 -05:00
parent 9cf8456d7c
commit b6cb5dff97
5 changed files with 21 additions and 3 deletions

View File

@ -14,7 +14,11 @@ layout: default
<div class="post-verify">
{% if page.md_file %}
<hr width="10%" style="margin-bottom: 1em"/>
The markdown source for this post is available here: <a href="{{page.md_file}}">{{page.md_file}}</a> <br/>
{% if page.sig_file %}
The gpg signature for the markdown source is available here: <a href="{{page.sig_file}}">{{page.sig_file}}</a> <br/>
{% endif %}
{% endif %}
</div>
</article>