| 1 |
@inherits LayoutComponentBase |
| 2 |
|
| 3 |
@* /git is laid out to be scanned, not read, so it does not use MainLayout: no logo, no 80ch |
| 4 |
measure, and a status bar instead of a header. git.css is linked here rather than in App.razor |
| 5 |
because it overrides app.css down to the base — it has no business on the rest of the site. *@ |
| 6 |
|
| 7 |
<HeadContent> |
| 8 |
<link rel="stylesheet" href="@Assets["git.css"]"/> |
| 9 |
</HeadContent> |
| 10 |
|
| 11 |
<div class="git"> |
| 12 |
@Body |
| 13 |
|
| 14 |
<footer class="git-foot"> |
| 15 |
<span><a href="/">mb.bes.is</a></span> |
| 16 |
<span>clone over ssh, browse over http</span> |
| 17 |
</footer> |
| 18 |
</div> |