Skip to content

Commit 23fbd5a

Browse files
committed
Make chores
1 parent a56fd8e commit 23fbd5a

21 files changed

+31
-31
lines changed

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<meta property="og:title" content="{{ site.title }} - {{ page.title }}">
2626
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
2727
<meta property="og:site_name" content="Codegaze">
28-
<meta property="og:content" content="website">
28+
<meta property="og:type" content="website" />
2929
<meta property="og:image" content="{{ site.url }}/assets/img/social/avatar.jpg?v=1" >
3030
<meta property="og:description" content="{{ page.description }}">
3131
<meta property="og:image:width" content="400" />

_layouts/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{% endif %}
1515
<nav role="navigation" class="header__nav {% if page.url == '/' %}header__nav--home{% endif %}">
1616
<div class="header__title {% if page.url == '/' %}header__title--home{% endif %}">
17-
<a href="{{ site.baseurl }}/" title="Home">
17+
<a href="{{ site.baseurl }}/" title="Homepage of Thanos Kolovos">
1818
<img src="/assets/img/logo.svg" class="header__title-img header__title-img--large" title="CodegazeRants Home" alt="CodegazeRants Home" width="100%" height="100%">
1919
<svg class="header__title-img header__title-img--small" style="isolation:isolate" viewBox="19 117.36 165.5 125.29" xmlns="http://www.w3.org/2000/svg">
2020
<path d="m55.162 160.66q-7.861 0-12.174 5.907-4.312 5.908-4.312 16.464 0 21.967 16.486 21.967 6.918 0 16.756-3.459v11.68q-8.086 3.369-18.059 3.369-14.33 0-21.921-8.693-7.592-8.692-7.592-24.954 0-10.242 3.728-17.946 3.729-7.704 10.714-11.814 6.985-4.111 16.374-4.111 9.568 0 19.227 4.627l-4.493 11.321q-3.683-1.752-7.412-3.055-3.728-1.303-7.322-1.303z" fill="#2f2f2f"/>
@@ -40,7 +40,7 @@
4040
</main>
4141
<footer class="layout__row layout__row--footer" role="contentinfo">
4242
<small>
43-
&copy; <time datetime="{{ 'now' | date_to_xmlschema }}">{{ 'now' | date: '%Y' }}</time> <a href="/about">Thanos Kolovos</a>
43+
&copy; <time datetime="{{ 'now' | date_to_xmlschema }}">{{ 'now' | date: '%Y' }}</time> <a href="/about/">Thanos Kolovos</a>
4444
</small>
4545
</footer>
4646
</div>

_posts/2015-08-09-highlighting-ruby-code-in-jekyll.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A few days ago I was trying to write a [tutorial](https://codegaze.github.io/201
1010

1111
Instead of ruby code and html I was getting whitespace and html only.
1212

13-
I reinstalled [pip](https://pip.pypa.io/){:target="_blank"} and [pygments](http://pygments.org/){:target="_blank"} to check if something was wrong with my installation but that wasn't the problem.
13+
I reinstalled [pip](https://pip.pypa.io/){:target="_blank"} and [pygments](https://pygments.org/){:target="_blank"} to check if something was wrong with my installation but that wasn't the problem.
1414

1515
After a little research I found out that the problem was that Liquid, the template language Jekyll uses, considered everything inside the curly braces as code to execute.
1616

_posts/2015-09-05-how-to-stop-jwplayer-between-slides-a-swiper-jw-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ post_description: A plugin to extend Swiper for easier JW Player integration.
66
categories: [Coding, JS]
77
---
88

9-
[Swiper-JW Player](https://github.com/codegaze/Swiper-JWPlayer) is a very small plugin that extends iDangero.us [Swiper](http://www.idangero.us/swiper/) to avoid setting up the configuration for stopping [JW Player](http://www.jwplayer.com/) videos between slide navigation in each Swiper instance.
9+
[Swiper-JW Player](https://github.com/codegaze/Swiper-JWPlayer) is a very small plugin that extends iDangero.us [Swiper](https://www.idangero.us/swiper/) to avoid setting up the configuration for stopping [JW Player](https://www.jwplayer.com/) videos between slide navigation in each Swiper instance.
1010

1111

1212
This was created to satisfy my need for a fairly abstract/dynamic way to deal with JW Player events, in this case stopping it, without writing code in Swipper callbacks everytime I need something like this.

_posts/2015-09-07-jekyll-custom-description-for-your-posts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can use these page values anywhere you want. For instance I am using this fo
2727

2828
You can add and image for your facebook og tags or anything else you can think of.
2929

30-
**Update:** As Emilio Lopez correctly mentioned in the [comments](http://codegaze.github.io/2015/09/07/jekyll-custom-description-for-your-posts/#comment-2242343497) you can declare post_excerpt in the page variables too.
30+
**Update:** As Emilio Lopez correctly mentioned in the [comments](https://codegazerants.com/2015/09/07/jekyll-custom-description-for-your-posts/#comment-2242343497) you can declare post_excerpt in the page variables too.
3131

3232
{% highlight yaml %}
3333
---

_posts/2015-09-12-javascript-catch-keystrokes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ It's not that I don't like the libraries we have, it's that sometimes I just wan
1414

1515
Enough with the developers guilt that loves abstraction layers. Let's proceed with our script.
1616

17-
An example I came accross while I was reading the [http://webtypography.net/](http://webtypography.net/){:target="_blank"} site — it's great, give it a try — was using keys to navigate through artiles. I know, I am a lazy person, but I miss this when I read tutorials with page sections or a book like site. It's a small script and won't affect the no javascript users.
17+
An example I came accross while I was reading the [https://webtypography.net/](https://webtypography.net/){:target="_blank"} site — it's great, give it a try — was using keys to navigate through artiles. I know, I am a lazy person, but I miss this when I read tutorials with page sections or a book like site. It's a small script and won't affect the no javascript users.
1818

1919
Let's start by creating a function that captures keystrokes. After we include this in a script, the browser will execute this function for every key press.
2020

_posts/2015-09-30-inuit-css-based-grid-mixin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ post_description: Create a grid based on a Harry Roberts' article.
66
categories: [Coding, CSS]
77
---
88

9-
After reading [this](http://csswizardry.com/2015/08/bemit-taking-the-bem-naming-convention-a-step-further/) article from [@csswizardry](https://twitter.com/csswizardry) about taking the BEM naming a step further I wanted to create as simple mixin to build grid classes with this pattern ```u-1/3@md```.
9+
After reading [this](https://csswizardry.com/2015/08/bemit-taking-the-bem-naming-convention-a-step-further/) article from [@csswizardry](https://twitter.com/csswizardry) about taking the BEM naming a step further I wanted to create as simple mixin to build grid classes with this pattern ```u-1/3@md```.
1010

1111
If you 've read any of Harry Roberts' articles, you know that ```u``` stands for utility, ```1/3``` declares that this element takes one third of the available space and ```@md``` declares the breakpoint.
1212

_posts/2015-10-17-better-ux-with-ad-block-checker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ setTimeout(function() {checkAdBlocker('fake_service', 'error_msg'); }, 1000);
4444

4545
{% endhighlight %}
4646

47-
Here is a [demo](http://codegaze.github.io/demos/adblock) you can check it's functionality. If you have an add blocker enabled you will see a message, if not you will see an iframe with a ```This is a fake 3d party iframe!``` text.
47+
Here is a [demo](https://codegazerants.com/demos/adblock/) you can check it's functionality. If you have an add blocker enabled you will see a message, if not you will see an iframe with a ```This is a fake 3d party iframe!``` text.
4848

4949

5050
This script isn't a solid solution but works for most cases. Is just a first step to help your user not miss a feature in your site, but use it carefully.

_posts/2015-10-19-a-modal-alternative.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In my projects I usually use a modal either to show a new feature (announcement)
1313
Here is what I am proposing (live [demo](https://codegaze.github.io/demos/modal_alternative/)):
1414

1515
<figure>
16-
<a href="/public/example_big.png"><img src="/public/example_big.png" border="0"></a>
16+
<a href="/public/example_big.png"><img src="/public/example_big.png" border="0" alt="Example 1"></a>
1717
</figure>
1818

1919
Add your big announcement in your content. Use just a small script to close your "modal". No more big chunks of js and css.
@@ -51,7 +51,7 @@ module_close_handler.onclick = function() {
5151

5252
**Notes:**<br>
5353
In my [demo](https://codegaze.github.io/demos/modal_alternative/) I don't use a cookie.<br>
54-
I used a <a href="http://www.initializr.com/">http://www.initializr.com/</a> boilerplate for the demo.<br>
54+
I used a <a href="https://www.initializr.com/">https://www.initializr.com/</a> boilerplate for the demo.<br>
5555
Maybe I'll do another part about an image gallery version.
5656

5757
If you have any questions or reccomendations, feel free to comment.

_posts/2015-11-24-share-buttons-performance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ I know this subject has been covered by many people but here is an example for f
2323
Here is the HTML code for the buttons. We are just creating simple links. We use the `js-share-button` class in our script to select all the share buttons. And the `data-service` attribute gives us the services we are going to use.
2424

2525
{% highlight html %}
26-
<a href="http://codegaze.github.io/2015/11/24/share-buttons-performance/" class="share__button facebook js-share-button" data-service="facebook">Share on Facebook</a>
27-
<a href="http://codegaze.github.io/2015/11/24/share-buttons-performance/" class="share__button twitter js-share-button" data-service="twitter" title="Share Buttons Performance Issues and how to deal with them - @codegaze">Share on Twitter</a>
26+
<a href="https://codegazerants.com/2015/11/24/share-buttons-performance/" class="share__button facebook js-share-button" data-service="facebook">Share on Facebook</a>
27+
<a href="https://codegazerants.com/2015/11/24/share-buttons-performance/" class="share__button twitter js-share-button" data-service="twitter" title="Share Buttons Performance Issues and how to deal with them - @codegaze">Share on Twitter</a>
2828
{% endhighlight %}
2929

3030

@@ -154,8 +154,8 @@ shareButtons.init();
154154
You can check the demo of these buttons, will give you a share to the current page url.
155155

156156
<div class="has-centered">
157-
<a href="http://codegaze.github.io/2015/11/24/share-buttons-performance/" class="share__button facebook js-share-button" data-service="facebook">Share on Facebook</a>
158-
<a href="http://codegaze.github.io/2015/11/24/share-buttons-performance/" class="share__button twitter js-share-button" data-service="twitter" title="Share Buttons Performance Issues and how to deal with them - @codegaze">Share on Twitter</a>
157+
<a href="https://codegazerants.com/2015/11/24/share-buttons-performance/" class="share__button facebook js-share-button" data-service="facebook">Share on Facebook</a>
158+
<a href="https://codegazerants.com/2015/11/24/share-buttons-performance/" class="share__button twitter js-share-button" data-service="twitter" title="Share Buttons Performance Issues and how to deal with them - @codegaze">Share on Twitter</a>
159159
</div>
160160

161161

0 commit comments

Comments
 (0)