mirror of
https://gitee.com/huanghongxun/HMCL-docs.git
synced 2026-05-04 23:35:27 +08:00
15 lines
561 B
HTML
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 %}
|