$pageTitle needs to be snake_case too

This commit is contained in:
James Brooks
2015-07-02 16:40:38 +01:00
parent c1a0fc10ae
commit 7a283dceb7
14 changed files with 37 additions and 37 deletions
+3 -3
View File
@@ -4,8 +4,8 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="alternate" type="application/atom+xml" href="/atom" title="{{ isset($pageTitle) ?: Setting::get('app_name') }} Status - Atom Feed">
<link rel="alternate" type="application/rss+xml" href="/rss" title="{{ isset($pageTitle) ?: Setting::get('app_name') }} Status - RSS Feed">
<link rel="alternate" type="application/atom+xml" href="/atom" title="{{ isset($page_title) ?: Setting::get('app_name') }} Status - Atom Feed">
<link rel="alternate" type="application/rss+xml" href="/rss" title="{{ isset($page_title) ?: Setting::get('app_name') }} Status - RSS Feed">
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
@@ -19,7 +19,7 @@
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta http-equiv="cleartype" content="on">
<title>{{ isset($pageTitle) ?: Setting::get('app_name') }} Status</title>
<title>{{ isset($page_title) ?: Setting::get('app_name') }} Status</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">
+3 -3
View File
@@ -7,8 +7,8 @@
<meta name="env" content="{{ app('env') }}">
<meta name="token" content="{{ csrf_token() }}">
<link rel="alternate" type="application/atom+xml" href="/atom" title="{{ $pageTitle }} - Atom Feed">
<link rel="alternate" type="application/rss+xml" href="/rss" title="{{ $pageTitle }} - RSS Feed">
<link rel="alternate" type="application/atom+xml" href="/atom" title="{{ $page_title }} - Atom Feed">
<link rel="alternate" type="application/rss+xml" href="/rss" title="{{ $page_title }} - RSS Feed">
<!-- Mobile friendliness -->
<meta name="HandheldFriendly" content="True">
@@ -35,7 +35,7 @@
<link rel="apple-touch-icon" sizes="144x144" href="/img/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/apple-touch-icon-152x152.png">
<title>{{ $pageTitle }}</title>
<title>{{ $page_title }}</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">
@@ -18,7 +18,7 @@
<link rel="apple-touch-icon" sizes="144x144" href="/img/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/apple-touch-icon-152x152.png">
<title>{{ isset($pageTitle) ? $pageTitle : Setting::get('app_name') }} | Cachet</title>
<title>{{ isset($page_title) ? $page_title : Setting::get('app_name') }} | Cachet</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="{{ elixir('dist/css/all.css') }}">