Optimized contacts and print pages, removed unnecessary file, iOS image declaration
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -11,21 +11,13 @@
|
||||
<p>
|
||||
@foreach(Link link in ViewData["contactLinks"] as List<Link>)
|
||||
{
|
||||
<a class="socicon-@(link.Socicon)"></a> @(link.Title) <a href="@(link.Url)">@(link.Username)</a>
|
||||
@if((ViewData["contactLinks"] as List<Link>).LastOrDefault() != link)
|
||||
{
|
||||
<br />
|
||||
}
|
||||
<a class="socicon-@(link.Socicon)"></a> @(link.Title) <a href="@(link.Url)" target="_blank">@(link.Username)</a><br />
|
||||
}
|
||||
</p>
|
||||
<p>
|
||||
@foreach (Link link in ViewData["otherLinks"] as List<Link>)
|
||||
{
|
||||
<a class="socicon-@(link.Socicon)"></a> @(link.Title) <a href="@(link.Url)">@(link.Username)</a>
|
||||
@if ((ViewData["otherLinks"] as List<Link>).LastOrDefault() != link)
|
||||
{
|
||||
<br />
|
||||
}
|
||||
<a class="socicon-@(link.Socicon)"></a> @(link.Title) <a href="@(link.Url)" target="_blank">@(link.Username)</a><br />
|
||||
}
|
||||
</p>
|
||||
</article>
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
|
||||
@*
|
||||
For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
|
||||
*@
|
||||
@@ -42,6 +42,7 @@ article {
|
||||
.uwp { background-image: url("../images/Badges/windows.png"); }
|
||||
.win32 { background-image: url("../images/Badges/windows.png"); }
|
||||
.windows { background-image: url("../images/Badges/windows.png"); }
|
||||
.ios { background-image: url("../images/Badges/ios.png"); }
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.github-stats {
|
||||
|
||||
Reference in New Issue
Block a user