forked from marcobiedermann/search-engine-optimization
-
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.
Showing
15 changed files
with
286 additions
and
254 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
<footer class="site__footer" role="contentinfo" itemscope itemtype="//schema.org/WPFooter"> | ||
|
||
<div class="grid"> | ||
|
||
FOOTER | ||
|
||
</div> | ||
|
||
</footer> |
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,18 +1,20 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="google-site-verification" content="PaHTIq4plwQv3e1xHhh5Qd0HDhl0i1MZ33prE-EVwjY"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"> | ||
<meta name="description" content="{{ site.description }}"> | ||
<meta name="apple-mobile-web-app-title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> | ||
<meta name="application-name" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}"> | ||
<meta name="theme-color" content="#2980b9"> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="google-site-verification" content="PaHTIq4plwQv3e1xHhh5Qd0HDhl0i1MZ33prE-EVwjY" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" /> | ||
<meta name="description" content="{{ site.description }}" /> | ||
<meta | ||
name="apple-mobile-web-app-title" | ||
content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" | ||
/> | ||
<meta name="application-name" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" /> | ||
<meta name="theme-color" content="#2980b9" /> | ||
|
||
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title> | ||
|
||
<link rel="stylesheet" href="css/main.css"> | ||
<link rel="mask-icon" href="favicon.svg" color="#2980b9"> | ||
<link rel="icon" href="apple-touch-icon-precomposed.png"> | ||
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png"> | ||
|
||
<link rel="stylesheet" href="css/main.css" /> | ||
<link rel="mask-icon" href="favicon.svg" color="#2980b9" /> | ||
<link rel="icon" href="apple-touch-icon-precomposed.png" /> | ||
<link rel="apple-touch-icon" href="apple-touch-icon-precomposed.png" /> | ||
</head> |
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,11 +1,16 @@ | ||
<header class="site__header" role="banner" itemscope itemtype="//schema.org/WPHeader"> | ||
|
||
<a href="//github.com/marcobiedermann/search-engine-optimization" class="github" target="_blank"> | ||
<svg xmlns="//www.w3.org/2000/svg" viewBox="0 0 250 250" fill="#fff"> | ||
<path d="M0 0l115 115h15l12 27 108 108V0z" fill="#70B7FD"/> | ||
<path class="github__arm" d="M128 109c-15-9-9-19-9-19 3-7 2-11 2-11-1-7 3-2 3-2 4 5 2 11 2 11-3 10 5 15 9 16" style=""/> | ||
<path class="github__body" d="M115 115s4 2 5 0l14-14c3-2 6-3 8-3-8-11-15-24 2-41 5-5 10-7 16-7 1-2 3-7 12-11 0 0 5 3 7 16 4 2 8 5 12 9s7 8 9 12c14 3 17 7 17 7-4 8-9 11-11 11 0 6-2 11-7 16-16 16-30 10-41 2 0 3-1 7-5 11l-12 11c-1 1 1 5 1 5z"/> | ||
<path d="M0 0l115 115h15l12 27 108 108V0z" fill="#70B7FD" /> | ||
<path | ||
class="github__arm" | ||
d="M128 109c-15-9-9-19-9-19 3-7 2-11 2-11-1-7 3-2 3-2 4 5 2 11 2 11-3 10 5 15 9 16" | ||
style="" | ||
/> | ||
<path | ||
class="github__body" | ||
d="M115 115s4 2 5 0l14-14c3-2 6-3 8-3-8-11-15-24 2-41 5-5 10-7 16-7 1-2 3-7 12-11 0 0 5 3 7 16 4 2 8 5 12 9s7 8 9 12c14 3 17 7 17 7-4 8-9 11-11 11 0 6-2 11-7 16-16 16-30 10-41 2 0 3-1 7-5 11l-12 11c-1 1 1 5 1 5z" | ||
/> | ||
</svg> | ||
</a> | ||
|
||
</header> |
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 |
---|---|---|
@@ -1,41 +1,38 @@ | ||
.github { | ||
height: 80px; | ||
width: 80px; | ||
position: fixed; | ||
right: 0; | ||
top: 0; | ||
transform: translateZ(0); | ||
width: 80px; | ||
z-index: 1; | ||
|
||
&:hover { | ||
|
||
.github__arm { | ||
|
||
@media (min-width: $media-sm) { | ||
animation: octocat-wave 560ms ease-in-out; | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
&__arm { | ||
transform-origin: 130px 106px; | ||
} | ||
|
||
} | ||
|
||
@keyframes octocat-wave{ | ||
|
||
0%, 100%{ | ||
@keyframes octocat-wave { | ||
0%, | ||
100% { | ||
transform: rotate(0); | ||
} | ||
|
||
20%, 60%{ | ||
20%, | ||
60% { | ||
transform: rotate(-25deg); | ||
} | ||
40%, 80%{ | ||
|
||
40%, | ||
80% { | ||
transform: rotate(10deg); | ||
} | ||
|
||
} |
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,9 +1,7 @@ | ||
$headlines-color: #686868; | ||
|
||
@for $i from 1 through 6 { | ||
|
||
h#{$i} { | ||
margin: 0 0 .5rem; | ||
margin: 0 0 0.5rem; | ||
} | ||
|
||
} |
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,17 +1,14 @@ | ||
blockquote { | ||
margin: 0; | ||
quotes: '\201C' '\201D' '\2018' '\2019'; | ||
quotes: '\201C''\201D''\2018''\2019'; | ||
|
||
p { | ||
|
||
&:before { | ||
&::before { | ||
content: open-quote; | ||
} | ||
|
||
&:after { | ||
&::after { | ||
content: close-quote; | ||
} | ||
|
||
} | ||
|
||
} |
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
Oops, something went wrong.