HMCL-docs/_layouts/document.html
neveler aa9f72ebfe
All checks were successful
continuous-integration/drone/push Build is passing
使用 authors 替代 contributors (#465)
2026-06-05 21:52:36 +08:00

16 lines
530 B
HTML

---
layout: single
---
{{ content }}
{% if page.author or page.authors or jekyll.environment == 'production' and page.hits %}
<script>
window.addEventListener("load", () => {
{%- if page.author %}appendMeta("{{ page.author }}", "fas fa-user-pen");{% endif -%}
{%- for author in page.authors %}appendMeta("{{ author }}", "fas fa-user-pen");{% endfor -%}
{%- if jekyll.environment == 'production' and page.hits %}hits({{ page.url | absolute_url | jsonify }});{% endif -%}
});
</script>
{% endif %}