Last active
May 17, 2018 04:54
-
-
Save seahal/e9a7eb974f3bba05e73c38161d34accd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 通常版 --> | |
| <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