Blame view

base.html 183 Bytes
aa7b4bd25   Ryan Glover   Initial commit.
1
2
3
4
5
6
7
8
9
10
11
12
13
  <head>
    <title>base</title>
  </head>
  
  <body>
    {{> hello}}
  </body>
  
  <template name="hello">
    <h1>Hello World!</h1>
    {{greeting}}
    <input type="button" value="Click" />
  </template>