Skip to content

Commit

Permalink
Missed layout page for a templatepro sample
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Nov 27, 2024
1 parent 3a490be commit 7b9b28f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions samples/serversideviews_templatepro/bin/templates/_layout.tpro
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<header>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<style>
body {
padding: 20px 50px 20px 50px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

table {
font-size: 120%;
}
</style>
</header>

<body>

<div id="main" class="container">
<h1>Server Side Views Primer <small>DMVCFramework + TemplatePro</small></h1>
{{block "body"}}{{endblock}}
<div class="row_fluid">
<div class="col-sm-12">
<div style="height: 100px"></div>
</div>
</div>
<div class="row_fluid">
<div class="col-sm-8 bg-primary">
<span>Powered by DMVCFramework</span>
</div>
<div class="col-sm-4 bg-success">
<span>Server Side Views <a href="/showcase">showcase</a></span>
</div>
</div>

</div>
</body>

</html>

0 comments on commit 7b9b28f

Please sign in to comment.