1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite.old/Views/CV/PrintCV.cshtml
T
Michael Gordeev 53e95afa2d Refactoring 1
2019-12-09 21:14:09 +03:00

34 lines
835 B
Plaintext

@{
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>