2024-03-14 23:58:11 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
@php
|
|
|
|
if(isset($debug))
|
|
|
|
{
|
2024-03-28 23:42:37 +01:00
|
|
|
if($debug)
|
|
|
|
{
|
|
|
|
$assetPath = '/theme/';
|
|
|
|
}else{
|
|
|
|
$assetPath = '/assets/';
|
|
|
|
}
|
2024-03-14 23:58:11 +01:00
|
|
|
}else{
|
|
|
|
$assetPath = '/assets/';
|
|
|
|
}
|
|
|
|
@endphp
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
@yield('title')
|
|
|
|
</title>
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'/>
|
|
|
|
<meta name="keywords" content="{{ $info['keywords'] }}"/>
|
|
|
|
<meta name="description" content="{{$info['description']}} "/>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
|
|
|
<meta property="og:image" content="{{$info["image"]}}"/>
|
|
|
|
<meta name="twitter:image" content="{{$info["image"]}}"/>
|
2024-03-16 19:36:51 +01:00
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
|
2024-03-14 23:58:11 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ $assetPath."css/theme/start.css" }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-04-23 21:41:41 +02:00
|
|
|
<div id="menu">
|
|
|
|
@include('fipamo-default-v2.includes.menu')
|
|
|
|
</div>
|
2024-03-14 23:58:11 +01:00
|
|
|
<header>
|
2024-04-23 21:41:41 +02:00
|
|
|
@include('fipamo-default-v2.includes.nav')
|
2024-03-14 23:58:11 +01:00
|
|
|
</header>
|
2024-04-23 21:41:41 +02:00
|
|
|
@include('fipamo-default-v2.includes.slides')
|
|
|
|
<main>
|
2024-03-15 03:03:46 +01:00
|
|
|
@section('main-content')
|
|
|
|
@show
|
2024-04-23 21:41:41 +02:00
|
|
|
</main>
|
2024-03-14 23:58:11 +01:00
|
|
|
<footer>
|
|
|
|
<div class="inner">
|
|
|
|
@if(isset($dynamicRender))
|
|
|
|
@if($dynamicRender == 'true')
|
|
|
|
<a href="/archives">Archives</a><br/>
|
|
|
|
@else
|
|
|
|
<a href="/archives.html">Archives</a><br/>
|
|
|
|
@endif
|
|
|
|
@else
|
|
|
|
<a href="/archives.html">Archives</a><br/>
|
|
|
|
@endif
|
|
|
|
© 2020 By Fipamo
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
<script src="{{ $assetPath."scripts/theme/ThemeStart.js" }}" type="module"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|