* Fixed login & auth * Added dynamic breadcrumb * Added DOC * Added Patient * Added Notifications * Added Messages * Refactoring api * Re-writed menu * Removed unused things * Created README
152 lines
6.8 KiB
Plaintext
152 lines
6.8 KiB
Plaintext
@using SeniorAssistant.Extensions
|
|
@using Microsoft.Extensions.Options
|
|
@inject IOptions<SeniorAssistant.Configuration.Kendo> Kendo
|
|
@inject IOptions<SeniorAssistant.Configuration.Theme> Theme
|
|
|
|
@{
|
|
var kendo = Kendo.Value;
|
|
var theme = Theme.Value;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<!--
|
|
This is a starter template page. Use this page to start your new project from
|
|
scratch. This page gets rid of all links and provides the needed markup only.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>SeniorAssistant @ViewBag.Title</title>
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<link rel="stylesheet" href="~/AdminLTE-2.4.3/bower_components/bootstrap/dist/css/bootstrap.min.css">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="~/AdminLTE-2.4.3/bower_components/font-awesome/css/font-awesome.min.css">
|
|
<!-- Ionicons -->
|
|
<link rel="stylesheet" href="~/AdminLTE-2.4.3/bower_components/Ionicons/css/ionicons.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="~/AdminLTE-2.4.3/dist/css/AdminLTE.min.css">
|
|
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
|
|
page. However, you can choose any other skin. Make sure you
|
|
apply the skin class to the body tag so the changes take effect. -->
|
|
<link rel="stylesheet" href="~/AdminLTE-2.4.3/dist/css/skins/@(theme.Skin.GetDescription()).min.css">
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="//oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
<!-- Google Font -->
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
|
|
|
|
<link href="~/kendo/@(kendo.Version)/styles/kendo.common.min.css" rel="stylesheet" />
|
|
<link href="~/kendo/@(kendo.Version)/styles/kendo.@(kendo.Style.GetDescription()).min.css" rel="stylesheet" />
|
|
|
|
<script src="~/kendo/@(kendo.Version)/js/jquery.min.js"></script>
|
|
<script src="~/kendo/@(kendo.Version)/js/kendo.all.min.js"></script>
|
|
</head>
|
|
<!--
|
|
BODY TAG OPTIONS:
|
|
=================
|
|
Apply one or more of the following classes to get the
|
|
desired effect
|
|
|---------------------------------------------------------|
|
|
| SKINS | skin-blue |
|
|
| | skin-black |
|
|
| | skin-purple |
|
|
| | skin-yellow |
|
|
| | skin-red |
|
|
| | skin-green |
|
|
|---------------------------------------------------------|
|
|
|LAYOUT OPTIONS | fixed |
|
|
| | layout-boxed |
|
|
| | layout-top-nav |
|
|
| | sidebar-collapse |
|
|
| | sidebar-mini |
|
|
|---------------------------------------------------------|
|
|
-->
|
|
<body class="hold-transition @(theme.Skin.GetDescription()) @(theme.Layout.GetDescription())">
|
|
<div class="wrapper">
|
|
<!-- Main Header -->
|
|
<header class="main-header">
|
|
<!-- Logo -->
|
|
<a href="/" class="logo">
|
|
<!-- mini logo for sidebar mini 50x50 pixels -->
|
|
<span class="logo-mini">@ViewBag.LogoMini</span>
|
|
<!-- logo for regular state and mobile devices -->
|
|
<span class="logo-lg">@ViewBag.Logo</span>
|
|
</a>
|
|
<!-- Header Navbar -->
|
|
<nav class="navbar navbar-static-top" role="navigation">
|
|
<!-- Sidebar toggle button-->
|
|
<a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
</a>
|
|
<!-- Navbar Right Menu -->
|
|
<div>
|
|
@{ await Html.RenderPartialAsync("NavbarRightMenu"); }
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<!-- Left side column. contains the logo and sidebar -->
|
|
<aside class="main-sidebar">
|
|
<!-- sidebar: style can be found in sidebar.less -->
|
|
<section class="sidebar">
|
|
<!-- Sidebar user panel (optional) -->
|
|
<!-- search form (Optional) -->
|
|
<form action="#" method="get" class="sidebar-form">
|
|
<div class="input-group">
|
|
<input type="text" name="q" class="form-control" placeholder="Search...">
|
|
<span class="input-group-btn">
|
|
<button type="submit" name="search" id="search-btn" class="btn btn-flat">
|
|
<i class="fa fa-search"></i>
|
|
</button>
|
|
</span>
|
|
</div>
|
|
</form>
|
|
<!-- /.search form -->
|
|
<!-- Sidebar Menu -->
|
|
<div>
|
|
@{ await Html.RenderPartialAsync("SidebarMenu"); }
|
|
</div>
|
|
<!-- /.sidebar-menu -->
|
|
</section>
|
|
<!-- /.sidebar -->
|
|
</aside>
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
@ViewBag.PageHeader
|
|
</h1>
|
|
<div>
|
|
@{ await Html.RenderPartialAsync("Breadcrumb"); }
|
|
</div>
|
|
</section>
|
|
<!-- Main content -->
|
|
<section class="content container-fluid">
|
|
@RenderBody()
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
<!-- Main Footer -->
|
|
<div>
|
|
@{ await Html.RenderPartialAsync("Footer"); }
|
|
</div>
|
|
</div>
|
|
<!-- ./wrapper -->
|
|
<!-- REQUIRED JS SCRIPTS -->
|
|
<!-- jQuery 3 -->
|
|
@*<script src="~/AdminLTE-2.4.3/bower_components/jquery/dist/jquery.min.js"></script>*@
|
|
<!-- Bootstrap 3.3.7 -->
|
|
<script src="~/AdminLTE-2.4.3/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="~/AdminLTE-2.4.3/dist/js/adminlte.min.js"></script>
|
|
<!-- Optionally, you can add Slimscroll and FastClick plugins.
|
|
Both of these plugins are recommended to enhance the
|
|
user experience. -->
|
|
</body>
|
|
</html> |