mirror of
https://github.com/Queercon/QC14-Badge-Webview.git
synced 2025-01-30 16:32:46 -08:00
30 lines
466 B
Plaintext
30 lines
466 B
Plaintext
@{
|
|
|
|
bool refresh = Convert.ToBoolean(ViewData["refresh"]);
|
|
|
|
}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>QC Badge - @ViewData["Title"]</title>
|
|
<link rel="stylesheet" type="text/css" href="~/css/site.css">
|
|
@if (refresh)
|
|
{
|
|
|
|
<meta http-equiv="refresh" content="30" />
|
|
|
|
}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@RenderBody()
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|