1
0

Refactoring 1

This commit is contained in:
Michael Gordeev
2019-12-09 21:14:09 +03:00
parent 7f57d9cc95
commit 53e95afa2d
115 changed files with 934 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>CV print preview page - XFox111.NET</title>
<link rel="shortcut icon" href="~/images/favicon.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="~/css/Style.css" />
<style type="text/css">
body { margin: 0px; }
</style>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<partial name="~/Views/CV/CVContent.cshtml" />
@if (!(bool)ViewData["pdfPreview"])
{
<style type="text/css">
article {
margin: 0px;
}
</style>
<script type="text/javascript">
print();
close();
</script>
}
</body>
</html>