1
0

Optimized contacts and print pages, removed unnecessary file, iOS image declaration

This commit is contained in:
Michael Gordeev
2019-11-13 02:10:13 +03:00
parent c761f74fda
commit 689831f1bc
4 changed files with 26 additions and 40 deletions
+23 -26
View File
@@ -1,36 +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" />
<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" />
@if (!(bool)ViewData["pdfPreview"])
{
<link rel="stylesheet" type="text/css" href="~/css/Style.css" />
<style type="text/css">
article {
margin: 0px;
}
body { margin: 0px; }
</style>
}
<meta name="viewport" content="width=device-width" />
</head>
<body>
<partial name="~/Views/CV/CVContent.cshtml" />
<meta name="viewport" content="width=device-width" />
</head>
<body>
<partial name="~/Views/CV/CVContent.cshtml" />
@if(!(bool)ViewData["pdfPreview"])
{
<script type="text/javascript">
print();
close();
</script>
}
</body>
@if (!(bool)ViewData["pdfPreview"])
{
<style type="text/css">
article {
margin: 0px;
}
</style>
<script type="text/javascript">
print();
close();
</script>
}
</body>
</html>