Skip to content

Instantly share code, notes, and snippets.

@seahal
Last active May 17, 2018 04:54
Show Gist options
  • Save seahal/e9a7eb974f3bba05e73c38161d34accd to your computer and use it in GitHub Desktop.
Save seahal/e9a7eb974f3bba05e73c38161d34accd to your computer and use it in GitHub Desktop.
<!-- 通常版 -->
<title>
{% if page.url == '/' %}
{{site.title}}
{% else %}
{% if page.title == '' || page.title == nil %}
(無題)
{% else %}
{{page.title}}
{% endif %}
|{{site.title}}
{% endif %}
</title>
<!-- 縮小版 -->
<title>{% if page.url == '/' %}{{site.title}}{% else %}{% if page.title == '' || page.title == nil %}(無題){% else %}{{page.title}}{% endif %}|{{site.title}}{% endif %}</title>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment