committing before scrapping; i came to realize just how much of a bad idea it is to have this as a website app instead of a local one.

This commit is contained in:
brent s
2019-11-02 01:45:07 -04:00
parent 138d0b44a0
commit b87b147fec
17 changed files with 298 additions and 0 deletions

12
app/templates/index.html Normal file
View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}{% block title %}AIF-NG Configurator | Home{% endblock %}{% block body %}<div class="jumbotron">
<h1>AIF-NG Configurator</h1>
<p class="lead">A tool to generate XML configuration files for <a href="https://aif-ng.io/">AIF-NG</a>.</p>
</div>
<h1>What is it?</h1>
<p>This tool will let you generate configuration files for AIF-NG. I, the author of this generator and of AIF-NG,
recognize that not everyone is comfortable with writing XML from scratch &mdash; even if they use something like an IDE
with XML support (I recommend <a href="https://www.jetbrains.com/pycharm/download/#section=linux">PyCharm Community Edition</a>; it will validate your config as you go as long as you include the XSD in the header!).</p>
<p>So without further ado, head on over to the <a href="/generator.html">generator</a> or for more information on using this tool,
try the <a href="/usage.html">usage page</a>.</p>
{% endblock %}