-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add beian option at footer for Chinese website owner #438
Changes from 5 commits
308f0e4
de48c2f
cd54dfe
c38ae6a
aab024d
5bfa586
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
<div class="copyright">{# | ||
#}{% set current = date(Date.now(), "YYYY") %}{# | ||
#}© {% if theme.footer.since and theme.footer.since != current %}{{ theme.footer.since }} – {% endif %}{# | ||
#}{% if theme.footer.beian.enable %}{# | ||
#}<a target="_blank" rel="external nofollow" href="http://www.miitbeian.gov.cn/"> {{theme.footer.beian.icp}} </a>{# | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I opened the "beian" option today and found that the "beian" option and "since2015" are crowded on the same line. It is not very beautiful. If you display the "beian" message text on a separate line, it will be more beautiful. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can create your own pull request with this changes. Welcome! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
ok,thanks reply。 |
||
#}{% endif %}{# | ||
#} © {% if theme.footer.since and theme.footer.since != current %}{{ theme.footer.since }} — {% endif %}{# | ||
#}<span itemprop="copyrightYear">{{ current }}</span> | ||
<span class="with-love" id="animate"> | ||
<i class="fa fa-{{ theme.footer.icon.name }}"></i> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is not
—
. Here is n-dash (this: –, not that: —)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok,
&mdash
will be displaced.