11ty 웹사이트에 SEO 추가

5062 단어 seowebdev11ty

모든 페이지에 머리말 추가




---
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:

좋은 웹페이지 즐겨찾기