mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<?php
|
|
$lang = str_replace('_', '-', app()->getLocale());
|
|
setlocale( LC_ALL, $lang.'_'.strtoupper($lang).'.utf8','fra');
|
|
?>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<title>C-CMS - Espace Administration</title>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
|
|
<link rel="icon" type="image/png" href="/favicon.png">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<!-- Favicon, Icon and Font -->
|
|
<link rel="shortcut icon" href="/assets/admin/images/favicon.png">
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
|
|
<script src="https://kit.fontawesome.com/d18efcab73.js"></script>
|
|
|
|
<!-- Material Dashboard CSS -->
|
|
<link href="/css/material-dashboard.css" rel="stylesheet">
|
|
|
|
<!-- Plugin CSS -->
|
|
<link href='/assets/fullcalendar/core/main.css' rel='stylesheet' />
|
|
<link href='/assets/fullcalendar/daygrid/main.css' rel='stylesheet' />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Trumbowyg/2.18.0/ui/trumbowyg.css">
|
|
<link rel="stylesheet" href="/assets/jquery-ui-1.12.1/jquery-ui.theme.css">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/css/custom.css">
|