-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BBL-455 | minor landing adjustements
- Loading branch information
1 parent
536078e
commit 8576e3d
Showing
4 changed files
with
146 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,51 @@ | ||
{#- | ||
This file was automatically generated - do not edit | ||
-#} | ||
{% extends "base.html" %} | ||
|
||
<!-- Custom front matter --> | ||
{% block extrahead %} | ||
{% set title = config.site_name %} | ||
{% if page and page.title and not page.is_homepage %} | ||
{% set title = config.site_name ~ " - " ~ page.title | striptags %} | ||
{% endif %} | ||
{% set image = config.site_url ~ 'assets/images/illustrations/banner.png' %} | ||
<meta property="og:type" content="website"> | ||
<meta property="og:title" content="{{ title }}"> | ||
<meta property="og:description" content="{{ config.site_description }}"> | ||
<meta property="og:url" content="{{ page.canonical_url }}"> | ||
<meta property="og:image" content="{{ image }}"> | ||
<meta property="og:image:type" content="image/png"> | ||
<meta property="og:image:width" content="1200"> | ||
<meta property="og:image:height" content="630"> | ||
|
||
<!-- Determine title --> | ||
{% set title = config.site_name %} | ||
{% if page and page.title and not page.is_homepage %} | ||
{% set title = config.site_name ~ " - " ~ page.title | striptags %} | ||
{% endif %} | ||
|
||
<!-- The image needs to have an absolute URL --> | ||
{% set image = config.site_url ~ 'assets/images/illustrations/banner.png' %} | ||
|
||
<!-- Open graph meta tags --> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:title" content="{{ title }}" /> | ||
<meta property="og:description" content="{{ config.site_description }}" /> | ||
<meta property="og:url" content="{{ page.canonical_url }}" /> | ||
<meta property="og:image" content="{{ image }}" /> | ||
<meta property="og:image:type" content="image/png" /> | ||
<meta property="og:image:width" content="1080" /> | ||
<meta property="og:image:height" content="568" /> | ||
|
||
<!-- Extra stylesheets --> | ||
<link | ||
rel="stylesheet" | ||
href="{{ 'assets/stylesheets/overrides.css' | url }}" | ||
/> | ||
{% endblock %} | ||
|
||
<!-- Announcement bar --> | ||
{% block announce %} | ||
<style> | ||
.md-announce a,.md-announce a:focus,.md-announce a:hover{color:currentColor}.md-announce strong{white-space:nowrap}.md-announce} | ||
</style> | ||
<!-- Extra stylesing --> | ||
<style> | ||
.md-announce a, | ||
.md-announce a:focus, | ||
.md-announce a:hover{color:currentColor}.md-announce | ||
strong{white-space:nowrap}.md-announce} | ||
</style> | ||
|
||
<a href="https://www.linkedin.com/company/binbash"> | ||
For updates follow <strong>@Binbash</strong> on | ||
<strong>LinkedIn</strong> | ||
</a> | ||
For updates follow <strong style="color: #2a978d">@Binbash</strong> on | ||
<span class="twemoji linkedin" style="color: #0e76a8"> | ||
{% include ".icons/fontawesome/brands/linkedin-in.svg" %} | ||
</span> | ||
|
||
<strong style="color: white">LinkedIn</strong> | ||
</a> | ||
|
||
{% endblock %} |