marko/test/test-project/html-templates/inline-script.marko
Patrick Steele-Idem 6b603568aa Removed unused features and renamed core custom tags/attributes
Renamed:
c-if —> if
c-var —> var
c-require —> require
c-for —> for
c-def —> def
c-invoke —> invoke
c-attrs —> attrs
c-include —> include
c-with —> with
c-for-each —> for-each

Removed:
c-replace
c-content
c-strip
c-choose
c-when
c-otherwise
2014-09-19 08:43:30 -06:00

15 lines
269 B
Plaintext

<var name="name" value="data.name"/>
<html>
<head>
<title>Optimizer: Server Includes</title>
</head>
<body>
Hello $name!
<script>
$(function() {
alert('test');
})
</script>
</body>
</html>