Current state
This commit is contained in:
82
resources/views/layouts/legacy.blade.php
Normal file
82
resources/views/layouts/legacy.blade.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ $page_title ?? 'Skinbase' }}</title>
|
||||
<meta name="description" content="{{ $page_meta_description ?? '' }}">
|
||||
<meta name="keywords" content="{{ $page_meta_keywords ?? '' }}">
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="revisit" content="1 day">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<base href="{{ config('app.url', '//localhost:8000') }}/">
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
|
||||
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/custom-legacy.css">
|
||||
|
||||
@stack('head')
|
||||
</head>
|
||||
<body style="padding-top:60px;">
|
||||
<div id="fb-root"></div>
|
||||
@include('legacy.toolbar')
|
||||
<div class="wrapper">
|
||||
<div class="col-top main_content">
|
||||
<div id="main_box_page">
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
{{-- Right sidebar placeholder (legacy layout) --}}
|
||||
<div id="right_box_page" class="hideme">
|
||||
@yield('sidebar')
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="push"></div>
|
||||
</div>
|
||||
|
||||
{{-- Toolbar placeholder --}}
|
||||
@stack('toolbar')
|
||||
|
||||
<footer id="mainFooter">
|
||||
<p>© 2000 - {{ date('Y') }} by SkinBase.org. All artwork copyrighted to its Author. (Dragon II Edition)</p>
|
||||
<div class="footer_links">
|
||||
<a href="/bug-report" title="Inform us about any bugs you found">Bug report</a> :
|
||||
<a href="/rss-feeds" title="Skinbase RSS Feeds about new Artworks">RSS Feeds</a> :
|
||||
<a href="/faq" title="Frequently Asked Questions">FAQ</a> :
|
||||
<a href="/rules" title="Rules and Guidelines">Rules and Guidelines</a> :
|
||||
<a href="/staff" title="Who is actually behind Skinbase">Staff</a> :
|
||||
<a href="/privacy" title="Privacy Policy">Privacy Policy</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/1.2.1/jquery-migrate.min.js"></script>
|
||||
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.0/isotope.pkgd.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
|
||||
<script src="/js/stickysidebar.jquery.min.js"></script>
|
||||
<script>
|
||||
if (window.jQuery) {
|
||||
(function($){
|
||||
if (typeof $.fn.stick_in_parent === 'undefined') {
|
||||
if (typeof $.fn.stickySidebar !== 'undefined') {
|
||||
$.fn.stick_in_parent = function(){
|
||||
return this.each(function(){ $(this).stickySidebar(); });
|
||||
};
|
||||
} else {
|
||||
$.fn.stick_in_parent = function(){ return this; };
|
||||
}
|
||||
}
|
||||
})(jQuery);
|
||||
}
|
||||
</script>
|
||||
<script src="/js/script.js"></script>
|
||||
|
||||
@stack('scripts')
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user