Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
Change: header page changelog (#135)
Browse files Browse the repository at this point in the history
* Fix data base_change

* changelog

* changelog description
  • Loading branch information
alexcaussades authored Nov 25, 2023
1 parent 55767e0 commit 7fbc86e
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/changelog.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@extends("index-base")
@extends("index-changelog")

@section("title", "Changelog")

Expand Down
94 changes: 94 additions & 0 deletions resources/views/index-changelog.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<!DOCTYPE html>
<html lang="fr">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> @yield("title") IVATRAC</title>
<meta name="description" content="Track changes and updates on ivatrac - with ivatrac you can find all your IVAO services. ">
<meta name="keywords" content="ivao, information, website, unofficial, pirep, fpl, metar, plateform, friend, metar, follows, tracker">
<meta name="author" content="Alexcaussades">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="google" content="notranslate">
<meta property="og:title" content="IVATRAC">
<meta property="og:description" content="Track changes and updates on ivatrac - with ivatrac you can find all your IVAO services. ">
<meta property="og:site_name" content="IVATRAC">
<meta property="og:type" content="website">
<meta property="og:locale" content="fr_FR">
<meta property="og:locale:alternate" content="en_US">
<meta property="og:locale:alternate" content="fr_FR">
<meta property="og:locale:alternate" content="en_GB">
<meta property="og:locale:alternate" content="fr_BE">
<meta property="og:locale:alternate" content="en_BE">
<meta property="og:locale:alternate" content="fr_LU">
<meta property="og:locale:alternate" content="en_LU">
<meta property="og:locale:alternate" content="fr_CH">
<meta property="og:locale:alternate" content="en_CH">
<meta property="og:locale:alternate" content="fr_CA">
<meta property="og:locale:alternate" content="en_CA">
<meta property="og:locale:alternate" content="fr_MC">
<meta property="og:locale:alternate" content="en_MC">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="IVATRAC">
<meta name="twitter:description" content="Track changes and updates on ivatrac - with ivatrac you can find all your IVAO services.">
<meta name="twitter:creator" content="alexcaussades">
<meta name="twitter:site" content="@ivatrac">

<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-NGSXDXBN');
</script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NMZLE46MQ2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NMZLE46MQ2');
</script>
<!-- End Google Tag Manager -->
<!-- CSS only -->
@if (ENV('APP_ENV') == 'local')
<link rel="stylesheet" href="{{ asset("asset/css/bootstrap.min.css") }} " type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&family=Oswald" rel="stylesheet" />
<link rel="stylesheet" href="{{ asset("asset/css/style.css") }} " type="text/css">
<link rel="stylesheet" href="{{ asset("asset/css/index.css") }} " type="text/css">
@else
<link rel="stylesheet" href="{{ asset("public/asset/css/bootstrap.min.css") }} " type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&family=Oswald" rel="stylesheet" />
<link rel="stylesheet" href="{{ asset("public/asset/css/style.css") }} " type="text/css">
@endif
</head>
@yield('navbar')

<body>


@yield('content')

<!-- JavaScript Bundle with Popper -->
@if (ENV('APP_ENV') == 'local')
<script src="{{ asset("asset/js/bootstrap.bundle.min.js") }}"></script>
@else
<script src="{{ asset("public/asset/js/bootstrap.bundle.min.js") }}"></script>
@endif
</body>

</html>

0 comments on commit 7fbc86e

Please sign in to comment.