mirror of
https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git
synced 2026-07-30 11:33:45 +00:00
61 lines
1.6 KiB
HTML
61 lines
1.6 KiB
HTML
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebSite",
|
|
"name": {{ site.title | jsonify }},
|
|
"url": {{ site.url | append: site.baseurl | append: '/' | jsonify }},
|
|
"description": {{ site.description | jsonify }},
|
|
"inLanguage": {{ site.lang | jsonify }},
|
|
"publisher": {
|
|
"@type": "Person",
|
|
"name": {{ site.author.name | jsonify }}
|
|
}
|
|
}
|
|
</script>
|
|
{% if page.url == '/' %}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "SoftwareSourceCode",
|
|
"name": {{ site.title | jsonify }},
|
|
"description": {{ site.description | jsonify }},
|
|
"codeRepository": {{ site.repository_url | jsonify }},
|
|
"url": {{ site.url | append: site.baseurl | append: '/' | jsonify }},
|
|
"programmingLanguage": ["Python", "TypeScript", "HTML", "CSS"],
|
|
"license": "https://opensource.org/license/mit",
|
|
"runtimePlatform": "ComfyUI, OpenClaw",
|
|
"keywords": [
|
|
"ComfyUI",
|
|
"OpenClaw",
|
|
"ComfyUI skill",
|
|
"workflow automation",
|
|
"AI agent tools"
|
|
],
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": {{ site.author.name | jsonify }}
|
|
}
|
|
}
|
|
</script>
|
|
{% endif %}
|
|
{% if page.url == '/faq/' %}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "FAQPage",
|
|
"mainEntity": [
|
|
{% for item in site.data.faq %}
|
|
{
|
|
"@type": "Question",
|
|
"name": {{ item.question | jsonify }},
|
|
"acceptedAnswer": {
|
|
"@type": "Answer",
|
|
"text": {{ item.answer | jsonify }}
|
|
}
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|
|
}
|
|
</script>
|
|
{% endif %}
|