/comicstreamerlib/templates/about.html

https://github.com/sebdelsol/ComicStreamer · HTML · 84 lines · 73 code · 11 blank · 0 comment · 0 complexity · 37fa1a35709ef97257c6bdad496ae19f MD5 · raw file

  1. <!DOCTYPE html>
  2. {% set title = "ComicStreamer: About" %}
  3. <html>
  4. <head>
  5. <meta charset="utf8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  9. <link rel="icon" href="/favicon.ico" />
  10. <title>{{title}}</title>
  11. <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
  12. <style type="text/css">
  13. @import "{{ static_url('comicstreamer.css') }}";
  14. </style>
  15. </head>
  16. <body>
  17. <div id="header">
  18. {% include header.html %}
  19. </div>
  20. <div id=content>
  21. <main>
  22. <header><h3>ComicStreamer {{version}}</h3></header>
  23. <summary>A comic file media server</summary>
  24. <br>
  25. <div> Project hosted at GitHub: <a href="https://github.com/beville/ComicStreamer">https://github.com/beville/ComicStreamer</a></div>
  26. <p></p>
  27. <details>
  28. <summary>Copyright 2014 Anthony Beville</summary>
  29. <pre>
  30. Licensed under the Apache License, Version 2.0 (the "License");
  31. you may not use this file except in compliance with the License.
  32. You may obtain a copy of the License at
  33. http://www.apache.org/licenses/LICENSE-2.0
  34. Unless required by applicable law or agreed to in writing, software
  35. distributed under the License is distributed on an "AS IS" BASIS,
  36. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  37. See the License for the specific language governing permissions and
  38. limitations under the License.
  39. </pre>
  40. </details>
  41. <p></p>
  42. <article>
  43. <div>ComicStreamer uses the following packages/projects/products:</div>
  44. <br>
  45. <div>Server-side:</div>
  46. <ul>
  47. <li><a href="https://www.python.org" >Python</a></li>
  48. <li><a href="http://www.sqlalchemy.org/" >SQLAlchemy</a></li>
  49. <li><a href="http://www.tornadoweb.org" >Tornado</a></li>
  50. <li><a href="https://github.com/python-imaging/Pillow" >Pillow (PIL fork)</a></li>
  51. <li><a href="http://pythonhosted.org//watchdog/" >Watchdog</a></li>
  52. <li><a href="https://labix.org/python-dateutil" >Dateutil</a></li>
  53. <li><a href="http://www.voidspace.org.uk/python/configobj.html" >ConfigObj</a></li>
  54. <li><a href="http://code.google.com/p/comictagger/" >ComicTagger</a></li>
  55. <li><a href="http://www.rarlab.com/" >RARLAB's UnRAR for Mac OSX and UnRAR.dll for Windows</a></li>
  56. <li><a href="https://code.google.com/p/py-unrar2/" >PyUnRAR2</a></li>
  57. <li><a href="https://github.com/jaredks/rumps" >rumps</a></li>
  58. <li><a href="https://code.google.com/p/pybonjour/" >pybonjour</a></li>
  59. </ul>
  60. <div>Client-side:</div>
  61. <ul>
  62. <li><a href="http://www.dynatable.com/" >Dynatable</a></li>
  63. <li><a href="http://qtip2.com/" >qTip2</a></li>
  64. <li><a href="https://github.com/balaclark/HTML5-Comic-Book-Reader" >HTML5 Comic Book Reader</a></li>
  65. </ul>
  66. <article>
  67. </main>
  68. </div>
  69. <div id=navigation>
  70. {% include menu.html %}
  71. </div>
  72. </body>
  73. </html>