Skip to content
Snippets Groups Projects
html.template 659 B
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
    "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" {% for i, ns in lodspk.ns %}xmlns:{{i}}="{{ns}}" 
    {%endfor%}version="XHTML+RDFa 1.0" xml:lang="en">
  <head>
    <title>TWC People directory</title>
    <link href="{{lodspk.baseUrl}}css/basic.css" rel="stylesheet" type="text/css" media="screen" />
  </head>
  <body>
    <h1>People</h1>
	<ul>
    {% for row in models.main %}
        <li><a href="{{row.people.value}}">{{row.name.value}} - {{row.email.value}}</a></li>
    {% endfor %}
    </ul>
  </body>
</html>