Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 1.1 KB

README.md

File metadata and controls

50 lines (42 loc) · 1.1 KB

##Sample View Model

return View(new {
  Header = "Parrot",
  Description = "Something something about Parrot",
  Features = new [] {
    "Familiar syntax",
    "Extensible output",
    "Simple model binding"
  }
});

##Sample Template

doctype
html {
  head > title > "This is Parrot!"
  body {
    h1#header > @Header
    p#tagname.small > "All new Asp.Net View Engine"
    div#description.rounded-corners {
      h2 > "Features"
      ul(Features) > li > @this
    }
  }
}

##Html Output

<!DOCTYPE html>
<html>
  <head>
    <title>This is Parrot!</title>
  </head>
  <body>
    <h1 id="header">Parrot</h1>
    <p class="small" id="tagname">All new Asp.Net View Engine</p>
    <div class="rounded-corners" id="description">
        <h2>Features</h2>
        <ul>
          <li>Familiar syntax</li>
          <li>Extensible output</li>
          <li>Simple model binding</li>
        </ul>
    </div>
  </body>
</html>