learnlytics-go/templ/generator/test-raw-elements/template.templ
2025-03-20 12:35:13 +01:00

24 lines
422 B
Plaintext

package testrawelements
templ Example() {
<html>
<head></head>
<body>
<style><!-- Some stuff --></style>
<style>
.customClass {
border: 1px solid black;
}
</style>
<script>
$("div").marquee();
function test() {
window.open("https://example.com")
}
</script>
<h1>Hello</h1>
@templ.Raw("<div>World</div>")
</body>
</html>
}