default.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="description" content="A collection of cross-browser utilities to go along with JSZip." />
  8. <title>{{page.title}}</title>
  9. <!-- Latest compiled and minified CSS -->
  10. <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
  11. <!-- Optional theme -->
  12. <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
  13. <!-- Latest compiled and minified JavaScript -->
  14. <!-- <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> -->
  15. <link rel="stylesheet" href="{{site.baseurl}}/documentation/css/pygments.css">
  16. <link rel="stylesheet" href="{{site.baseurl}}/documentation/css/main.css">
  17. <script type="text/javascript" src="{{site.baseurl}}/dist/jszip-utils.js"></script>
  18. <!--
  19. Mandatory in IE 6, 7, 8 and 9.
  20. -->
  21. <!--[if IE]>
  22. <script type="text/javascript" src="{{site.baseurl}}/dist/jszip-utils-ie.js"></script>
  23. <![endif]-->
  24. </head>
  25. <body>
  26. <div class="container">
  27. <div class="navbar navbar-default" role="navigation">
  28. <div class="container-fluid">
  29. <div class="navbar-header">
  30. <a class="navbar-brand" href="{{site.baseurl}}/"><strong>JS</strong>ZipUtils</a>
  31. </div>
  32. <ul class="nav navbar-nav">
  33. <li {% if page.section == "api" %}class="active"{% endif %}>
  34. <a href="{{site.baseurl}}/documentation/api.html">API</a>
  35. </li>
  36. </ul>
  37. <ul class="nav navbar-nav navbar-right">
  38. <li>
  39. <a href="https://github.com/Stuk/jszip-utils">current version : <strong>v0.1.0</strong></a>
  40. </li>
  41. </ul>
  42. </div>
  43. </div>
  44. <div class="row">
  45. <nav class="{% if page.section %}col-md-3{% endif %}">
  46. {% if page.section == "api" %}
  47. <!-- <h4>Documentation</h4> -->
  48. <ul class="nav">
  49. <li><a href="{{site.baseurl}}/documentation/api.html">JSZipUtils</a>
  50. <ul>
  51. <li><a href="{{site.baseurl}}/documentation/api/getbinarycontent.html">getBinaryContent(path, callback)</a></li>
  52. </ul>
  53. </li>
  54. </ul>
  55. {% endif %}
  56. </nav>
  57. <div class="{% if page.section %}col-md-9{% else %}col-md-12{% endif %}">
  58. <h1>{{page.title}}</h1>
  59. <!-- ===================== -->
  60. <!-- === C O N T E N T === -->
  61. <!-- ===================== -->
  62. {{content}}
  63. <!-- ===================== -->
  64. <!-- == / C O N T E N T == -->
  65. <!-- ===================== -->
  66. </div>
  67. </div>
  68. </div>
  69. <script>
  70. // FIXME find how to do that cleanly
  71. (function(){
  72. var tables = document.getElementsByTagName("table");
  73. for(var i = 0; i < tables.length; i++) {
  74. tables[i].className = "table table-condensed table-striped table-bordered";
  75. }
  76. })();
  77. </script>
  78. </body>
  79. </html>