11ty 웹사이트에 SEO 추가
모든 페이지에 머리말 추가
---
title: "Page Title"
metatitle: "Page Meta Title"
metadescription: "Page Meta Description"
image: Image Address
---
데이터에 사이트 URL 추가
site.json
에 _data
파일 만들기{
"url": "https://yoursiteurl.com"
}
기본 태그
base.njk
또는 추가한 메인njk
에 추가하십시오<head>
.<title>{{ title }}</title>
<meta name="title" content="{{ metatitle }}">
<meta name="description" content="{{ metadescription }}">
오픈그래프 / 페이스북
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com{{page.url}}">
<meta property="og:title" content="{{ metatitle }}">
<meta property="og:description" content="{{ metadescription }}">
<meta property="og:image" content="{{ site.url + image }}">
개방형 그래프 이미지를 자동으로 생성하려면 이 문서를 참조하십시오post .
트위터
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://example.com{{page.url}}">
<meta property="twitter:title" content="{{ metatitle }}">
<meta property="twitter:description" content="{{ metadescription }}">
<meta property="twitter:image" content="{{ site.url + image }}">
사이트맵
루트 디렉토리에
sitemap.njk
를 만듭니다. 자동으로 sitemap.xml.
가 됩니다.---
permalink: /sitemap.xml
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %}
<url>
<loc>{{ site.url }}{{ page.url | url }}</loc>
<lastmod>{{ page.date.toISOString() }}</lastmod>
</url>
{% endfor %}
</urlset>
로봇
만들다
robots.txt
Sitemap: https://www.yoursitename.com/sitemap.xml
User-agent: *
Disallow:
Reference
이 문제에 관하여(11ty 웹사이트에 SEO 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mihir27/add-seo-to-you-11ty-website-43m7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)