mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-15 21:32:28 +01:00
92 lines
3.8 KiB
HTML
92 lines
3.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
<html>
|
|
<head>
|
|
<link href="/css/index.css" rel="stylesheet" type="text/css">
|
|
<title>{% if fic.completed %} Finished {% else %} {% if fic.failure %} Failed {% else %} Working... {% endif %} {% endif %} - Fanfiction Downloader</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="google-site-verification" content="kCFc-G4bka_pJN6Rv8CapPBcwmq0hbAUZPkKWqRsAYU" />
|
|
{% if not fic.completed and not fic.failure %}
|
|
<meta http-equiv="refresh" content="7">
|
|
{% endif %}
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-12136939-1']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id='main'>
|
|
<h1>
|
|
<a href="/" style="text-decoration: none; color: black;">FanFiction Downloader</a>
|
|
</h1>
|
|
<div style="text-align: center">
|
|
<script type="text/javascript"><!--
|
|
google_ad_client = "ca-pub-0320924304307555";
|
|
/* Standard */
|
|
google_ad_slot = "8974025478";
|
|
google_ad_width = 468;
|
|
google_ad_height = 60;
|
|
//-->
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
</script>
|
|
</div>
|
|
|
|
<div id='urlbox'>
|
|
<div id='greeting'>
|
|
<p><a href='{{ fic.url }}'>{{ fic.url }}</a></p>
|
|
</div>
|
|
<div>
|
|
{% if fic.completed %}
|
|
<p>Your fic has finished processing and you can download it now:</p>
|
|
<p><a href="/file?id={{ fic.key }}">Download {{ fic.title }}</a>
|
|
by {{ fic.author }} ({{ fic.format }})</p>
|
|
{% if escaped_url %}
|
|
<p><a href="http://www.convertfiles.com/index.php?url={{ escaped_url }}">Convert {{ fic.title }} to other formats</a></p>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if fic.failure %}
|
|
Your fic failed to process. Please check the URL and the error message below.<br />
|
|
<div id='error'>
|
|
{{ fic.failure }}
|
|
</div>
|
|
{% else %}
|
|
<p>Not done yet. This page will periodically poll to see if your story has finished.</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
<p>Or see your personal list of <a href="/recent">previously downloaded fanfics</a>.</p>
|
|
</div>
|
|
</div>
|
|
<div style='text-align: center'>
|
|
<img src="http://code.google.com/appengine/images/appengine-silver-120x30.gif"
|
|
alt="Powered by Google App Engine" />
|
|
<br/><br/>
|
|
FanfictionLoader is a web front-end to <A href="http://code.google.com/p/fanficdownloader/">fanficdownloader</a><br/>
|
|
Copyright © Fanficdownloader team
|
|
</div>
|
|
|
|
<div style="margin-top: 1em; text-align: center'">
|
|
<script type="text/javascript"><!--
|
|
google_ad_client = "ca-pub-0320924304307555";
|
|
/* Standard */
|
|
google_ad_slot = "8974025478";
|
|
google_ad_width = 468;
|
|
google_ad_height = 60;
|
|
//-->
|
|
</script>
|
|
<script type="text/javascript"
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|