11 lines
No EOL
294 B
Text
11 lines
No EOL
294 B
Text
@page "{id}"
|
|
@model Snootalogue.Pages.Documents.ViewModel
|
|
|
|
@{
|
|
ViewData["Title"] = $"Viewing \"{Model.Document.Title}\"";
|
|
ViewData["SlimNavbar"] = true;
|
|
ViewData["NoMainPadding"] = true;
|
|
string path = $"/Content/{Model.Document.ID}.pdf";
|
|
}
|
|
|
|
<iframe id="document-viewer" src="@path"></iframe> |