HMCL-docs/_layouts/document.html
neveler e0303cb44a
All checks were successful
continuous-integration/drone/push Build is passing
修复 hits url tag 参数被二次编码的问题 (#452)
2026-04-20 11:26:21 +08:00

15 lines
561 B
HTML

---
layout: single
---
{{ content }}
{% if page.author or page.contributors or jekyll.environment == 'production' and page.hits %}
<script src="{{ '/assets/js/meta.js' | relative_url }}"></script>
<script>
{%- if page.author %}appendMeta("{{ page.author }}", "fas fa-user-pen");{% endif -%}
{%- for contributor in page.contributors %}appendMeta("{{ contributor }}", "fas fa-user-pen");{% endfor -%}
{%- if jekyll.environment == 'production' and page.hits %}hits({{ page.url | absolute_url | jsonify }});{% endif -%}
</script>
{% endif %}