-
-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Missed layout page for a templatepro sample
- Loading branch information
1 parent
3a490be
commit 7b9b28f
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
samples/serversideviews_templatepro/bin/templates/_layout.tpro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |