29 lines
837 B
Plaintext
29 lines
837 B
Plaintext
@using RazorLight
|
|
@inherits TemplatePage<Elwig.Documents.Document>
|
|
@model Elwig.Documents.Document
|
|
<!DOCTYPE html>
|
|
<html lang="de-AT">
|
|
<head>
|
|
<title>@Model.Title</title>
|
|
<meta name="author" value="@Model.Author"/>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="stylesheet" href="file:///@Raw(Model.DocumentsPath)\Document.css" />
|
|
<link rel="stylesheet" href="file:///@Raw(Model.DocumentsPath)\Document.Page.css" />
|
|
<link rel="stylesheet" href="file:///@Raw(Model.DocumentsPath)\Document.Table.css" />
|
|
@if (Model.IsDoublePaged) {
|
|
<style>
|
|
@@page :left {
|
|
margin: 25mm 25mm 25mm 20mm;
|
|
}
|
|
</style>
|
|
}
|
|
</head>
|
|
<body>
|
|
<header>@Raw(Model.Header)</header>
|
|
<div class="spacing"></div>
|
|
<div class="main-wrapper">
|
|
@RenderBody()
|
|
</div>
|
|
</body>
|
|
</html>
|