c3stream/Pages/Index.cshtml

17 lines
552 B
Plaintext
Raw Normal View History

2020-01-03 15:10:06 +01:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home";
2020-12-28 05:04:01 +01:00
c3stream.UpdateCookie(Request, Response, "/");
2020-01-03 15:10:06 +01:00
}
<div style="text-align: center">
<h1>Welcome to c3stream!</h1>
Your bookmark link:<br/>
2020-12-28 05:18:45 +01:00
<code onclick="copyToClipboard(this)">https://@Request.Host.Value?bookmark=@Request.Cookies["bookmark"]</code><br/><br/>
2020-01-03 15:10:06 +01:00
<div class="btn-group">
2020-01-04 14:23:52 +01:00
@foreach (var conf in c3stream.Conferences) {
2020-12-28 05:10:55 +01:00
<a role="button" class="btn btn-primary" href="/Conference?c=@conf.Acronym">@conf.Acronym</a>
2020-01-04 14:23:52 +01:00
}
2020-01-03 15:10:06 +01:00
</div>
</div>