TSScraper/data/indextempl.html

42 lines
1.6 KiB
HTML

<HTML>
<HEAD>
<TITLE>TS Scraper | Index</TITLE>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</HEAD>
<BODY>
<DIV data-role="page" id="pageone">
<CENTER>
<DIV data-role="header">
<H1>TS Scraper</H1>
</DIV>
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" href="#files">File Index</a>
</h4>
</div>
<div id="files" class="panel-collapse collapse">
<div class="panel-body">
{% for file in files %}
<a href="{{ file.web_path }}">{{ file.mod_path }}</a></br>
{% endfor %}
</div>
<div class="panel-footer">File Count: {{ files.__len__() }}</div>
</div>
</div>
</div>
<DIV data-role="footer">
<H2>This file was auto-generated by TS Scraper.</H2>
<H2>TS Scraper is written in Python 2.7 by Robert MacGregor.</H2>
</DIV>
</CENTER>
</DIV>
</BODY>
</HTML>