<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}{{ site }}{% endblock %}</title>
{% block meta %} {% endblock %}
{% block stylesheets %}
<!-- base:css -->
<link rel="stylesheet" href="{{ asset('templatedash/typicons.font/font/typicons.css') }}">
<link rel="stylesheet" href="{{ asset('templatedash/css/vendor.bundle.base.css') }}">
<!-- endinject -->
<!-- inject:css -->
<link rel="stylesheet" href="{{ asset('templatedash/css/style.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('templatedash/css/bootstrap-icons.css') }}">
<!-- endinject -->
<link rel="shortcut icon" href="{{ asset('templatedash/images/favicon.png') }}" />
{% endblock %}
<script src="{{ asset('templatedash/js/vendor.bundle.base.js') }}"></script>
<!-- endinject -->
<link rel="stylesheet" href="{{ asset('plugins/notify/themes/alertify.core.css') }}" />
<link rel="stylesheet" href="{{ asset('plugins/notify/themes/alertify.default.css') }}" id="toggleCSS" />
<script src="{{ asset('plugins/notify/lib/alertify.min.js') }}"></script>
<script>
function resetNotif() {
$("#toggleCSS").attr("href", "{{ asset('plugins/notify/themes/alertify.default.css') }}");
alertify.set({
labels : {
ok : "OK",
cancel : "Cancel"
},
delay : 5000,
buttonReverse : false,
buttonFocus : "ok"
});
}
</script>
<style>
.sidebar {
background: #e8eff9;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
}
.btn, .btn:hover {
color: #88a5b1;
}
.btn-primary, .btn-primary:hover, .btn-info, .btn-info:hover, .btn-success, .btn-success:hover, .btn-warning, .btn-warning:hover, .btn-danger, .btn-danger:hover, .btn-inverse, .btn-inverse:hover {
color: #fff;
}
.btn {
font: 14px Helvetica;
padding: 12px 22px 10px;
margin: 0;
border: none;
border-bottom: 3px #aacedd solid;
text-decoration: none;
background-image: -moz-linear-gradient(#ffffff, #f8f8f8);
background-image: -webkit-linear-gradient(#ffffff, #f8f8f8);
background-image: linear-gradient(#ffffff, #f8f8f8);
position: relative;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 25px -5px;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 25px -5px;
box-shadow: rgba(0, 0, 0, 0.2) 0 0 25px -5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
.btn:active {
position: relative;
top: 3px;
border: none;
}
.btn-primary {
border-bottom: 3px #000609 solid;
background-image: -moz-linear-gradient(#0079bb, #005888);
background-image: -webkit-linear-gradient(#0079bb, #005888);
background-image: linear-gradient(#0079bb, #005888);
}
.btn-primary:hover {
background-image: -moz-linear-gradient(#009aee, #005888);
background-image: -webkit-linear-gradient(#009aee, #005888);
background-image: linear-gradient(#009aee, #005888);
}
.btn-info {
border-bottom: 3px #206376 solid;
background-image: -moz-linear-gradient(#71c1d8, #49afcd);
background-image: -webkit-linear-gradient(#71c1d8, #49afcd);
background-image: linear-gradient(#71c1d8, #49afcd);
}
.btn-info:hover {
background-image: -moz-linear-gradient(#99d2e3, #49afcd);
background-image: -webkit-linear-gradient(#99d2e3, #49afcd);
background-image: linear-gradient(#99d2e3, #49afcd);
}
.btn-success {
border-bottom: 3px #2d662d solid;
background-image: -moz-linear-gradient(#7ec77e, #5bb75b);
background-image: -webkit-linear-gradient(#7ec77e, #5bb75b);
background-image: linear-gradient(#7ec77e, #5bb75b);
}
.btn-success:hover {
background-image: -moz-linear-gradient(#a2d6a2, #5bb75b);
background-image: -webkit-linear-gradient(#a2d6a2, #5bb75b);
background-image: linear-gradient(#a2d6a2, #5bb75b);
}
.btn-warning {
border-bottom: 3px #a86404 solid;
background-image: -moz-linear-gradient(#fbbc64, #faa732);
background-image: -webkit-linear-gradient(#fbbc64, #faa732);
background-image: linear-gradient(#fbbc64, #faa732);
}
.btn-warning:hover {
background-image: -moz-linear-gradient(#fcd296, #faa732);
background-image: -webkit-linear-gradient(#fcd296, #faa732);
background-image: linear-gradient(#fcd296, #faa732);
}
.btn-danger {
border-bottom: 3px #88201c solid;
background-image: -moz-linear-gradient(#e37873, #da4f49);
background-image: -webkit-linear-gradient(#e37873, #da4f49);
background-image: linear-gradient(#e37873, #da4f49);
}
.btn-danger:hover {
background-image: -moz-linear-gradient(#eba19e, #da4f49);
background-image: -webkit-linear-gradient(#eba19e, #da4f49);
background-image: linear-gradient(#eba19e, #da4f49);
}
.btn-inverse {
border-bottom: 3px black solid;
background-image: -moz-linear-gradient(#505050, #363636);
background-image: -webkit-linear-gradient(#505050, #363636);
background-image: linear-gradient(#505050, #363636);
}
.btn-inverse:hover {
background-image: -moz-linear-gradient(#696969, #363636);
background-image: -webkit-linear-gradient(#696969, #363636);
background-image: linear-gradient(#696969, #363636);
}
.btn-large {
font-size: 18px;
padding: 12px 22px 10px;
}
.btn-small {
font-size: 11px;
padding: 8px 16px 6px;
}
.btn-mini {
font-size: 9px;
padding: 7px 12px 5px;
}
.accordion__item {
padding: 20px;
margin-bottom: 20px;
border-radius: 4px;
background: #fff;
}
.accordion__body {
display: none;
padding-top: 10px;
}
.accordion__body p {
margin-bottom: 0;
}
.accordion__title {
font-size: 18px;
cursor: pointer;
margin-bottom: 0;
position: relative;
}
.accordion__title:after {
content: "";
width: 20px;
height: 20px;
position: absolute;
right: 0;
top: 0;
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABlUlEQVRIS72V6zEEQRSFv81ABogAESADIiADRIAIEAEiQASIABmQgQyor+rerZ7enp71Y92qqZrpxznnPmfGim22YnyWITgGdoHteNT0Hs8j8NQT2SM4AK6AjQkvP4EzQLIFGyO4Bk7i9Bfg90uodllv9oBTYD3OeUaigbUISnAv+N0zSfRUuwnS+fmawLA8xO5OoXiqFvToLQ4dluGqCYynLi+jvCZNT8TYzM2SwGq5BYz5VGLHPEqBcy9KgjvgqFJ/ETn4HkFci2K4jP304h5Q8KAPrO0tIGMv+HnkYR+oSQR/joqSwPOZC7HEGRD8hIr0SgBLU1IvlCQl+EeUbAoY4JQhqgnka5G4nsprcPdGCeoQZdhrkmy0FniGyD3fByFqJblF4loL3PVukrPJBnVcVE964pJjolVZ3TL14lSjSaK1wFP9oI/+fVSorhx2qnKA9exPwy6BShLD5vdrNa79CQmeY2VhktZVVKs06QLnvB/zwphL9KcfTgkmkY91bVdnmdo3gjaBE2CZf/JECvrbKyf4BdpXaxkir2UhAAAAAElFTkSuQmCC") no-repeat;
background-size: 20px;
}
.accordion__title.active {
color: #2B9FDF;
}
.accordion__title.active:after {
transform: rotate(-180deg);
}
.breadcrumb_{
padding: 0px;
}
.breadcrumb_ li {
display: inline-block;
font-size: 1.5em;
list-style: none;
padding-right: 0.5em;
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.breadcrumb_ li:before {
content: "/";
padding-right: 0.5em;
}
.breadcrumb_ li:first-of-type:before {
display: none;
}
.breadcrumb_ li:last-of-type {
max-width: 100%;
}
.breadcrumb_ li h1 {
display: inline-block;
font-size: 1em;
margin: 0;
}
.navbar {
border-bottom: 1px solid #ddd!important;
}
.box {
width: 100%;
min-height: 325px;
border-radius: 8px;
box-shadow: 0 0 0 #fff,0 0 0 #fff,0 0 0 #fff;
background: #fff;
box-sizing: border-box;
font-family: open sans;
padding: 20px;
cursor: pointer;
display: inline-block;
transition: .3s;
border-bottom: 1px dashed #ddd;
}
.box:hover {
box-shadow: 5px 5px 10px #ddd,-5px -5px 10px #ddd;
transform: scale(1.1);
z-index: 999;
}
.box .title {
font-family: Roboto;
font-size: 16px;
font-weight: 500;
}
.box .subtitle {
font-family: Roboto;
font-size: 15px;
font-weight: 500;
color: #555;
}
.box .number {
font-family: Roboto;
font-size: 15px;
font-weight: 500;
color: #555;
right: 7px;
top: 10px;
position: absolute;
}
.box .text {
font-size: 30px;
line-height: 1.10909;
font-family: Roboto;
font-weight: 400;
font-style: normal;
}
.SheetTitle {
font-family: Roboto;
font-size: 40px;
font-weight: 300;
}
.SheetSubtitle {
font-family: Roboto;
font-size: 20px;
font-weight: 600;
color: #888;
}
.line {
height: 2px;
background-color: #ccc;
margin: 10px;
width: 70%;
}
@media (min-width: 989px){
#sidebar{
position: fixed; top: 62px; left: 0px; z-index: 999;
}
#sidebar2{
opacity: 0;
}
}
@media (max-width: 989px){
#sidebar{
}
#sidebar2{
display: none;
}
}
figure {
display: block;
background-color: #fff;
-ms-interpolation-mode: bicubic;
}
figure img {
display: block;
width: auto;
max-width: 100%;
}
/**
* Variables
*/
:root {
--master-color: #005888;
--master-color-partner-dark: #005888;
--headings-color: #263358;
--main-bg-color: #fff;
--secondary1-bg-color: #f6f6f6;
--secondary2-bg-color: #fff0ec;
--main-txt-color: #333;
--secondary-txt-color: #757575;
--sub-color: #b4b4b4;
}
.post__header h1, .post__header h2 {
display: block;
font-family: 'Oswald', sans-serif;
font-style: normal;
font-weight: 300;
line-height: 1.4em;
color: var(--headings-color);
}
.post__header h1 a,
.post__header h2 a {
font-weight: 300;
text-decoration: none;
color: var(--headings-color);
background-color: transparent;
outline: none;
}
.post__header a:hover {
color: var(--master-color-partner-dark);
}
.post__header a:focus {
color: var(--headings-color);
background-color: var(--secondary2-bg-color);
}
/**
* Post List Layout
*/
.post-list_grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: stretch;
}
.post-list__post {
display: grid;
grid-template-areas:
"header"
"footer"
"pr_img";
grid-auto-rows: 1fr auto auto;
align-items: start;
grid-gap: 1em 0;
}
.post-list__post:nth-child(2n+1) {
background-color: var(--secondary1-bg-color);
}
.post-list__post:nth-child(3n+2) {
grid-template-areas:
"pr_img"
"header"
"footer";
grid-auto-rows: auto 1fr auto;
}
.post__preview-img {
grid-area: pr_img;
}
.post__header {
grid-area: header;
}
.post__meta {
grid-area: footer;
align-self: start;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
/**
* Post List Design
*/
.post-list {
margin-bottom: 4em;
}
.post {
position: relative;
padding: 1.6em;
}
.post:after {
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border: 3px var(--master-color) solid;
border-image: linear-gradient(110deg, #c19f63, #c6972b, #f5cd87, #c6972b, #c19f63) 1;
z-index: 2;
opacity: 0;
-webkit-transition: all .25s ease-out;
transition: all .25s ease-out;
}
.post:hover:after {
opacity: 1;
}
.post > * {
z-index: 4;
position: relative;
}
.post__preview-img {
width: 100%;
height: 0;
padding-bottom: 56.25%;
position: relative;
overflow: hidden;
}
.post__preview-img img {
width: 100%;
height: auto;
position: absolute;
top: -50%;
right: -50%;
bottom: -50%;
left: -50%;
margin: auto;
}
.post__time {
color: var(--sub-color);
}
.post__meta a {
color: var(--sub-color);
text-decoration: none;
border-bottom: 1px var(--sub-color) solid;
}
.post__meta a:hover {
color: var(--master-color-partner-dark);
}
.post__comments {
position: relative;
padding-left: 24px;
}
.post__comments:before,
.post__comments:after {
content: '';
display: block;
position: absolute;
border: 1px var(--sub-color) solid;
}
.post__comments:before {
width: 16px;
height: 11px;
border-radius: 50%;
left: 0;
top: calc(50% - 8px);
z-index: 1;
}
.post__comments:after {
width: 3px;
height: 6px;
border-width: 0 1px 1px 0;
transform: rotate(31deg);
top: 50%;
left: 11px;
z-index: 2;
background-color: var(--secondary1-bg-color);
}
/**
* Breakpoint 900px
*/
@media all and (max-width: 900px) {
.post-list_grid {
grid-template-columns: repeat(2, 1fr);
}
.post-list__post:nth-child(n) {
background-color: transparent;
grid-template-areas:
"header"
"footer"
"pr_img";
grid-auto-rows: 1fr auto auto;
}
.post-list__post:nth-child(4n),
.post-list__post:nth-child(4n+1) {
background-color: var(--secondary1-bg-color);
}
.post-list__post:nth-child(even) {
grid-template-areas:
"pr_img"
"header"
"footer";
grid-auto-rows: auto 1fr auto;
}
}
/**
* Breakpoint 670px
*/
@media all and (max-width: 670px) {
.post-list_grid {
grid-template-columns: 1fr;
}
.post-list__post:nth-child(n) {
background-color: var(--secondary1-bg-color);
grid-template-areas:
"header"
"footer"
"pr_img";
grid-auto-rows: 1fr auto auto;
}
.post-list__post:nth-child(even) {
background-color: transparent;
}
}
</style>
</head>
<body>
<div class="container-scroller">
{{ render(controller("App\\Controller\\General\\Template\\MenuController:menubare", {'position': 'dash'})) }}
<div class="container-fluid page-body-wrapper">
{{ render(controller("App\\Controller\\General\\Template\\MenuController:menuleft", {'position': 'dash'})) }}
<div class="main-panel" style="background: #e8eff9;">
{% block body %}
{% endblock %}
{{ render(controller("App\\Controller\\General\\Template\\MenuController:footer", {'position': 'dash'})) }}
</div>
</div>
</div>
<!-- inject:js -->
<script src="{{ asset('templatedash/js/off-canvas.js') }}"></script>
<script src="{{ asset('templatedash/js/hoverable-collapse.js') }}"></script>
<script src="{{ asset('templatedash/js/template.js') }}"></script>
<script src="{{ asset('templatedash/js/settings.js') }}"></script>
<script src="{{ asset('templatedash/js/todolist.js') }}"></script>
<!-- endinject -->
<script type="text/javascript">
{% block javascript %}
{% endblock %}
</script>
</body>
</html>