21 lines
835 B
Plaintext
21 lines
835 B
Plaintext
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
<head>
|
|
<title>@ViewData["Title"] - administration</title>
|
|
<link rel="stylesheet" href="~/css/home.css" asp-append-version="true" />
|
|
|
|
<!-- Custom fonts for this template-->
|
|
<link href="~/lib/fontawesome-free/css/all.css" rel="stylesheet" type="text/css">
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
|
|
rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<div id="containerCard">
|
|
<img class="cardHome" src="~/images/HFHome.png" id="cardButtonHelloFresh" onclick="window.location.href = '/HelloFresh'" />
|
|
@* <img class="cardHome" src="~/images/Finance.png" id="cardButtonFinances" onclick="window.location.href = '/Finances'" /> *@
|
|
</div>
|
|
|
|
<script src="~/js/home.js" asp-append-version="true"></script>
|