-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathresult.tpl
64 lines (52 loc) · 2.15 KB
/
result.tpl
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Termination of Transfer</title>
<style>
body {
font-family: sans-serif;
}
th {
text-align: left;
}
</style>
</head>
<body>
<div class="container">
<h2 style="align=center">Termination of Transfer Information Sheet<br>
Creative Commons and Authors Alliance</h2>
<hr class="span12">
<p>This is an information sheet generated by the Termination of Transfer tool developed by Creative Commons and Authors Alliance (last reviewed October 5, 2017). The information provided here is intended solely for educational purposes and does not constitute legal advice. Only a licensed attorney can properly evaluate the circumstances specific to each copyrighted work and determine whether a transfer of copyright is terminable.</p>
<p>If you believe that you may have a right to terminate a transfer of copyright, you should consult an attorney. Neither Authors Alliance nor Creative Commons provide legal advice, and your use of the Termination of Transfer Tool does not create an attorney-client relationship.</p>
<p>For more information, check out the FAQ at <a href="https://rightsback.org/faq/">https://rightsback.org/faq/</a> .</p>
<p><b>Information Sheet Date:</b> {$date}</p>
<h3>Results</h3>
<h4>{$conclusion_title}<br>
{$conclusion_subtitle}</h4>
<p>{$conclusion_description}</p>
{if $flags}<h3>Flags</h3>{/if}
{foreach $flags as $flag}
<h4>{$flag[0]}</h4>
<p>{$flag[1]}</p>
{/foreach}
<div>
{if $details}
<h3>Details</h3>
<table style="width: 50%">
<tbody>
{/if}
{foreach $details as $detail}
<tr style="background-color: #eee"><th scope="row">{$detail.key}</th>
<td>{$detail.value}</td></tr>
{/foreach}
{if $details}
</tbody>
</table>
{/if}
</div>
</div>
</body>
</html>