Add survey links to templates. Fixes #221
This commit is contained in:
parent
678721cbad
commit
3e4ba1a35f
|
|
@ -1,4 +1,13 @@
|
||||||
@page "/"
|
@page "/"
|
||||||
|
|
||||||
<h1>Hello, world!</h1>
|
<h1>Hello, world!</h1>
|
||||||
|
|
||||||
Welcome to your new app.
|
Welcome to your new app.
|
||||||
|
|
||||||
|
<div class="alert alert-survey" role="alert">
|
||||||
|
<span class="glyphicon glyphicon-ok-circle" aria-hidden="true"></span>
|
||||||
|
<strong>How is Blazor working for you?</strong>
|
||||||
|
Please take our
|
||||||
|
<a target="_blank" class="alert-link" href="https://go.microsoft.com/fwlink/?linkid=870381">brief survey</a>
|
||||||
|
and tell us what you think.
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -83,3 +83,14 @@
|
||||||
.navbar-nav > li a:focus {
|
.navbar-nav > li a:focus {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.alert-survey {
|
||||||
|
color: #6a6969;
|
||||||
|
background-color: #e8e8e8;
|
||||||
|
border-color: #d3d3d3;
|
||||||
|
margin-top: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-survey a {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,13 @@
|
||||||
@page "/"
|
@page "/"
|
||||||
|
|
||||||
<h1>Hello, world!</h1>
|
<h1>Hello, world!</h1>
|
||||||
|
|
||||||
Welcome to your new app.
|
Welcome to your new app.
|
||||||
|
|
||||||
|
<div class="alert alert-survey" role="alert">
|
||||||
|
<span class="glyphicon glyphicon-ok-circle" aria-hidden="true"></span>
|
||||||
|
<strong>How is Blazor working for you?</strong>
|
||||||
|
Please take our
|
||||||
|
<a target="_blank" class="alert-link" href="https://go.microsoft.com/fwlink/?linkid=870381">brief survey</a>
|
||||||
|
and tell us what you think.
|
||||||
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -83,3 +83,14 @@
|
||||||
.navbar-nav > li a:focus {
|
.navbar-nav > li a:focus {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.alert-survey {
|
||||||
|
color: #6a6969;
|
||||||
|
background-color: #e8e8e8;
|
||||||
|
border-color: #d3d3d3;
|
||||||
|
margin-top: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-survey a {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue