19 lines
772 B
PHP
19 lines
772 B
PHP
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{{ $pageTitle ?? $siteName }}</title>
|
|
<meta name="description" content="{{ $pageDescription ?? $siteDescription }}">
|
|
@if(($pageKeywords ?? '') !== '')
|
|
<meta name="keywords" content="{{ $pageKeywords }}">
|
|
@endif
|
|
<meta name="generator" content="LaraLog">
|
|
<link rel="canonical" href="{{ url()->current() }}">
|
|
<link rel="alternate" type="application/rss+xml" title="{{ $siteName }}" href="{{ route('feed.rss') }}">
|
|
<link rel="stylesheet" href="{{ theme('asset', 'style.css') }}">
|
|
@stack('head')
|
|
@stack('theme:head')
|
|
</head>
|