Skip to content

Commit cf1d0d8

Browse files
committed
Added post about WTFPL, fixed layout, added new license
1 parent fe731a8 commit cf1d0d8

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ highlighter: pygments
44

55
gems:
66
- jekyll-sitemap
7+
- jekyll-paginate
78

89
# Permalinks
910
permalink: pretty
10-
relative_permalinks: true
1111

1212
# Setup
1313
title: Webdev Hints

_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<link rel="stylesheet" href="/public/css/syntax.css">
2020
<link rel="stylesheet" href="/public/css/hyde.css">
2121
<link rel="stylesheet" href="/public/css/featherlight.min.css">
22+
<link rel="stylesheet" href="/public/css/custom.css">
2223
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
2324

2425
<!-- RSS -->

_includes/sidebar.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ <h1>
2828
</nav>
2929

3030
<p>
31-
Blog content is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>
32-
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a>
31+
Blog content is licensed under <a rel="license" target="_blank" href="http://www.wtfpl.net/about/">WTFPL</a>
3332
</p>
3433
</div>
3534
</div>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: post
3+
title: "A new WTFPL license for blog"
4+
date: 2016-02-10 23:10:00
5+
comments: true
6+
tags: license
7+
---
8+
When I was starting a blog, I wanted to use some free license for it's contents. That was hard to choose a proper licence, because their texts was so hard to understand (also English is not my native language). So I didn't spend much time on it and choosed one with a boring long name "Creative Commons Attribution 4.0 International License" and forgot about it.
9+
10+
Today I was browsing Ansible Galaxy to fing a role that will install pip in Vagrant box and in [one of these roles](https://github.com/bobbyrenwick/ansible-pip) I saw a license that called "WTFPL". I went to their site and immidiately felt that this licence is totally fit my needs. It is simple and allowing to do everything with content. "WTFPL" stands for "Do What The Fuck You Want To Public License". I even decided to switch blog to it.
11+
12+
Worth checking: [http://www.wtfpl.net/about/](http://www.wtfpl.net/about/)

public/css/custom.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.text-right {
2+
display: block;
3+
text-align: right;
4+
width: 100%;
5+
}

0 commit comments

Comments
 (0)