-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LastModifiedServiceProvider: Return a Carbon instance.
base.blade: Use app()->getLocale for a bugfix for this issue: laravel/framework#19405 Also check the environment and only add site verification meta if in production. footer-error.blade: If running in production use HTTPS on the image URL, otherwise don't. Also intval the year when comparing it to 2017. Format the Carbon instance, footer.blade: Only render social media widget buttons if in production mode. Also intval year before comparing and format the Carbon instance. index.blade: Bring OpenGraph title in line iwth website title. Intval the year when comparing it to 2017. Add sameAs meta for my social media pages. Add a WebSite schema. Only include the social media JavaScript if in production. about.blade: Remove extra closing p tag. resume.blade: Only use HTTPS if in production mode on profile image.
- Loading branch information
Showing
7 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
<!-- Facebook OpenGraph meta --> | ||
<meta property="og:url" content="https://brandonclothier.me" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="Brandon Clothier" /> | ||
<meta property="og:title" content="Brandon Clothier | Resume Website" /> | ||
<meta property="og:description" content="The official website resume website of Brandon Clothier." /> | ||
<meta property="og:image" content="https://brandonclothier.me/images/logo-large.png" /> | ||
|
||
|
@@ -39,8 +39,8 @@ | |
<meta name="DC.subject" content="Resume, Personal Website"> | ||
<meta name="DC.language" content="{{ config('app.locale') }}"> | ||
<meta name="DC.publisher" content="Brandon Clothier"> | ||
<meta name="DC.contibutor" content="Brandon Clothier"> | ||
<meta name="DC.coverage" content="Kentucky, USA 2017{{ date('Y') > 2017 ? '-'.date('Y') : '' }}"> | ||
<meta name="DC.contributor" content="Brandon Clothier"> | ||
<meta name="DC.coverage" content="Kentucky, USA 2017{{ intval(date('Y')) > 2017 ? '-'.date('Y') : '' }}"> | ||
|
||
<!-- G+ author link --> | ||
<link rel="author" href="https://plus.google.com/u/0/+BrandonClothier"/> | ||
|
@@ -55,6 +55,23 @@ | |
"email": "mailto:[email protected]", | ||
"jobTitle": "Web Developer", | ||
"image": "https://brandonclothier.me/images/profile-small.png", | ||
"url": "https://brandonclothier.me", | ||
"sameAs": [ | ||
"https://www.facebook.com/brandon14125", | ||
"https://plus.google.com/+BrandonClothier", | ||
"https://www.instagram.com/b_randon14", | ||
"https://twitter.com/inhal3exh4le", | ||
"https://brandon14125.tumblr.com/", | ||
"https://www.linkedin.com/in/brandon-clothier-16190b123" | ||
] | ||
} | ||
</script> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "http://schema.org", | ||
"@type": "WebSite", | ||
"name": "brandonclothier.me", | ||
"alternateName": "The official resume website of Brandon Clothier.", | ||
"url": "https://brandonclothier.me" | ||
} | ||
</script> | ||
|
@@ -74,6 +91,8 @@ | |
@includeIf('components.footer') | ||
@includeIf('components.app-js') | ||
@includeIf('components.ie10-viewport-js') | ||
@includeIf('components.social-media-js') | ||
@if(config('app.env') === 'production') | ||
@includeIf('components.social-media-js') | ||
@endif | ||
</body> | ||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters