diff --git a/languages/en.yml b/languages/en.yml
index 12c0c20..5484341 100644
--- a/languages/en.yml
+++ b/languages/en.yml
@@ -36,6 +36,8 @@ post:
copyright:
author: Post author
link: Post link
+ post_author: Written by
+ post_link: This article originally appeared on
license_title: Copyright Notice
license_content: "All articles in this blog are licensed under %s unless stating additionally."
diff --git a/layout/_partials/post/post-copyright.njk b/layout/_partials/post/post-copyright.njk
index 9c25edd..4efc312 100644
--- a/layout/_partials/post/post-copyright.njk
+++ b/layout/_partials/post/post-copyright.njk
@@ -4,12 +4,22 @@
-
- {{ __('post.copyright.author') + __('symbol.colon') }}
- {{- page.author or author }}
+ {%- if page.author %}
+ {{ __('post.copyright.post_author') + __('symbol.colon') }}
+ {{- page.author }}
+ {%- elif author %}
+ {{ __('post.copyright.author') + __('symbol.colon') }}
+ {{- author }}
+ {%- endif %}
-
- {{ __('post.copyright.link') + __('symbol.colon') }}
- {{ next_url(page.permalink, page.permalink, {title: page.title}) }}
+ {%- if page.post_link %}
+ {{ __('post.copyright.post_link') + __('symbol.colon') }}
+ {{ next_url(page.post_link, page.post_link, {title: page.title}) }}
+ {%- else %}
+ {{ __('post.copyright.link') + __('symbol.colon') }}
+ {{ next_url(page.permalink, page.permalink, {title: page.title}) }}
+ {%- endif %}
-
{{ __('post.copyright.license_title') + __('symbol.colon') }}