import pandas as pd
claims = pd.DataFrame(
{
"scope": ["box45"],
"subject": ["page"],
"predicate": ["language"],
"value": ["Latin"]
}
)
import pystache
template = """
<h1>{{ title }}</h1>
<table>
{{#claims}}
<tr>
<td>{{ scope }}</td>
<td>{{ subject }}</td>
<td>{{ predicate }}</td>
<td>{{ value }}</td>
</tr>
{{/claims}}
</table>
"""