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