Skip to content

Commit

Permalink
feat: support copyright placeholders/variables (#46)
Browse files Browse the repository at this point in the history
* feat: re-format copyright message and auto increase current year

* docs: add comment for copyright setting

This comment is crucial, especially for newcomers.

* refactor: better liquid code format

Co-authored-by: jeffreytse <jeffreytse.mail@gmail.com>
  • Loading branch information
Anthonyive and jeffreytse committed Jun 29, 2021
1 parent 4e3e599 commit b3e6ee2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

source "https://rubygems.org"
gemspec

16 changes: 15 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,21 @@
title: Your awesome title
email: your-email@domain.com
author: GitHub User
copyright: Copyright © 1970-2010

# Copyright setting
# You can use any html code, currently below placeholders are available:
# * current year: {currentYear}
# * author: {author} (Value is the same as site.author)
# * copyright: (c) - ©
# * copyleft: (cleft)
# * sound recording copyright: (p) - ℗
#
# For example:
# "Copyright (c) 2017-{currentYear} <a href="https://example.com">{author}</a>"
# "Copyright © 2017-2021 Foobar"
#
copyright: "Unpublished Work (cleft) 2017-{currentYear} {author}"

description: >- # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Expand Down
10 changes: 9 additions & 1 deletion _includes/views/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@

<div class="wrapper">
<div class="site-footer-inner">
<div>{{ site.copyright }} {% if site.author %}@{{ site.author | escape }}{% endif %}</div>
<div>
{%- assign currYear = 'now' | date: "%Y" -%}
{{ site.copyright
| replace: '{currentYear}', currYear
| replace: '{author}', site.author
| replace: '(c)', '&copy;'
| replace: '(p)', '℗'
| replace: '(cleft)', '<span class="copyleft">&copy;</span>'
}}</div>
<div>Powered by <a title="Jekyll is a simple, blog-aware, static site
generator." href="http://jekyllrb.com/">Jekyll</a> &amp; <a title="Yat, yet
another theme." href="https://github.com/jeffreytse/jekyll-theme-yat">Yat Theme</a>.</div>
Expand Down
5 changes: 5 additions & 0 deletions _sass/yat/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ html {
}
}

.copyleft {
display: inline-block;
transform: rotate(180deg);
}

/**
* Post header
*/
Expand Down

0 comments on commit b3e6ee2

Please sign in to comment.