chromium/third_party/blink/web_tests/external/wpt/html/semantics/scripting-1/the-template-element/resources/two-templates.html

<!DOCTYPE html>
<html>
<head>
    <title>The file contains two template elements</title>
    <link rel="author" title="Aleksei Yu. Semenov" href="mailto:[email protected]">
</head>
<body>
    <template id="template1">
        <div>Hello, template</div>
    </template>

    <template id="template2">
        <div>Hello, from second template</div>
    </template>

</body>
</html>