| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <!-- Generated content. Do not edit. --> |
| 3 {% autoescape true %} |
| 4 <html> |
| 5 <head> |
| 6 <meta charset="utf-8"> |
| 7 <title>Credits</title> |
| 8 <style type="text/css"> |
| 9 .projects-list { margin-left: 1em; } |
| 10 .license-block { border-top: 20px solid white; } |
| 11 .project-url { font-family: monospace; } |
| 12 .license { background-color: #eeeeee; padding: 10px; } |
| 13 </style> |
| 14 </head> |
| 15 <body> |
| 16 <ul> |
| 17 {% for entry in entries %} |
| 18 <li class="projects-list"><a href="#{{ entry.toc_href }}">{{ entry.name }}</a>
</li> |
| 19 {% endfor %} |
| 20 </ul> |
| 21 <div> |
| 22 {% for entry in entries %} |
| 23 <div class="license-block"> |
| 24 <a name="{{ entry.toc_href }}"></a> |
| 25 <div><b>Library:</b> {{ entry.name }}</div> |
| 26 <div><b>Homepage:</b> <span class="project-url">{{ entry.url }}</span></div> |
| 27 <div><b>Notice:</b></div> |
| 28 <pre class="license">{{ entry.license }}</pre> |
| 29 </div> |
| 30 {% endfor %} |
| 31 </div> |
| 32 </body> |
| 33 </html> |
| 34 {% endautoescape %} |
| OLD | NEW |